1
mirror of https://github.com/mpv-player/mpv synced 2025-01-13 00:06:25 +01:00

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
This commit is contained in:
reimar 2009-03-06 20:11:23 +00:00
parent 54c1d83197
commit aaa937e798
25 changed files with 25 additions and 25 deletions

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"

View File

@ -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"