Changeset 136
- Timestamp:
- Oct 1, 2006, 10:49:25 AM (14 years ago)
- Location:
- trunk/Lucide
- Files:
-
- 9 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Lucide/BIN/Lucide.lng
r129 r136 65 65 # Lucide messages 66 66 # 67 MSGS_MAIN_WIN_TITLE= Lucide- Document Viewer67 MSGS_MAIN_WIN_TITLE=%APPNAME% - Document Viewer 68 68 MSGS_NO_SUIT_PLUG=Can't find suitable plugin for specified document! 69 69 MSGS_FILE_LOAD_ERROR=File load error! -
trunk/Lucide/BIN/Lucide_de.lng
r123 r136 62 62 # Lucide messages 63 63 # 64 MSGS_MAIN_WIN_TITLE= Lucide- Document Viewer64 MSGS_MAIN_WIN_TITLE=%APPNAME% - Document Viewer 65 65 MSGS_NO_SUIT_PLUG=Kein passendes Plugin fr das Dokument gefunden! 66 66 MSGS_FILE_LOAD_ERROR=Datei kann nicht gelesen werden! -
trunk/Lucide/BIN/Lucide_es.lng
r123 r136 67 67 # Lucide messages 68 68 # 69 MSGS_MAIN_WIN_TITLE= Lucide- Visor de documentos69 MSGS_MAIN_WIN_TITLE=%APPNAME% - Visor de documentos 70 70 MSGS_NO_SUIT_PLUG=No puede encontrarse un plugin adecuado para el documento especificado! 71 71 MSGS_FILE_LOAD_ERROR=Error cargando el archivo! -
trunk/Lucide/BIN/Lucide_fr.lng
r91 r136 64 64 # Lucide messages 65 65 # 66 MSGS_MAIN_WIN_TITLE= Lucide- Afficheur de document66 MSGS_MAIN_WIN_TITLE=%APPNAME% - Afficheur de document 67 67 MSGS_NO_SUIT_PLUG=Composant enfichable introuvable pour le document indiqu ! 68 68 MSGS_FILE_LOAD_ERROR=Erreur de chargement de fichier ! -
trunk/Lucide/BIN/Lucide_nl.lng
r123 r136 62 62 # Lucide messages 63 63 # 64 MSGS_MAIN_WIN_TITLE= Lucide- Document Bekijker64 MSGS_MAIN_WIN_TITLE=%APPNAME% - Document Bekijker 65 65 MSGS_NO_SUIT_PLUG=Kan geen passende plug-in vinden voor opgegeven document! 66 66 MSGS_FILE_LOAD_ERROR=Bestand inleesfout! -
trunk/Lucide/BIN/Lucide_ru.lng
r88 r136 10 10 # Lucide messages 11 11 # 12 MSGS_MAIN_WIN_TITLE= Lucide- ¯à®á¬®âà €®ªã¬¥â®¢12 MSGS_MAIN_WIN_TITLE=%APPNAME% - ¯à®á¬®âà €®ªã¬¥â®¢ 13 13 MSGS_NO_SUIT_PLUG=¥ ¬®£ã ©â𠝮€å®€ïéš© ¯« £š €«ï ¯à®á¬®âà í⮣® €®ªã¬¥â ! 14 14 MSGS_FILE_LOAD_ERROR=èš¡ª § £à㧪š ä ©« ! -
trunk/Lucide/BIN/Lucide_sv.lng
r123 r136 62 62 # Lucide messages 63 63 # 64 MSGS_MAIN_WIN_TITLE= Lucide- Dokumentvisare64 MSGS_MAIN_WIN_TITLE=%APPNAME% - Dokumentvisare 65 65 MSGS_NO_SUIT_PLUG=Kan inte hitta ngon lmplig plugin fr specificerat dokument! 66 66 MSGS_FILE_LOAD_ERROR=Filladdningsfel! -
trunk/Lucide/BIN/Lucide_zh_TW.lng
r123 r136 62 62 # Lucide messages 63 63 # 64 MSGS_MAIN_WIN_TITLE= Lucide- €å¥óÀ˵øŸ¹64 MSGS_MAIN_WIN_TITLE=%APPNAME% - €å¥óÀ˵øŸ¹ 65 65 MSGS_NO_SUIT_PLUG=µLªk§äšìŸAŠXй€å¥óªº Plugin! 66 66 MSGS_FILE_LOAD_ERROR=Àɮמü€J¿ù»~! -
trunk/Lucide/SOURCE/gui/intern.cpp
r133 r136 58 58 static map<string,string> *langCurrent = NULL; 59 59 60 #define NUM_ESCAPES 2 61 static const char *escapes[NUM_ESCAPES][2] = { { "\\t", "\t" }, { "\\r", "\r" } }; 60 61 #define NUM_ESCAPES 3 62 static const char *escapes[NUM_ESCAPES][2] = { 63 { "\\t", "\t" }, { "\\r", "\r" }, { "%APPNAME%", appName } }; 62 64 63 65 static string unescapeControls( const char *s ) … … 66 68 for ( int i = 0; i < NUM_ESCAPES; i++ ) 67 69 { 68 intstartpos = 0;69 int findpos = -1;70 while ( ( findpos = r.find( escapes[i][0], startpos ) ) != -1) {71 r.replace( findpos, 2, escapes[i][1] );70 string::size_type startpos = 0; 71 string::size_type findpos = string::npos; 72 while ( ( findpos = r.find( escapes[i][0], startpos ) ) != string::npos ) { 73 r.replace( findpos, strlen( escapes[i][0] ), escapes[i][1] ); 72 74 startpos = findpos + 1; 73 75 }
Note: See TracChangeset
for help on using the changeset viewer.