@ -110,7 +110,7 @@ void Languages::InitErrorMessagesTab()
InsertErrorPair ( ttmath : : err_must_be_only_one_value , " Variables or functions must return only one value " ) ;
InsertErrorPair ( ttmath : : err_still_calculating , " Calculating... " ) ;
InsertErrorPair ( ttmath : : err_percent_from , " Incorrectly used percentage operator " ) ;
// other english translation: the percentage operator used in incorrect way
/*
@ -362,6 +362,13 @@ void Languages::InitGuiMessagesTab()
{
/*
english gui messages
& - ( ampersand ) used in menus or buttons , means the key shortcut
( when left Alt is pressed you see a small line at the bottom of a specified letter )
\ t - tabulator
\ r \ n - new line
% d - another integer value ( leave it )
% s - another string ( leave it )
*/
gui_messages_tab . push_back ( std : : map < GuiMsg , std : : string > ( ) ) ;
@ -413,7 +420,7 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( overflow_during_printing , " Overflow during printing " ) ;
InsertGuiPair ( combo_rounding_none , " N one" ) ;
InsertGuiPair ( combo_rounding_none , " n one" ) ;
InsertGuiPair ( combo_rounding_integer , " to integer " ) ;
InsertGuiPair ( combo_rounding_to_number , " to " ) ;
InsertGuiPair ( combo_rounding_after_comma , " digit(s) " ) ;
@ -425,8 +432,18 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( display_always_scientific , " Always " ) ;
InsertGuiPair ( display_not_always_scientific , " When the exponent is greater than: " ) ;
InsertGuiPair ( display_group_scientific , " Print the result as the scientific value " ) ;
InsertGuiPair ( display_decimal_point , " Output decimal point " ) ;
InsertGuiPair ( display_deg_rad_grad , " sin/cos asin/acos " ) ;
InsertGuiPair ( display_deg_rad_grad , " Trigonometric functions " ) ;
InsertGuiPair ( display_grouping , " Grouping " ) ; // e.g. 1`000`000
InsertGuiPair ( display_grouping_none , " none " ) ;
InsertGuiPair ( display_grouping_space , " space " ) ;
InsertGuiPair ( display_input_decimal_point , " Input decimal point " ) ; // Decimal point in formula
InsertGuiPair ( display_input_decimal_point_item1 , " . or , " ) ;
InsertGuiPair ( display_output_decimal_point , " Output decimal point " ) ; // Decimal point in result
InsertGuiPair ( display_param_sep , " Parameters separated by " ) ;
InsertGuiPair ( display_param_sep_item2 , " ; or . " ) ;
InsertGuiPair ( display_param_sep_item3 , " ; or , " ) ;
InsertGuiPair ( convert_type , " Type " ) ;
InsertGuiPair ( convert_input , " Input " ) ;
InsertGuiPair ( convert_output , " Output " ) ;
@ -439,8 +456,8 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( menu_view_new_window , " &New window " ) ;
InsertGuiPair ( menu_view_normal_view , " No&rmal view " ) ;
InsertGuiPair ( menu_view_compact_view , " C&ompact view " ) ;
InsertGuiPair ( menu_view_pad , " &Pad " ) ;
InsertGuiPair ( menu_view_always_on_top , " &Always on top " ) ;
InsertGuiPair ( menu_view_pad , " &Pad " ) ;
InsertGuiPair ( menu_view_lang_english , " &English " ) ;
InsertGuiPair ( menu_view_lang_polish , " &Polish " ) ;
InsertGuiPair ( menu_view_lang_spanish , " &Spanish " ) ;
@ -450,11 +467,22 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( menu_view_lang_swedish , " &Swedish " ) ;
InsertGuiPair ( menu_view_close_program , " &Close " ) ;
InsertGuiPair ( menu_edit_undo , " &Undo \t Ctrl+Z " ) ;
InsertGuiPair ( menu_edit_paste_formula , " &Paste formula \t Ctrl+V " ) ;
InsertGuiPair ( menu_edit_copy_result , " &Copy result \t Ctrl+R " ) ;
InsertGuiPair ( menu_edit_cut , " Cu&t \t Ctrl+X " ) ;
InsertGuiPair ( menu_edit_copy , " &Copy \t Ctrl+C " ) ;
InsertGuiPair ( menu_edit_paste , " &Paste " ) ; // cutting, copying, pasting the the edit which has a focus
InsertGuiPair ( menu_edit_del , " &Delete \t Del " ) ;
InsertGuiPair ( menu_edit_paste_formula , " Paste &formula \t Ctrl+V " ) ; // pasting directly to input edit
InsertGuiPair ( menu_edit_copy_result , " Copy &result \t Ctrl+R " ) ;
InsertGuiPair ( menu_edit_copy_both , " Copy &both \t Ctrl+B " ) ; // copying in this way: "input edit = output edit"
InsertGuiPair ( menu_edit_select_all , " Select &all \t Esc " ) ;
InsertGuiPair ( menu_edit_bracket , " Bracke&t \t Ctrl+0 " ) ; // inserting brackets: (...)
InsertGuiPair ( menu_help_help , " &Help " ) ;
InsertGuiPair ( menu_help_project_page , " &Project page " ) ;
InsertGuiPair ( menu_help_check_update , " &Check update... " ) ;
InsertGuiPair ( menu_help_about , " &About " ) ;
InsertGuiPair ( menu_update_available , " &New version is available " ) ; // not implemented yet
// this will be a new main menu item (one after 'help') visible only if there is an update
InsertGuiPair ( cant_init_calculations , " I could not initialize the module for calculations " ) ;
InsertGuiPair ( message_box_error_caption , " TTCalc " ) ;
InsertGuiPair ( cant_create_thread , " I could not create the second thread for calculating " ) ;
@ -462,18 +490,19 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( cant_create_main_window , " I could not create the main window of the application " ) ;
InsertGuiPair ( cant_init_common_controls , " I could not initialize the common controls (InitCommonControlsEx) " ) ;
InsertGuiPair ( about_text ,
" Mathematical calculator TTCalc %d.%d.%d%s%s \r \n "
" Mathematical calculator TTCalc %d.%d.%d%s%s \r \n \r \n "
" Author: Tomasz Sowa \r \n "
" Contact: t.sowa@ttmath.org \r \n "
" Licence: BSD (open source) \r \n "
" Project page: http://ttcalc.sourceforge.net \r \n "
" Bignum library: TTMath %d.%d.%d%s \r \n "
" Bignum type: binary floating point numbers \r \n "
" Programming language: C++ \r \n "
" Compiler: %s \r \n "
" %s " // for upx
" \r \n "
" TTCalc uses the TTMath bignum library "
" which can be found at http://sourceforge.net/projects/ttmath \r \n "
" which can be found at http://www.ttmath.org \r \n "
" \r \n "
# ifdef TTCALC_PORTABLE
" This is the portable version of the program TTCalc. In this version "
@ -481,9 +510,14 @@ void Languages::InitGuiMessagesTab()
" mantissa and 32 bits for the exponent) it's about +/-6.9e+646457021. \r \n "
" \r \n "
# endif
" If you have any questions, advices or interesting ideas about "
" this program or if you want to join to this project as "
" a developer or a programmer feel free to contant with the author. "
" Translations: \r \n "
" English Author \r \n " // one tabulator between language and the name of the author
" Polish Author \r \n "
" Spanish Alejandro S. Valdezate <alesanval@gmail.com> \r \n "
" Danish Rune Bisgaard Vammen <runebisgaard@gmail.com> \r \n "
" Chinese Juis <zsyfly@gmail.com> \r \n "
" Russian Vladimir Gladilovich <vdgladilovich@gmail.com> \r \n "
" Swedish Lars 'Bafvert' Gafvert <lars.gafvert@gmail.com> \r \n "
) ;
InsertGuiPair ( about_text_portable_version , " portable version " ) ;
InsertGuiPair ( about_text_exe_packer , " EXE Packer: UPX 3.03 \r \n " ) ;
@ -492,6 +526,37 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( unknown_error , " An unknown error has occurred " ) ;
InsertGuiPair ( cant_find_help , " I can't find any help files " ) ;
InsertGuiPair ( cant_open_project_page , " I can't open the project webpage " ) ;
InsertGuiPair ( update_title , " Check for a new version " ) ;
InsertGuiPair ( update_button_next , " Next " ) ;
InsertGuiPair ( update_button_finish , " Finish " ) ;
InsertGuiPair ( update_button_cancel , " Cancel " ) ;
InsertGuiPair ( update_check_at_startup , " Always check for the update on startup " ) ;
InsertGuiPair ( update_check_for_info , " Press Next to check for the update... " ) ;
InsertGuiPair ( update_is_new_version , " Version %d.%d.%d is available, press Next to download... " ) ;
InsertGuiPair ( update_no_new_version , " There is not a new version available. " ) ;
InsertGuiPair ( update_download_from , " Downloading from... " ) ;
# ifndef TTCALC_PORTABLE
InsertGuiPair ( update_downloaded_info1 , " A new setup program has been downloaded. " ) ;
InsertGuiPair ( update_downloaded_info2 , " Press Finish to close TTCalc and run the installer. " ) ;
# else
InsertGuiPair ( update_downloaded_info1 , " A new version of TTCalc has been downloaded. " ) ;
InsertGuiPair ( update_downloaded_info2 , " " ) ;
# endif
InsertGuiPair ( update_download_error , " There was a problem with downloading, please try again later. " ) ;
InsertGuiPair ( pad_title , " Pad " ) ;
InsertGuiPair ( pad_menu_file , " &File " ) ;
InsertGuiPair ( pad_menu_edit , " &Edit " ) ;
InsertGuiPair ( pad_menu_file_new , " &New " ) ; // temporarily not used
InsertGuiPair ( pad_menu_file_open , " &Open... " ) ;
InsertGuiPair ( pad_menu_file_saveas , " Save &as... " ) ;
InsertGuiPair ( pad_menu_file_close , " &Close " ) ;
InsertGuiPair ( pad_menu_edit_undo , " &Undo \t Ctrl+Z " ) ;
InsertGuiPair ( pad_menu_edit_cut , " Cu&t \t Ctrl+X " ) ;
InsertGuiPair ( pad_menu_edit_copy , " &Copy \t Ctrl+C " ) ;
InsertGuiPair ( pad_menu_edit_paste , " &Paste \t Ctrl+V " ) ;
InsertGuiPair ( pad_menu_edit_del , " &Del \t Del " ) ;
InsertGuiPair ( pad_menu_edit_select_all , " Select &all \t Ctrl+A " ) ;
@ -561,8 +626,17 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( display_always_scientific , " Zawsze " ) ;
InsertGuiPair ( display_not_always_scientific , " Jeลli eksponent jest wiรชkszy niยฟ: " ) ;
InsertGuiPair ( display_group_scientific , " Wyลwietl wynik w postaci naukowej " ) ;
InsertGuiPair ( display_decimal_point , " Przecinek dziesiรชtny " ) ;
InsertGuiPair ( display_deg_rad_grad , " sin/cos asin/acos " ) ;
InsertGuiPair ( display_deg_rad_grad , " Funkcje trygonometryczne " ) ;
InsertGuiPair ( display_grouping , " Grupowanie " ) ;
InsertGuiPair ( display_grouping_none , " brak " ) ;
InsertGuiPair ( display_grouping_space , " spacja " ) ;
InsertGuiPair ( display_input_decimal_point , " Przecinek w formule " ) ;
InsertGuiPair ( display_input_decimal_point_item1 , " . lub , " ) ;
InsertGuiPair ( display_output_decimal_point , " Przecinek w wyniku " ) ;
InsertGuiPair ( display_param_sep , " Parametry oddzielane przez " ) ;
InsertGuiPair ( display_param_sep_item2 , " ; lub . " ) ;
InsertGuiPair ( display_param_sep_item3 , " ; lub , " ) ;
InsertGuiPair ( convert_type , " Typ " ) ;
InsertGuiPair ( convert_input , " Wejลcie " ) ;
InsertGuiPair ( convert_output , " Wyjลcie " ) ;
@ -586,11 +660,21 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( menu_view_lang_swedish , " &Szwedzki " ) ;
InsertGuiPair ( menu_view_close_program , " &Zamknij " ) ;
InsertGuiPair ( menu_edit_undo , " &Cofnij " ) ;
InsertGuiPair ( menu_edit_paste_formula , " &Wklej " ) ;
InsertGuiPair ( menu_edit_copy_result , " &Kopiuj wynik " ) ;
InsertGuiPair ( menu_edit_cut , " Wy&tnij \t Ctrl+X " ) ;
InsertGuiPair ( menu_edit_copy , " &Kopiuj \t Ctrl+C " ) ;
InsertGuiPair ( menu_edit_paste , " &Wklej " ) ;
InsertGuiPair ( menu_edit_del , " &Usuรฑ \t Del " ) ;
InsertGuiPair ( menu_edit_paste_formula , " &Wklej formuยณรช \t Ctrl+V " ) ;
InsertGuiPair ( menu_edit_copy_result , " &Kopiuj wynik \t Ctrl+R " ) ;
InsertGuiPair ( menu_edit_copy_both , " Kopiuj &obydwa \t Ctrl+B " ) ;
InsertGuiPair ( menu_edit_select_all , " Zaznacz &wszystko \t Esc " ) ;
InsertGuiPair ( menu_edit_bracket , " &Nawiasy \t Ctrl+0 " ) ;
InsertGuiPair ( menu_help_help , " &Pomoc " ) ;
InsertGuiPair ( menu_help_project_page , " &Strona projektu " ) ;
InsertGuiPair ( menu_help_check_update , " Sprawdลธ &aktualizacjรช... " ) ;
InsertGuiPair ( menu_help_about , " &O programie " ) ;
InsertGuiPair ( menu_update_available , " &Jest nowa wersja programu " ) ;
InsertGuiPair ( cant_init_calculations , " Nie udaยณo siรช zainicjalizowaรฆ moduยณu obsยณugi obliczeรฑ " ) ;
InsertGuiPair ( message_box_error_caption , " TTCalc " ) ;
InsertGuiPair ( cant_create_thread , " Nie udaยณo siรช utworzyรฆ drugiego wยนtku do obliczeรฑ " ) ;
@ -598,18 +682,19 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( cant_create_main_window , " Nie udaยณo siรช utworzyรฆ gยณรณwnego okna aplikacji " ) ;
InsertGuiPair ( cant_init_common_controls , " Nie udaยณo siรช zainicjalizowaรฆ obsยณugi Common Controls (InitCommonControlsEx) " ) ;
InsertGuiPair ( about_text ,
" Kalkulator matematyczny TTCalc %d.%d.%d%s%s \r \n "
" Kalkulator matematyczny TTCalc %d.%d.%d%s%s \r \n \r \n "
" Autor: Tomasz Sowa \r \n "
" Kontakt: t.sowa@ttmath.org \r \n "
" Licencja: BSD (open source) \r \n "
" Strona projektu: http://ttcalc.sourceforge.net \r \n "
" Biblioteka duยฟych liczb: TTMath %d.%d.%d%s \r \n "
" Rodzaj duยฟych liczb: liczby binarne zmiennoprzecinkowe \r \n "
" Jรชzyk programowania: C++ \r \n "
" Kompilator: %s \r \n "
" %s " // for upx
" \r \n "
" Ten program uยฟywa biblioteki duยฟych liczb TTMath "
" ktรณra jest dostรชpna na http://sourceforge.net/projects/ttmath \r \n "
" ktรณra jest dostรชpna na http://www.ttmath.org \r \n "
" \r \n "
# ifdef TTCALC_PORTABLE
" To jest wersja portable programu TTCalc. W tej wersji moยฟesz dokonywaรฆ "
@ -617,9 +702,14 @@ void Languages::InitGuiMessagesTab()
" oraz 32 bitowy wykยณadnik) to jest okoยณo +/-6.9e+646457021. \r \n "
" \r \n "
# endif
" Jeยฟeli masz jakieล pytania, rady, ciekawe pomysยณy dotyczยนce "
" tego programu lub chciaยณbyล doยณยนczyรฆ jako projektant/programista "
" poprostu skontaktuj siรช z autorem. "
" Tยณumaczenie: \r \n "
" Angielski Author \r \n " // tab + two spaces
" Polski Author \r \n "
" Hiszpaรฑski Alejandro S. Valdezate <alesanval@gmail.com> \r \n " // only one space
" Duรฑski Rune Bisgaard Vammen <runebisgaard@gmail.com> \r \n "
" Chiรฑski Juis <zsyfly@gmail.com> \r \n "
" Rosyjski Vladimir Gladilovich <vdgladilovich@gmail.com> \r \n "
" Szwedzki Lars 'Bafvert' Gafvert <lars.gafvert@gmail.com> \r \n "
) ;
InsertGuiPair ( about_text_portable_version , " wersja portable " ) ;
InsertGuiPair ( about_text_exe_packer , " Paker exe: UPX 3.03 \r \n " ) ;
@ -628,7 +718,37 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( unknown_error , " Nieznany kod bยณรชdu " ) ;
InsertGuiPair ( cant_find_help , " Nie mogรช znaleยฟรฆ ยฟadnych plikรณw pomocy " ) ;
InsertGuiPair ( cant_open_project_page , " Nie mogรช otworzyรฆ strony projektu " ) ;
InsertGuiPair ( update_title , " Sprawdลธ dostรชpnoลรฆ nowej wersji " ) ;
InsertGuiPair ( update_button_next , " Dalej " ) ;
InsertGuiPair ( update_button_finish , " Zakoรฑcz " ) ;
InsertGuiPair ( update_button_cancel , " Anuluj " ) ;
InsertGuiPair ( update_check_at_startup , " Zawsze sprawdzaj aktualizacje podczas uruchamiania " ) ;
InsertGuiPair ( update_check_for_info , " Wciลnij Dalej aby sprawdziรฆ dostรชpnoลรฆ aktualizacji... " ) ;
InsertGuiPair ( update_is_new_version , " Wersja %d.%d.%d jest dostรชpna, wciลnij Dalej aby jยน pobraรฆ... " ) ;
InsertGuiPair ( update_no_new_version , " Nie ma dostรชpnej nowej wersji programu. " ) ;
InsertGuiPair ( update_download_from , " Pobieranie z... " ) ;
# ifndef TTCALC_PORTABLE
InsertGuiPair ( update_downloaded_info1 , " Nowy instalator zostaยณ ลciยนgniรชty. " ) ;
InsertGuiPair ( update_downloaded_info2 , " Wciลnij Zakoรฑcz aby zamknยนรฆ program TTCalc i uruchomiรฆ pobrany instalator. " ) ;
# else
InsertGuiPair ( update_downloaded_info1 , " Nowa wersja programu TTCalc zostaยณa ลciยนgniรชta " ) ;
InsertGuiPair ( update_downloaded_info2 , " " ) ;
# endif
InsertGuiPair ( update_download_error , " Wystยนpiยณy problemy ze ลciยนganiem, proszรช sprรณbowaรฆ ponownie pรณลธniej " ) ;
InsertGuiPair ( pad_title , " Padzzzzz " ) ;
InsertGuiPair ( pad_menu_file , " &Plik " ) ;
InsertGuiPair ( pad_menu_edit , " &Edycja " ) ;
InsertGuiPair ( pad_menu_file_new , " &Nowy " ) ; // temporarily not used
InsertGuiPair ( pad_menu_file_open , " &Otwรณrz... " ) ;
InsertGuiPair ( pad_menu_file_saveas , " Zapisz &jako... " ) ;
InsertGuiPair ( pad_menu_file_close , " &Zamknij " ) ;
InsertGuiPair ( pad_menu_edit_undo , " &Cofnij \t Ctrl+Z " ) ;
InsertGuiPair ( pad_menu_edit_cut , " Wy&tnij \t Ctrl+X " ) ;
InsertGuiPair ( pad_menu_edit_copy , " &Kopiuj \t Ctrl+C " ) ;
InsertGuiPair ( pad_menu_edit_paste , " &Wklej \t Ctrl+V " ) ;
InsertGuiPair ( pad_menu_edit_del , " &Usuรฑ \t Del " ) ;
InsertGuiPair ( pad_menu_edit_select_all , " Zaznacz wszystko \t Ctrl+A " ) ;
@ -700,12 +820,20 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( display_always_scientific , " Siempre " ) ;
InsertGuiPair ( display_not_always_scientific , " Cuando el exponente es mas grande que: " ) ;
InsertGuiPair ( display_group_scientific , " Imprimir el resultado como valor cientifico " ) ;
InsertGuiPair ( display_decimal_point , " Decimal point " ) ;
InsertGuiPair ( display_deg_rad_grad , " sin/cos asin/acos " ) ;
InsertGuiPair ( display_deg_rad_grad , " Trigonometric functions " ) ;
InsertGuiPair ( convert_type , " Tipo " ) ;
InsertGuiPair ( convert_input , " Entrada " ) ;
InsertGuiPair ( convert_output , " Salida " ) ;
InsertGuiPair ( convert_dynamic_output , " Auto prefijo " ) ;
InsertGuiPair ( display_grouping , " Grouping " ) ;
InsertGuiPair ( display_grouping_none , " None " ) ;
InsertGuiPair ( display_grouping_space , " Space " ) ;
InsertGuiPair ( display_input_decimal_point , " Input decimal point " ) ;
InsertGuiPair ( display_input_decimal_point_item1 , " . or , " ) ;
InsertGuiPair ( display_output_decimal_point , " Output decimal point " ) ;
InsertGuiPair ( display_param_sep , " Parameters separated by " ) ;
InsertGuiPair ( display_param_sep_item2 , " ; or . " ) ;
InsertGuiPair ( display_param_sep_item3 , " ; or , " ) ;
InsertGuiPair ( menu_view , " &Ver " ) ;
InsertGuiPair ( menu_edit , " &Editar " ) ;
@ -725,11 +853,21 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( menu_view_lang_swedish , " &Swedish " ) ;
InsertGuiPair ( menu_view_close_program , " &Close " ) ;
InsertGuiPair ( menu_edit_undo , " &Deshacer " ) ;
InsertGuiPair ( menu_edit_cut , " Cu&t \t Ctrl+X " ) ;
InsertGuiPair ( menu_edit_copy , " &Copy \t Ctrl+C " ) ;
InsertGuiPair ( menu_edit_paste , " &Paste " ) ;
InsertGuiPair ( menu_edit_del , " &Delete \t Del " ) ;
InsertGuiPair ( menu_edit_paste_formula , " &Pegar " ) ;
InsertGuiPair ( menu_edit_copy_result , " &Copiar resultado " ) ;
InsertGuiPair ( menu_edit_copy_both , " Copy &both \t Ctrl+B " ) ;
InsertGuiPair ( menu_edit_select_all , " Select &all \t Esc " ) ;
InsertGuiPair ( menu_edit_bracket , " Bracke&t \t Ctrl+0 " ) ;
InsertGuiPair ( menu_help_help , " &Ayuda " ) ;
InsertGuiPair ( menu_help_project_page , " &Pagina del proyecto " ) ;
InsertGuiPair ( menu_help_check_update , " &Check update... " ) ;
InsertGuiPair ( menu_help_about , " &Acerca de " ) ;
InsertGuiPair ( menu_update_available , " &New version is available " ) ;
InsertGuiPair ( cant_init_calculations , " No se puede inicializar el modulo de calculo " ) ;
InsertGuiPair ( message_box_error_caption , " TTCalc " ) ;
InsertGuiPair ( cant_create_thread , " No se puede crear la segunda hebra para calcular " ) ;
@ -737,18 +875,19 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( cant_create_main_window , " No se puede crear la ventana principal par ala aplicacion " ) ;
InsertGuiPair ( cant_init_common_controls , " No se pueden inicializar los controles comunes (InitCommonControlsEx) " ) ;
InsertGuiPair ( about_text ,
" Calculadora matematica TTCalc %d.%d.%d%s%s \r \n "
" Calculadora matematica TTCalc %d.%d.%d%s%s \r \n \r \n "
" Autor: Tomasz Sowa \r \n "
" Contacto: t.sowa@ttmath.org \r \n "
" Licencia: BSD (open source) \r \n "
" Pagina del proyecto: http://ttcalc.sourceforge.net \r \n "
" Biblioteca Bignum: TTMath %d.%d.%d%s \r \n "
" Bignum type: binary floating point numbers \r \n "
" Lenguaje de programacion: C++ \r \n "
" Compilador: %s \r \n "
" %s " // for upx
" \r \n "
" TTCalc usa la biblioteca TTMath bignum "
" la cual puede ser encontrada en http://sourceforge.net/projects/ttmath \r \n "
" la cual puede ser encontrada en http://www.ttmath.org \r \n "
" \r \n "
# ifdef TTCALC_PORTABLE
" Esta es la version portatil del programa TTCalc. En esta version "
@ -756,9 +895,14 @@ void Languages::InitGuiMessagesTab()
" mantisa y 32 bits para el exponente) que es aproximadamente +/-6.9e+646457021. \r \n "
" \r \n "
# endif
" Si tienes preguntas, consejos o ideas interesantes sobre "
" este programa o si quieres unirte a este proyecto como "
" desarrollador o programador, no dudes en contactar con el autor. "
" Translations: \r \n "
" English Author \r \n " // one tabulator between language and the name of the author
" Polish Author \r \n "
" Spanish Alejandro S. Valdezate <alesanval@gmail.com> \r \n "
" Danish Rune Bisgaard Vammen <runebisgaard@gmail.com> \r \n "
" Chinese Juis <zsyfly@gmail.com> \r \n "
" Russian Vladimir Gladilovich <vdgladilovich@gmail.com> \r \n "
" Swedish Lars 'Bafvert' Gafvert <lars.gafvert@gmail.com> \r \n "
) ;
InsertGuiPair ( about_text_portable_version , " version portatil " ) ;
InsertGuiPair ( about_text_exe_packer , " EXE Packer: UPX 3.03 \r \n " ) ;
@ -767,6 +911,37 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( unknown_error , " Ocurrio un error desconocido " ) ;
InsertGuiPair ( cant_find_help , " No se encuentran los ficheros de ayuda " ) ;
InsertGuiPair ( cant_open_project_page , " No se puede abrir la pagina dle proyecto " ) ;
InsertGuiPair ( update_title , " Check for a new version " ) ;
InsertGuiPair ( update_button_next , " Next " ) ;
InsertGuiPair ( update_button_finish , " Finish " ) ;
InsertGuiPair ( update_button_cancel , " Cancel " ) ;
InsertGuiPair ( update_check_at_startup , " Always check for the update on startup " ) ;
InsertGuiPair ( update_check_for_info , " Press Next to check for the update... " ) ;
InsertGuiPair ( update_is_new_version , " Version %d.%d.%d is available, press Next to download... " ) ;
InsertGuiPair ( update_no_new_version , " There is not a new version available. " ) ;
InsertGuiPair ( update_download_from , " Downloading from... " ) ;
# ifndef TTCALC_PORTABLE
InsertGuiPair ( update_downloaded_info1 , " A new setup program has been downloaded. " ) ;
InsertGuiPair ( update_downloaded_info2 , " Press Finish to close TTCalc and run the installer. " ) ;
# else
InsertGuiPair ( update_downloaded_info1 , " A new version of TTCalc has been downloaded. " ) ;
InsertGuiPair ( update_downloaded_info2 , " " ) ;
# endif
InsertGuiPair ( update_download_error , " There was a problem with downloading, please try again later. " ) ;
InsertGuiPair ( pad_title , " Pad " ) ;
InsertGuiPair ( pad_menu_file , " &File " ) ;
InsertGuiPair ( pad_menu_edit , " &Edit " ) ;
InsertGuiPair ( pad_menu_file_new , " &New " ) ; // temporarily not used
InsertGuiPair ( pad_menu_file_open , " &Open... " ) ;
InsertGuiPair ( pad_menu_file_saveas , " Save &as... " ) ;
InsertGuiPair ( pad_menu_file_close , " &Close " ) ;
InsertGuiPair ( pad_menu_edit_undo , " &Undo \t Ctrl+Z " ) ;
InsertGuiPair ( pad_menu_edit_cut , " Cu&t \t Ctrl+X " ) ;
InsertGuiPair ( pad_menu_edit_copy , " &Copy \t Ctrl+C " ) ;
InsertGuiPair ( pad_menu_edit_paste , " &Paste \t Ctrl+V " ) ;
InsertGuiPair ( pad_menu_edit_del , " &Del \t Del " ) ;
InsertGuiPair ( pad_menu_edit_select_all , " Select &all \t Ctrl+A " ) ;
@ -836,12 +1011,20 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( display_always_scientific , " Altid " ) ;
InsertGuiPair ( display_not_always_scientific , " Nรฅr exponenten er stรธrre end: " ) ;
InsertGuiPair ( display_group_scientific , " Print resultatet som den videnskablige vรฆrdi " ) ;
InsertGuiPair ( display_decimal_point , " Decimal punkt " ) ;
InsertGuiPair ( display_deg_rad_grad , " sin/cos asin/acos " ) ;
InsertGuiPair ( display_deg_rad_grad , " Trigonometric functions " ) ;
InsertGuiPair ( convert_type , " Type " ) ;
InsertGuiPair ( convert_input , " Input " ) ;
InsertGuiPair ( convert_output , " Udput " ) ;
InsertGuiPair ( convert_dynamic_output , " Auto prรฆfix " ) ;
InsertGuiPair ( display_grouping , " Grouping " ) ;
InsertGuiPair ( display_grouping_none , " None " ) ;
InsertGuiPair ( display_grouping_space , " Space " ) ;
InsertGuiPair ( display_input_decimal_point , " Input decimal point " ) ;
InsertGuiPair ( display_input_decimal_point_item1 , " . or , " ) ;
InsertGuiPair ( display_output_decimal_point , " Output decimal point " ) ;
InsertGuiPair ( display_param_sep , " Parameters separated by " ) ;
InsertGuiPair ( display_param_sep_item2 , " ; or . " ) ;
InsertGuiPair ( display_param_sep_item3 , " ; or , " ) ;
InsertGuiPair ( menu_view , " &Vis " ) ;
InsertGuiPair ( menu_edit , " &Rediger " ) ;
@ -861,11 +1044,21 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( menu_view_lang_swedish , " S&wedish " ) ;
InsertGuiPair ( menu_view_close_program , " &Afslut " ) ;
InsertGuiPair ( menu_edit_undo , " &Fortryd " ) ;
InsertGuiPair ( menu_edit_cut , " Cu&t \t Ctrl+X " ) ;
InsertGuiPair ( menu_edit_copy , " &Copy \t Ctrl+C " ) ;
InsertGuiPair ( menu_edit_paste , " &Paste " ) ;
InsertGuiPair ( menu_edit_del , " &Delete \t Del " ) ;
InsertGuiPair ( menu_edit_paste_formula , " &Sรฆt ind " ) ;
InsertGuiPair ( menu_edit_copy_result , " &Kopier resultatet " ) ;
InsertGuiPair ( menu_edit_copy_both , " Copy &both \t Ctrl+B " ) ;
InsertGuiPair ( menu_edit_select_all , " Select &all \t Esc " ) ;
InsertGuiPair ( menu_edit_bracket , " Bracke&t \t Ctrl+0 " ) ;
InsertGuiPair ( menu_help_help , " &Hjรฆlp " ) ;
InsertGuiPair ( menu_help_project_page , " &Projekt side " ) ;
InsertGuiPair ( menu_help_check_update , " &Check update... " ) ;
InsertGuiPair ( menu_help_about , " &Om " ) ;
InsertGuiPair ( menu_update_available , " &New version is available " ) ;
InsertGuiPair ( cant_init_calculations , " Moduelt for uregninger kunne ikke sรฆttes i gang " ) ;
InsertGuiPair ( message_box_error_caption , " TTCalc " ) ;
InsertGuiPair ( cant_create_thread , " Den anden trรฅd for udregning kunne ikke laves " ) ;
@ -873,18 +1066,19 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( cant_create_main_window , " Applikationens hovedvindue kunne ikke laves " ) ;
InsertGuiPair ( cant_init_common_controls , " De fรฆlles kontrol indstillinger kunne ikke sรฆttes i gang (InitCommonControlsEx) " ) ;
InsertGuiPair ( about_text ,
" Matematisk lommeregner TTCalc %d.%d.%d%s%s \r \n "
" Matematisk lommeregner TTCalc %d.%d.%d%s%s \r \n \r \n "
" Forfatter: Tomasz Sowa \r \n "
" Kontakt: t.sowa@ttmath.org \r \n "
" Licens: BSD (open source) \r \n "
" Projekt side: http://ttcalc.sourceforge.net \r \n "
" Bignum biblotek: TTMath %d.%d.%d%s \r \n "
" Bignum type: binary floating point numbers \r \n "
" Programmerings sprog: C++ \r \n "
" Kompilator: %s \r \n "
" %s " // for upx
" \r \n "
" TTCalc bruger TTMath bignum bibloteket "
" som kan findes ved http://sourceforge.net/projects/ttmath \r \n "
" som kan findes ved http://www.ttmath.org \r \n "
" \r \n "
# ifdef TTCALC_PORTABLE
" Dette er den transportable version af programmet TTCalc. I denne version "
@ -892,9 +1086,14 @@ void Languages::InitGuiMessagesTab()
" mantissen og 32 bits for exponenten) det er omkring +/-6.9e+646457021. \r \n "
" \r \n "
# endif
" Hvis du har spรธrgsmรฅl, gode rรฅd eller interessante idรฉr vedrรธrende "
" dette program eller hvis du vil tilslutte dig dette projekt som "
" en udvikler eller en programmรธr er du velkommen til at kontakte forfatteren. "
" Translations: \r \n "
" English Author \r \n " // one tabulator between language and the name of the author
" Polish Author \r \n "
" Spanish Alejandro S. Valdezate <alesanval@gmail.com> \r \n "
" Danish Rune Bisgaard Vammen <runebisgaard@gmail.com> \r \n "
" Chinese Juis <zsyfly@gmail.com> \r \n "
" Russian Vladimir Gladilovich <vdgladilovich@gmail.com> \r \n "
" Swedish Lars 'Bafvert' Gafvert <lars.gafvert@gmail.com> \r \n "
) ;
InsertGuiPair ( about_text_portable_version , " transportabel version " ) ;
InsertGuiPair ( about_text_exe_packer , " EXE Packer: UPX 3.03 \r \n " ) ;
@ -903,7 +1102,37 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( unknown_error , " Der er sket en ukendt fejl " ) ;
InsertGuiPair ( cant_find_help , " Der kunne ikke findes nogen hjรฆlp filer " ) ;
InsertGuiPair ( cant_open_project_page , " Projekt siden kunne ikke รฅbnes " ) ;
InsertGuiPair ( update_title , " Check for a new version " ) ;
InsertGuiPair ( update_button_next , " Next " ) ;
InsertGuiPair ( update_button_finish , " Finish " ) ;
InsertGuiPair ( update_button_cancel , " Cancel " ) ;
InsertGuiPair ( update_check_at_startup , " Always check for the update on startup " ) ;
InsertGuiPair ( update_check_for_info , " Press Next to check for the update... " ) ;
InsertGuiPair ( update_is_new_version , " Version %d.%d.%d is available, press Next to download... " ) ;
InsertGuiPair ( update_no_new_version , " There is not a new version available. " ) ;
InsertGuiPair ( update_download_from , " Downloading from... " ) ;
# ifndef TTCALC_PORTABLE
InsertGuiPair ( update_downloaded_info1 , " A new setup program has been downloaded. " ) ;
InsertGuiPair ( update_downloaded_info2 , " Press Finish to close TTCalc and run the installer. " ) ;
# else
InsertGuiPair ( update_downloaded_info1 , " A new version of TTCalc has been downloaded. " ) ;
InsertGuiPair ( update_downloaded_info2 , " " ) ;
# endif
InsertGuiPair ( update_download_error , " There was a problem with downloading, please try again later. " ) ;
InsertGuiPair ( pad_title , " Pad " ) ;
InsertGuiPair ( pad_menu_file , " &File " ) ;
InsertGuiPair ( pad_menu_edit , " &Edit " ) ;
InsertGuiPair ( pad_menu_file_new , " &New " ) ; // temporarily not used
InsertGuiPair ( pad_menu_file_open , " &Open... " ) ;
InsertGuiPair ( pad_menu_file_saveas , " Save &as... " ) ;
InsertGuiPair ( pad_menu_file_close , " &Close " ) ;
InsertGuiPair ( pad_menu_edit_undo , " &Undo \t Ctrl+Z " ) ;
InsertGuiPair ( pad_menu_edit_cut , " Cu&t \t Ctrl+X " ) ;
InsertGuiPair ( pad_menu_edit_copy , " &Copy \t Ctrl+C " ) ;
InsertGuiPair ( pad_menu_edit_paste , " &Paste \t Ctrl+V " ) ;
InsertGuiPair ( pad_menu_edit_del , " &Del \t Del " ) ;
InsertGuiPair ( pad_menu_edit_select_all , " Select &all \t Ctrl+A " ) ;
/*
@ -971,12 +1200,20 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( display_always_scientific , " รยปรยฑ " ) ;
InsertGuiPair ( display_not_always_scientific , " ยตยฑรยธรรฝยดรณรร: " ) ;
InsertGuiPair ( display_group_scientific , " ยฐยดยฟรรยงยผรรรฝยทยจรรคยณรถยฝรกยนรป " ) ;
InsertGuiPair ( display_decimal_point , " รยกรรฝยตรฃ " ) ;
InsertGuiPair ( display_deg_rad_grad , " sin/cos asin/acos " ) ;
InsertGuiPair ( display_deg_rad_grad , " Trigonometric functions " ) ;
InsertGuiPair ( convert_type , " รร รร " ) ;
InsertGuiPair ( convert_input , " รรครรซ " ) ;
InsertGuiPair ( convert_output , " รรคยณรถ " ) ;
InsertGuiPair ( convert_dynamic_output , " รรยถยฏ " ) ;
InsertGuiPair ( display_grouping , " Grouping " ) ;
InsertGuiPair ( display_grouping_none , " None " ) ;
InsertGuiPair ( display_grouping_space , " Space " ) ;
InsertGuiPair ( display_input_decimal_point , " Input decimal point " ) ;
InsertGuiPair ( display_input_decimal_point_item1 , " . or , " ) ;
InsertGuiPair ( display_output_decimal_point , " Output decimal point " ) ;
InsertGuiPair ( display_param_sep , " Parameters separated by " ) ;
InsertGuiPair ( display_param_sep_item2 , " ; or . " ) ;
InsertGuiPair ( display_param_sep_item3 , " ; or , " ) ;
InsertGuiPair ( menu_view , " &ยฒรฉยฟยด " ) ;
InsertGuiPair ( menu_edit , " &ยฑร ยผยญ " ) ;
@ -996,11 +1233,21 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( menu_view_lang_swedish , " &Swedish " ) ;
InsertGuiPair ( menu_view_close_program , " &ยนรยฑร " ) ;
InsertGuiPair ( menu_edit_undo , " &รยกรรป " ) ;
InsertGuiPair ( menu_edit_cut , " Cu&t \t Ctrl+X " ) ;
InsertGuiPair ( menu_edit_copy , " &Copy \t Ctrl+C " ) ;
InsertGuiPair ( menu_edit_paste , " &Paste " ) ;
InsertGuiPair ( menu_edit_del , " &Delete \t Del " ) ;
InsertGuiPair ( menu_edit_paste_formula , " &รยณรรน " ) ;
InsertGuiPair ( menu_edit_copy_result , " &ยธยดรรยฝรกยนรป " ) ;
InsertGuiPair ( menu_edit_copy_both , " Copy &both \t Ctrl+B " ) ;
InsertGuiPair ( menu_edit_select_all , " Select &all \t Esc " ) ;
InsertGuiPair ( menu_edit_bracket , " Bracke&t \t Ctrl+0 " ) ;
InsertGuiPair ( menu_help_help , " &ยฐรฏรรบ " ) ;
InsertGuiPair ( menu_help_project_page , " &รรญยผรพรรทรยณ " ) ;
InsertGuiPair ( menu_help_check_update , " &Check update... " ) ;
InsertGuiPair ( menu_help_about , " &ยนรรร " ) ;
InsertGuiPair ( menu_update_available , " &New version is available " ) ;
InsertGuiPair ( cant_init_calculations , " ยฒยปรรยณรตรยผยปยฏยผรรรฃรรทรยฃรร " ) ;
InsertGuiPair ( message_box_error_caption , " TTCalc " ) ;
InsertGuiPair ( cant_create_thread , " ยฒยปรรยดยดยฝยจรยฝยธรถรรยณรรยดรรรรฃ " ) ;
@ -1008,18 +1255,19 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( cant_create_main_window , " ยฒยปรรยดยดยฝยจรยฆรรยณรรรฒรรทยดยฐยฟร " ) ;
InsertGuiPair ( cant_init_common_controls , " ยฒยปรรยณรตรยผยปยฏรยจรรยฟรยผรพ(InitCommonControlsEx) " ) ;
InsertGuiPair ( about_text ,
" Mathematical calculator TTCalc %d.%d.%d%s%s \r \n "
" Mathematical calculator TTCalc %d.%d.%d%s%s \r \n \r \n "
" ยฟยชยทยขรร: Tomasz Sowa \r \n "
" รยชรยต: t.sowa@ttmath.org \r \n "
" รรญยฟร: BSD (ยฟยชรยดรรฎรยฟ) \r \n "
" รรทรยณ: http://ttcalc.sourceforge.net \r \n "
" Bignum library: TTMath %d.%d.%d%s \r \n "
" Bignum type: binary floating point numbers \r \n "
" Programming language: C++ \r \n "
" Compiler: %s \r \n "
" %s " // for upx
" \r \n "
" TTCalc uses the TTMath bignum library "
" which can be found at http://sourceforge.net/projects/ttmath \r \n "
" which can be found at http://www.ttmath.org \r \n "
" \r \n "
# ifdef TTCALC_PORTABLE
" This is the portable version of the program TTCalc. In this version "
@ -1027,7 +1275,14 @@ void Languages::InitGuiMessagesTab()
" mantissa and 32 bits for the exponent) it's about +/-6.9e+646457021. \r \n "
" \r \n "
# endif
" รรงยนรปรรฃรรรรยบรยดรรรญยผรพยตรรรรรขยกยขยฝยจรรฉยบรรรรยคยตรรรซยทยจยฃยฌยปรฒรรรรฃรรซยฐรฏรรบรยปรรฐยผรรรซยฟยชยทยขรรญยผรพยตรยปยฐยฃยฌรรยฝยซรรฆรยฑรรรรฉยตรยปยถรยญ รรฃรรยฃยก "
" Translations: \r \n "
" English Author \r \n " // one tabulator between language and the name of the author
" Polish Author \r \n "
" Spanish Alejandro S. Valdezate <alesanval@gmail.com> \r \n "
" Danish Rune Bisgaard Vammen <runebisgaard@gmail.com> \r \n "
" Chinese Juis <zsyfly@gmail.com> \r \n "
" Russian Vladimir Gladilovich <vdgladilovich@gmail.com> \r \n "
" Swedish Lars 'Bafvert' Gafvert <lars.gafvert@gmail.com> \r \n "
) ;
InsertGuiPair ( about_text_portable_version , " portable version " ) ;
InsertGuiPair ( about_text_exe_packer , " EXE Packer: UPX 3.03 \r \n " ) ;
@ -1036,6 +1291,37 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( unknown_error , " ยทยขรรบรยดรยชยดรญรรณ " ) ;
InsertGuiPair ( cant_find_help , " รยปรรรรยตยฝยฐรฏรรบรรยผรพ " ) ;
InsertGuiPair ( cant_open_project_page , " ยฒยปรรยดรฒยฟยชรรญยผรพรรทรยณ " ) ;
InsertGuiPair ( update_title , " Check for a new version " ) ;
InsertGuiPair ( update_button_next , " Next " ) ;
InsertGuiPair ( update_button_finish , " Finish " ) ;
InsertGuiPair ( update_button_cancel , " Cancel " ) ;
InsertGuiPair ( update_check_at_startup , " Always check for the update on startup " ) ;
InsertGuiPair ( update_check_for_info , " Press Next to check for the update... " ) ;
InsertGuiPair ( update_is_new_version , " Version %d.%d.%d is available, press Next to download... " ) ;
InsertGuiPair ( update_no_new_version , " There is not a new version available. " ) ;
InsertGuiPair ( update_download_from , " Downloading from... " ) ;
# ifndef TTCALC_PORTABLE
InsertGuiPair ( update_downloaded_info1 , " A new setup program has been downloaded. " ) ;
InsertGuiPair ( update_downloaded_info2 , " Press Finish to close TTCalc and run the installer. " ) ;
# else
InsertGuiPair ( update_downloaded_info1 , " A new version of TTCalc has been downloaded. " ) ;
InsertGuiPair ( update_downloaded_info2 , " " ) ;
# endif
InsertGuiPair ( update_download_error , " There was a problem with downloading, please try again later. " ) ;
InsertGuiPair ( pad_title , " Pad " ) ;
InsertGuiPair ( pad_menu_file , " &File " ) ;
InsertGuiPair ( pad_menu_edit , " &Edit " ) ;
InsertGuiPair ( pad_menu_file_new , " &New " ) ; // temporarily not used
InsertGuiPair ( pad_menu_file_open , " &Open... " ) ;
InsertGuiPair ( pad_menu_file_saveas , " Save &as... " ) ;
InsertGuiPair ( pad_menu_file_close , " &Close " ) ;
InsertGuiPair ( pad_menu_edit_undo , " &Undo \t Ctrl+Z " ) ;
InsertGuiPair ( pad_menu_edit_cut , " Cu&t \t Ctrl+X " ) ;
InsertGuiPair ( pad_menu_edit_copy , " &Copy \t Ctrl+C " ) ;
InsertGuiPair ( pad_menu_edit_paste , " &Paste \t Ctrl+V " ) ;
InsertGuiPair ( pad_menu_edit_del , " &Del \t Del " ) ;
InsertGuiPair ( pad_menu_edit_select_all , " Select &all \t Ctrl+A " ) ;
@ -1104,12 +1390,20 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( display_always_scientific , " รรฑรฅรฃรคร " ) ;
InsertGuiPair ( display_not_always_scientific , " รรฎรฃรคร รฏรฎรชร รงร รฒรฅรซรผ รฑรฒรฅรฏรฅรญรจ รกรฎรซรผรธรฅ " ) ;
InsertGuiPair ( display_group_scientific , " รรปรขรฎรครจรฒรผ รฐรฅรงรณรซรผรฒร รฒ รข รฝรชรฑรฏรฎรญรฅรญรถรจร รซรผรญรฎรฌ รขรจรครฅ " ) ;
InsertGuiPair ( display_decimal_point , " รรฅรฑรฟรฒรจรทรญรปรฉ รงรญร รช " ) ;
InsertGuiPair ( display_deg_rad_grad , " sin/cos asin/acos " ) ;
InsertGuiPair ( display_deg_rad_grad , " Trigonometric functions " ) ;
InsertGuiPair ( convert_type , " รรจรฏ " ) ;
InsertGuiPair ( convert_input , " รรขรฎรค " ) ;
InsertGuiPair ( convert_output , " รรปรขรฎรค " ) ;
InsertGuiPair ( convert_dynamic_output , " รรขรฒรฎรฏรฐรฅรดรจรชรฑ " ) ;
InsertGuiPair ( display_grouping , " Grouping " ) ;
InsertGuiPair ( display_grouping_none , " None " ) ;
InsertGuiPair ( display_grouping_space , " Space " ) ;
InsertGuiPair ( display_input_decimal_point , " Input decimal point " ) ;
InsertGuiPair ( display_input_decimal_point_item1 , " . or , " ) ;
InsertGuiPair ( display_output_decimal_point , " Output decimal point " ) ;
InsertGuiPair ( display_param_sep , " Parameters separated by " ) ;
InsertGuiPair ( display_param_sep_item2 , " ; or . " ) ;
InsertGuiPair ( display_param_sep_item3 , " ; or , " ) ;
InsertGuiPair ( menu_view , " &รรจรค " ) ;
InsertGuiPair ( menu_edit , " &รรฐร รขรชร " ) ;
@ -1129,11 +1423,21 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( menu_view_lang_swedish , " &Swedish " ) ;
InsertGuiPair ( menu_view_close_program , " &รร รชรฐรปรฒรผ " ) ;
InsertGuiPair ( menu_edit_undo , " &รรฒรฌรฅรญรจรฒรผ รครฅรฉรฑรฒรขรจรฅ " ) ;
InsertGuiPair ( menu_edit_cut , " Cu&t \t Ctrl+X " ) ;
InsertGuiPair ( menu_edit_copy , " &Copy \t Ctrl+C " ) ;
InsertGuiPair ( menu_edit_paste , " &Paste " ) ;
InsertGuiPair ( menu_edit_del , " &Delete \t Del " ) ;
InsertGuiPair ( menu_edit_paste_formula , " &รรฑรฒร รขรจรฒรผ " ) ;
InsertGuiPair ( menu_edit_copy_result , " &รรฎรฏรจรฐรฎรขร รฒรผ รฐรฅรงรณรซรผรฒร รฒ " ) ;
InsertGuiPair ( menu_edit_copy_both , " Copy &both \t Ctrl+B " ) ;
InsertGuiPair ( menu_edit_select_all , " Select &all \t Esc " ) ;
InsertGuiPair ( menu_edit_bracket , " Bracke&t \t Ctrl+0 " ) ;
InsertGuiPair ( menu_help_help , " &รรฎรฌรฎรนรผ " ) ;
InsertGuiPair ( menu_help_project_page , " &รร รฉรฒ รฏรฐรฎรฅรชรฒร " ) ;
InsertGuiPair ( menu_help_check_update , " &Check update... " ) ;
InsertGuiPair ( menu_help_about , " &ร รฏรฐรฎรฃรฐร รฌรฌรฅ " ) ;
InsertGuiPair ( menu_update_available , " &New version is available " ) ;
InsertGuiPair ( cant_init_calculations , " รรฅ รฌรฎรฃรณ รจรญรจรถรจร รซรจรงรจรฐรฎรขร รฒรผ รฌรฎรครณรซรผ รครซรฟ รฐร รฑรทรฅรฒรฎรข " ) ;
InsertGuiPair ( message_box_error_caption , " TTCalc " ) ;
InsertGuiPair ( cant_create_thread , " รรฅ รฌรฎรฃรณ รฑรฎรงรคร รฒรผ รขรฒรฎรฐรฎรฉ รฏรฎรฒรฎรช รครซรฟ รฐร รฑรทรฅรฒรฎรข " ) ;
@ -1141,18 +1445,19 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( cant_create_main_window , " รรฅ รฌรฎรฃรณ รฎรฒรชรฐรปรฒรผ รฃรซร รขรญรฎรฅ รฎรชรญรฎ รฏรฐรฎรฃรฐร รฌรฌรป " ) ;
InsertGuiPair ( cant_init_common_controls , " รรฅ รฌรฎรฃรณ รจรญรจรถรจร รซรจรงรจรฐรฎรขร รฒรผ รณรฏรฐร รขรซรฅรญรจรฅ (InitCommonControlsEx) " ) ;
InsertGuiPair ( about_text ,
" รร รฒรฅรฌร รฒรจรทรฅรฑรชรจรฉ รชร รซรผรชรณรซรฟรฒรฎรฐ TTCalc %d.%d.%d%s%s \r \n "
" รร รฒรฅรฌร รฒรจรทรฅรฑรชรจรฉ รชร รซรผรชรณรซรฟรฒรฎรฐ TTCalc %d.%d.%d%s%s \r \n \r \n "
" รรขรฒรฎรฐ: Tomasz Sowa \r \n "
" e-mail: t.sowa@ttmath.org \r \n "
" รรจรถรฅรญรงรจรฟ: BSD (open source) \r \n "
" รร รฉรฒ รฏรฐรฎรฅรชรฒร : http://ttcalc.sourceforge.net \r \n "
" รรจรกรซรจรฎรฒรฅรชร Bignum: TTMath %d.%d.%d%s \r \n "
" Bignum type: binary floating point numbers \r \n "
" รรงรปรช รฏรฐรฎรฃรฐร รฌรฌรจรฐรฎรขร รญรจรฟ: C++ \r \n "
" รรฎรฌรฏรจรซรฟรฒรฎรฐ: %s \r \n "
" %s " // for upx
" \r \n "
" TTCalc รจรฑรฏรฎรซรผรงรณรฅรฒ รกรจรกรซรจรฎรฒรฅรชรณ รฑรขรฅรฐรตรกรฎรซรผรธรจรต รทรจรฑรฅรซ TTMath, "
" รชรฎรฒรฎรฐร รฟ รญร รตรฎรครจรฒรฑรฟ รงรครฅรฑรผ: http://sourceforge.net/projects/ttmath \r \n "
" รชรฎรฒรฎรฐร รฟ รญร รตรฎรครจรฒรฑรฟ รงรครฅรฑรผ: http://www.ttmath.org \r \n "
" \r \n "
# ifdef TTCALC_PORTABLE
" รรฒรฎ รฏรฅรฐรฅรญรฎรฑรญร รฟ รขรฅรฐรฑรจรฟ รฏรฐรฎรฃรฐร รฌรฌรป. ร รฝรฒรฎรฉ รขรฅรฐรฑรจรจ รฌรฎรฆรญรฎ รฑรทรจรฒร รฒรผ "
@ -1160,9 +1465,14 @@ void Languages::InitGuiMessagesTab()
" 32 รกรจรฒร รญร รฏรฎรชร รงร รฒรฅรซรผ รฑรฒรฅรฏรฅรญรจ), รฒรฎ รฅรฑรฒรผ +/-6.9e+646457021. \r \n "
" \r \n "
# endif
" ร
รฑรซรจ รณ รร รฑ รฅรฑรฒรผ รชร รชรจรฅ-รซรจรกรฎ รขรฎรฏรฐรฎรฑรป, รฏรฎรฆรฅรซร รญรจรฟ รจรซรจ รจรญรฒรฅรฐรฅรฑรญรปรฅ รจรครฅรจ รครซรฟ "
" รฝรฒรฎรฉ รฏรฐรฎรฃรฐร รฌรฌรป, รจรซรจ รรป รตรฎรฒรจรฒรฅ รฏรฐรจรฑรฎรฅรครจรญรจรฒรผรฑรฟ รช รฏรฐรฎรฅรชรฒรณ รข รชร รทรฅรฑรฒรขรฅ "
" รฐร รงรฐร รกรฎรฒรทรจรชร รจรซรจ รฏรฐรฎรฃรฐร รฌรฌรจรฑรฒa, รญรฅ รฑรฒรฅรฑรญรฟรฉรฒรฅรฑรผ รญร รฏรจรฑร รฒรผ ร รขรฒรฎรฐรณ. "
" Translations: \r \n "
" English Author \r \n " // one tabulator between language and the name of the author
" Polish Author \r \n "
" Spanish Alejandro S. Valdezate <alesanval@gmail.com> \r \n "
" Danish Rune Bisgaard Vammen <runebisgaard@gmail.com> \r \n "
" Chinese Juis <zsyfly@gmail.com> \r \n "
" Russian Vladimir Gladilovich <vdgladilovich@gmail.com> \r \n "
" Swedish Lars 'Bafvert' Gafvert <lars.gafvert@gmail.com> \r \n "
) ;
InsertGuiPair ( about_text_portable_version , " รฏรฅรฐรฅรญรฎรฑรญร รฟ รขรฅรฐรฑรจรฟ " ) ;
InsertGuiPair ( about_text_exe_packer , " รณรฏร รชรฎรขรนรจรช EXE: UPX 3.03 \r \n " ) ;
@ -1171,6 +1481,37 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( unknown_error , " รรฅรจรงรขรฅรฑรฒรญร รฟ รฎรธรจรกรชร " ) ;
InsertGuiPair ( cant_find_help , " รรฅ รณรคร รฅรฒรฑรฟ รญร รฉรฒรจ รดร รฉรซรป รฏรฎรฌรฎรนรจ " ) ;
InsertGuiPair ( cant_open_project_page , " รรฅ รณรคร รฅรฒรฑรฟ รฎรฒรชรฐรปรฒรผ รฑร รฉรฒ รฏรฐรฎรฅรชรฒร " ) ;
InsertGuiPair ( update_title , " Check for a new version " ) ;
InsertGuiPair ( update_button_next , " Next " ) ;
InsertGuiPair ( update_button_finish , " Finish " ) ;
InsertGuiPair ( update_button_cancel , " Cancel " ) ;
InsertGuiPair ( update_check_at_startup , " Always check for the update on startup " ) ;
InsertGuiPair ( update_check_for_info , " Press Next to check for the update... " ) ;
InsertGuiPair ( update_is_new_version , " Version %d.%d.%d is available, press Next to download... " ) ;
InsertGuiPair ( update_no_new_version , " There is not a new version available. " ) ;
InsertGuiPair ( update_download_from , " Downloading from... " ) ;
# ifndef TTCALC_PORTABLE
InsertGuiPair ( update_downloaded_info1 , " A new setup program has been downloaded. " ) ;
InsertGuiPair ( update_downloaded_info2 , " Press Finish to close TTCalc and run the installer. " ) ;
# else
InsertGuiPair ( update_downloaded_info1 , " A new version of TTCalc has been downloaded. " ) ;
InsertGuiPair ( update_downloaded_info2 , " " ) ;
# endif
InsertGuiPair ( update_download_error , " There was a problem with downloading, please try again later. " ) ;
InsertGuiPair ( pad_title , " Pad " ) ;
InsertGuiPair ( pad_menu_file , " &File " ) ;
InsertGuiPair ( pad_menu_edit , " &Edit " ) ;
InsertGuiPair ( pad_menu_file_new , " &New " ) ; // temporarily not used
InsertGuiPair ( pad_menu_file_open , " &Open... " ) ;
InsertGuiPair ( pad_menu_file_saveas , " Save &as... " ) ;
InsertGuiPair ( pad_menu_file_close , " &Close " ) ;
InsertGuiPair ( pad_menu_edit_undo , " &Undo \t Ctrl+Z " ) ;
InsertGuiPair ( pad_menu_edit_cut , " Cu&t \t Ctrl+X " ) ;
InsertGuiPair ( pad_menu_edit_copy , " &Copy \t Ctrl+C " ) ;
InsertGuiPair ( pad_menu_edit_paste , " &Paste \t Ctrl+V " ) ;
InsertGuiPair ( pad_menu_edit_del , " &Del \t Del " ) ;
InsertGuiPair ( pad_menu_edit_select_all , " Select &all \t Ctrl+A " ) ;
@ -1240,12 +1581,20 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( display_always_scientific , " Alltid " ) ;
InsertGuiPair ( display_not_always_scientific , " Nรคr exponenten รคr stรถrre รคn: " ) ;
InsertGuiPair ( display_group_scientific , " Visa resultatet som vetenskapligt vรคrde " ) ;
InsertGuiPair ( display_decimal_point , " Decimalpunkt " ) ;
InsertGuiPair ( display_deg_rad_grad , " sin/cos asin/acos " ) ;
InsertGuiPair ( display_deg_rad_grad , " Trigonometric functions " ) ;
InsertGuiPair ( convert_type , " Type " ) ;
InsertGuiPair ( convert_input , " Input " ) ;
InsertGuiPair ( convert_output , " Output " ) ;
InsertGuiPair ( convert_dynamic_output , " Auto prefix " ) ;
InsertGuiPair ( display_grouping , " Grouping " ) ;
InsertGuiPair ( display_grouping_none , " None " ) ;
InsertGuiPair ( display_grouping_space , " Space " ) ;
InsertGuiPair ( display_input_decimal_point , " Input decimal point " ) ;
InsertGuiPair ( display_input_decimal_point_item1 , " . or , " ) ;
InsertGuiPair ( display_output_decimal_point , " Output decimal point " ) ;
InsertGuiPair ( display_param_sep , " Parameters separated by " ) ;
InsertGuiPair ( display_param_sep_item2 , " ; or . " ) ;
InsertGuiPair ( display_param_sep_item3 , " ; or , " ) ;
InsertGuiPair ( menu_view , " &Visa " ) ;
InsertGuiPair ( menu_edit , " &Redigera " ) ;
@ -1265,11 +1614,21 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( menu_view_lang_swedish , " S&venska " ) ;
InsertGuiPair ( menu_view_close_program , " &Avsluta " ) ;
InsertGuiPair ( menu_edit_undo , " &ร
ngra " ) ;
InsertGuiPair ( menu_edit_cut , " Cu&t \t Ctrl+X " ) ;
InsertGuiPair ( menu_edit_copy , " &Copy \t Ctrl+C " ) ;
InsertGuiPair ( menu_edit_paste , " &Paste " ) ;
InsertGuiPair ( menu_edit_del , " &Delete \t Del " ) ;
InsertGuiPair ( menu_edit_paste_formula , " &Klistra in " ) ;
InsertGuiPair ( menu_edit_copy_result , " &Kopiera result " ) ;
InsertGuiPair ( menu_edit_copy_both , " Copy &both \t Ctrl+B " ) ;
InsertGuiPair ( menu_edit_select_all , " Select &all \t Esc " ) ;
InsertGuiPair ( menu_edit_bracket , " Bracke&t \t Ctrl+0 " ) ;
InsertGuiPair ( menu_help_help , " &Hjรคlp " ) ;
InsertGuiPair ( menu_help_project_page , " &Projektsida " ) ;
InsertGuiPair ( menu_help_check_update , " &Check update... " ) ;
InsertGuiPair ( menu_help_about , " &Om " ) ;
InsertGuiPair ( menu_update_available , " &New version is available " ) ;
InsertGuiPair ( cant_init_calculations , " Berรคkningen kunde inte initieras! " ) ;
InsertGuiPair ( message_box_error_caption , " TTCalc " ) ;
InsertGuiPair ( cant_create_thread , " Den andra trรฅden fรถr utrรคkning kunde inte skapas " ) ;
@ -1277,18 +1636,19 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( cant_create_main_window , " Applikationens huvudfรถnster kunde inte skapas " ) ;
InsertGuiPair ( cant_init_common_controls , " Instรคllningarna kunde inte initieras (InitCommonControlsEx) " ) ;
InsertGuiPair ( about_text ,
" Matematisk kalkylator TTCalc %d.%d.%d%s%s \r \n "
" Matematisk kalkylator TTCalc %d.%d.%d%s%s \r \n \r \n "
" Upphovsman: Tomasz Sowa \r \n "
" Kontakt: t.sowa@ttmath.org \r \n "
" Licens: BSD (open source) \r \n "
" Projektsida: http://ttcalc.sourceforge.net \r \n "
" Bignumbiblotek: TTMath %d.%d.%d%s \r \n "
" Bignum type: binary floating point numbers \r \n "
" Programmeringssprรฅk: C++ \r \n "
" Kompilator: %s \r \n "
" %s " // for upx
" \r \n "
" TTCalc anvรคnder sig av TTMath bignum bibloteket "
" som kan hittas hรคr: http://sourceforge.net/projects/ttmath \r \n "
" som kan hittas hรคr: http://www.ttmath.org \r \n "
" \r \n "
# ifdef TTCALC_PORTABLE
" Detta รคr den portabla versionen av TTCalc. I denna version "
@ -1296,9 +1656,14 @@ void Languages::InitGuiMessagesTab()
" mantissan och 32 bitar fรถr exponenten) det รคr omkring +/-6.9e+646457021. \r \n "
" \r \n "
# endif
" Har du frรฅgor, goda rรฅd eller interessanta idรฉer betrรคffande "
" detta program eller vill du rentav bidra med din kompetens som "
" utvecklare eller programmerare รคr du vรคlkommen att kontakta upphovsmannen. "
" Translations: \r \n "
" English Author \r \n " // one tabulator between language and the name of the author
" Polish Author \r \n "
" Spanish Alejandro S. Valdezate <alesanval@gmail.com> \r \n "
" Danish Rune Bisgaard Vammen <runebisgaard@gmail.com> \r \n "
" Chinese Juis <zsyfly@gmail.com> \r \n "
" Russian Vladimir Gladilovich <vdgladilovich@gmail.com> \r \n "
" Swedish Lars 'Bafvert' Gafvert <lars.gafvert@gmail.com> \r \n "
) ;
InsertGuiPair ( about_text_portable_version , " transportabel version " ) ;
InsertGuiPair ( about_text_exe_packer , " EXE Packer: UPX 3.03 \r \n " ) ;
@ -1307,6 +1672,37 @@ void Languages::InitGuiMessagesTab()
InsertGuiPair ( unknown_error , " Det har intrรคffat ett okรคnt fel " ) ;
InsertGuiPair ( cant_find_help , " Kunde inte hitta nรฅgra hjรคlpfiler " ) ;
InsertGuiPair ( cant_open_project_page , " Projektsidan kunde inte รถppnas " ) ;
InsertGuiPair ( update_title , " Check for a new version " ) ;
InsertGuiPair ( update_button_next , " Next " ) ;
InsertGuiPair ( update_button_finish , " Finish " ) ;
InsertGuiPair ( update_button_cancel , " Cancel " ) ;
InsertGuiPair ( update_check_at_startup , " Always check for the update on startup " ) ;
InsertGuiPair ( update_check_for_info , " Press Next to check for the update... " ) ;
InsertGuiPair ( update_is_new_version , " Version %d.%d.%d is available, press Next to download... " ) ;
InsertGuiPair ( update_no_new_version , " There is not a new version available. " ) ;
InsertGuiPair ( update_download_from , " Downloading from... " ) ;
# ifndef TTCALC_PORTABLE
InsertGuiPair ( update_downloaded_info1 , " A new setup program has been downloaded. " ) ;
InsertGuiPair ( update_downloaded_info2 , " Press Finish to close TTCalc and run the installer. " ) ;
# else
InsertGuiPair ( update_downloaded_info1 , " A new version of TTCalc has been downloaded. " ) ;
InsertGuiPair ( update_downloaded_info2 , " " ) ;
# endif
InsertGuiPair ( update_download_error , " There was a problem with downloading, please try again later. " ) ;
InsertGuiPair ( pad_title , " Pad " ) ;
InsertGuiPair ( pad_menu_file , " &File " ) ;
InsertGuiPair ( pad_menu_edit , " &Edit " ) ;
InsertGuiPair ( pad_menu_file_new , " &New " ) ; // temporarily not used
InsertGuiPair ( pad_menu_file_open , " &Open... " ) ;
InsertGuiPair ( pad_menu_file_saveas , " Save &as... " ) ;
InsertGuiPair ( pad_menu_file_close , " &Close " ) ;
InsertGuiPair ( pad_menu_edit_undo , " &Undo \t Ctrl+Z " ) ;
InsertGuiPair ( pad_menu_edit_cut , " Cu&t \t Ctrl+X " ) ;
InsertGuiPair ( pad_menu_edit_copy , " &Copy \t Ctrl+C " ) ;
InsertGuiPair ( pad_menu_edit_paste , " &Paste \t Ctrl+V " ) ;
InsertGuiPair ( pad_menu_edit_del , " &Del \t Del " ) ;
InsertGuiPair ( pad_menu_edit_select_all , " Select &all \t Ctrl+A " ) ;
}