summaryrefslogtreecommitdiffstats
path: root/help
diff options
context:
space:
mode:
authorreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-06 20:11:23 +0000
committerreimar <reimar@b3059339-0415-0410-9bf9-f77b7e298cf2>2009-03-06 20:11:23 +0000
commitaaa937e798f8b5e9e6ef51fd12807bee7f21f478 (patch)
tree019fa65f96dce9e43d221b1c725e63947f80d5a4 /help
parent54c1d8319764c34ea3928295412ac69e73d43cab (diff)
downloadmpv-aaa937e798f8b5e9e6ef51fd12807bee7f21f478.tar.bz2
mpv-aaa937e798f8b5e9e6ef51fd12807bee7f21f478.tar.xz
The large -help help_text should be const so it goes into .rodata
git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@28860 b3059339-0415-0410-9bf9-f77b7e298cf2
Diffstat (limited to 'help')
-rw-r--r--help/help_mp-bg.h2
-rw-r--r--help/help_mp-cs.h2
-rw-r--r--help/help_mp-de.h2
-rw-r--r--help/help_mp-dk.h2
-rw-r--r--help/help_mp-el.h2
-rw-r--r--help/help_mp-en.h2
-rw-r--r--help/help_mp-es.h2
-rw-r--r--help/help_mp-fr.h2
-rw-r--r--help/help_mp-hu.h2
-rw-r--r--help/help_mp-it.h2
-rw-r--r--help/help_mp-ja.h2
-rw-r--r--help/help_mp-ko.h2
-rw-r--r--help/help_mp-mk.h2
-rw-r--r--help/help_mp-nb.h2
-rw-r--r--help/help_mp-nl.h2
-rw-r--r--help/help_mp-pl.h2
-rw-r--r--help/help_mp-pt_BR.h2
-rw-r--r--help/help_mp-ro.h2
-rw-r--r--help/help_mp-ru.h2
-rw-r--r--help/help_mp-sk.h2
-rw-r--r--help/help_mp-sv.h2
-rw-r--r--help/help_mp-tr.h2
-rw-r--r--help/help_mp-uk.h2
-rw-r--r--help/help_mp-zh_CN.h2
-rw-r--r--help/help_mp-zh_TW.h2
25 files changed, 25 insertions, 25 deletions
diff --git a/help/help_mp-bg.h b/help/help_mp-bg.h
index cd989fe00b..0ac845038e 100644
--- a/help/help_mp-bg.h
+++ b/help/help_mp-bg.h
@@ -6,7 +6,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Употреба: mplayer [опции] [url|път/]име_на_файл\n"
"\n"
"Основни опции: (пълният списък е в ръководството - 'man mplayer')\n"
diff --git a/help/help_mp-cs.h b/help/help_mp-cs.h
index 35898fd49d..a9f0db02e3 100644
--- a/help/help_mp-cs.h
+++ b/help/help_mp-cs.h
@@ -7,7 +7,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Použití: mplayer [volby] [url|cesta/]jméno_souboru\n"
"\n"
"Základní volby: (úplný seznam najdete v manuálové stránce)\n"
diff --git a/help/help_mp-de.h b/help/help_mp-de.h
index 58a21f0fdb..db7f5ca8cd 100644
--- a/help/help_mp-de.h
+++ b/help/help_mp-de.h
@@ -12,7 +12,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Verwendung: mplayer [Optionen] [URL|Verzeichnis/]Dateiname\n"
"\n"
"Basisoptionen: (siehe Manpage für eine vollständige Liste aller Optionen!)\n"
diff --git a/help/help_mp-dk.h b/help/help_mp-dk.h
index 3b633a5067..d1c149e048 100644
--- a/help/help_mp-dk.h
+++ b/help/help_mp-dk.h
@@ -7,7 +7,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Benyt: mplayer [indstillinger] [URL|sti/]filnavn\n"
"\n"
"Basale indstillinger (se manualen for en komplet liste):\n"
diff --git a/help/help_mp-el.h b/help/help_mp-el.h
index e01ef40e06..bc9e6f494c 100644
--- a/help/help_mp-el.h
+++ b/help/help_mp-el.h
@@ -5,7 +5,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Usage: mplayer [επιλογές] [url|διαδρομή/]όνομα_αρχείου\n"
"\n"
"Βασικές επιλογές: (Ανατρέξτε στη σελίδα εγχειριδίου για ολοκληρωμένη λίστα με επιλογές)\n"
diff --git a/help/help_mp-en.h b/help/help_mp-en.h
index aa78b641eb..c5cafcc391 100644
--- a/help/help_mp-en.h
+++ b/help/help_mp-en.h
@@ -13,7 +13,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Usage: mplayer [options] [url|path/]filename\n"
"\n"
"Basic options: (complete list in the man page)\n"
diff --git a/help/help_mp-es.h b/help/help_mp-es.h
index f25d18efe6..3de10bb189 100644
--- a/help/help_mp-es.h
+++ b/help/help_mp-es.h
@@ -17,7 +17,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Uso: mplayer [opciones] [url o ruta del archivo]\n"
"\n"
"Opciones básicas: ('man mplayer' para una lista completa)\n"
diff --git a/help/help_mp-fr.h b/help/help_mp-fr.h
index 339674d352..9a8cbf2666 100644
--- a/help/help_mp-fr.h
+++ b/help/help_mp-fr.h
@@ -8,7 +8,7 @@
// ========================= Aide MPlayer ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Utilisation : mplayer [options] [url|répertoire/]fichier\n"
"\n"
"Options de base : (liste complète dans la page de man)\n"
diff --git a/help/help_mp-hu.h b/help/help_mp-hu.h
index bcea3f21cf..dac9dd29e7 100644
--- a/help/help_mp-hu.h
+++ b/help/help_mp-hu.h
@@ -9,7 +9,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Indítás: mplayer [opciók] [url|útvonal/]fájlnév\n"
"\n"
"Alapvető opciók: (az összes opció listájához lásd a man lapot)\n"
diff --git a/help/help_mp-it.h b/help/help_mp-it.h
index 5e7459d2bf..c747ae3a49 100644
--- a/help/help_mp-it.h
+++ b/help/help_mp-it.h
@@ -8,7 +8,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Uso: mplayer [opzioni] [url|percorso/]nome_file\n"
"\n"
"Opzioni di base: (vedi la pagina man per la lista completa)\n"
diff --git a/help/help_mp-ja.h b/help/help_mp-ja.h
index 7fd1c0b2b2..61aa98a765 100644
--- a/help/help_mp-ja.h
+++ b/help/help_mp-ja.h
@@ -6,7 +6,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"使い方: mplayer [オプション] [url|パス/]ファイル名\n"
"\n"
"基本的なオプション: (man page に全て網羅されています)\n"
diff --git a/help/help_mp-ko.h b/help/help_mp-ko.h
index 6a9a13066f..7d883a35dd 100644
--- a/help/help_mp-ko.h
+++ b/help/help_mp-ko.h
@@ -4,7 +4,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"사용법: mplayer [선택사항] [url|경로/]파일명\n"
"\n"
"기본 선택사항: (전체 목록은 man 페이지 참조)\n"
diff --git a/help/help_mp-mk.h b/help/help_mp-mk.h
index fb0c6fc872..a65ea9d86c 100644
--- a/help/help_mp-mk.h
+++ b/help/help_mp-mk.h
@@ -5,7 +5,7 @@
// ========================= MPlayer Помош ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Употреба: mplayer [опции] [url|патека/]ИмеНаДатотеката\n"
"\n"
"Основни Опции: (комплетна листа на man страницата)\n"
diff --git a/help/help_mp-nb.h b/help/help_mp-nb.h
index 9e6c860c12..c42072846a 100644
--- a/help/help_mp-nb.h
+++ b/help/help_mp-nb.h
@@ -4,7 +4,7 @@
// ========================= MPlayer hjelp ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Bruk: mplayer [valg] [sti/]filnavn\n"
"\n"
"Valg:\n"
diff --git a/help/help_mp-nl.h b/help/help_mp-nl.h
index dabb187f8e..9171a03954 100644
--- a/help/help_mp-nl.h
+++ b/help/help_mp-nl.h
@@ -3,7 +3,7 @@
//synced with help_mp-en.h revision 1.152
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Gebruik: mplayer [opties] [url|pad/]bestandsnaam\n"
"\n"
"Basis-opties: (volledige lijst in de man-pagina's)\n"
diff --git a/help/help_mp-pl.h b/help/help_mp-pl.h
index 7d09950edb..14191d1e8f 100644
--- a/help/help_mp-pl.h
+++ b/help/help_mp-pl.h
@@ -6,7 +6,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Użycie: mplayer [opcje] [url|ścieżka/]plik\n"
"\n"
"Podstawowe opcje: (pełna lista dostępna na stronie man)\n"
diff --git a/help/help_mp-pt_BR.h b/help/help_mp-pt_BR.h
index 8cc56a1880..bcb6eeff34 100644
--- a/help/help_mp-pt_BR.h
+++ b/help/help_mp-pt_BR.h
@@ -6,7 +6,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Uso: mplayer [opções] [url|caminho/]nome-do-arquivo\n"
"\n"
"Opções básicas: (lista completa na página do manual)\n"
diff --git a/help/help_mp-ro.h b/help/help_mp-ro.h
index 7da2fbf5f0..499a470c4f 100644
--- a/help/help_mp-ro.h
+++ b/help/help_mp-ro.h
@@ -9,7 +9,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Folosire: mplayer [opþiuni] [url|cale/]numefiºier\n"
"\n"
"Opþiuni principale: (lista completã în pagina man)\n"
diff --git a/help/help_mp-ru.h b/help/help_mp-ru.h
index d9906b1d5e..97152a4bf8 100644
--- a/help/help_mp-ru.h
+++ b/help/help_mp-ru.h
@@ -8,7 +8,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Использование: mplayer [опции] [URL|путь/]имя_файла\n"
"\n"
"Базовые опции: (полный список см. на man-странице)\n"
diff --git a/help/help_mp-sk.h b/help/help_mp-sk.h
index ed54ec2492..875adedf2c 100644
--- a/help/help_mp-sk.h
+++ b/help/help_mp-sk.h
@@ -7,7 +7,7 @@
#ifdef HELP_MP_DEFINE_STATIC
// Preklad do slovenčiny
-static char help_text[]=
+static const char help_text[]=
"Použitie: mplayer [prepínače] [url|cesta/]menosúboru\n"
"\n"
"Základné prepínače: (Kompletný zoznam nájdete v man stránke)\n"
diff --git a/help/help_mp-sv.h b/help/help_mp-sv.h
index 6ce5f43e13..79e624b924 100644
--- a/help/help_mp-sv.h
+++ b/help/help_mp-sv.h
@@ -4,7 +4,7 @@
// ========================= MPlayer hjälp ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Användning: mplayer [argument] [url|sökväg/]filnamn\n"
"\n"
"Grundläggande argument: (komplett lista återfinns i `man mplayer`)\n"
diff --git a/help/help_mp-tr.h b/help/help_mp-tr.h
index 23b34a81f8..ae7b57c4d9 100644
--- a/help/help_mp-tr.h
+++ b/help/help_mp-tr.h
@@ -7,7 +7,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Kullanım: mplayer [seçenekler] [adres|yol/]dosya adı\n"
"\n"
"Genel seçenekler: (Tüm seçenekler için man sayfalarına bakınız)\n"
diff --git a/help/help_mp-uk.h b/help/help_mp-uk.h
index 6b8a9acbc0..359e74d4aa 100644
--- a/help/help_mp-uk.h
+++ b/help/help_mp-uk.h
@@ -7,7 +7,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"Запуск: mplayer [опції] [path/]filename\n"
"\n"
"Опції:\n"
diff --git a/help/help_mp-zh_CN.h b/help/help_mp-zh_CN.h
index d5ce571200..26df21c131 100644
--- a/help/help_mp-zh_CN.h
+++ b/help/help_mp-zh_CN.h
@@ -17,7 +17,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"用法: mplayer [选项] [URL|路径/]文件名\n"
"\n"
"基本选项: (完整列表参见手册页)\n"
diff --git a/help/help_mp-zh_TW.h b/help/help_mp-zh_TW.h
index 0d8770eaac..928d35aff6 100644
--- a/help/help_mp-zh_TW.h
+++ b/help/help_mp-zh_TW.h
@@ -9,7 +9,7 @@
// ========================= MPlayer help ===========================
#ifdef HELP_MP_DEFINE_STATIC
-static char help_text[]=
+static const char help_text[]=
"用法: mplayer [選項] [URL|路徑/]文件名\n"
"\n"
"基本選項: (完整列表參見手册頁)\n"