Advertisement
Guest User

Untitled

a guest
Aug 24th, 2018
206
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 4.13 KB | None | 0 0
  1. ; File documentation
  2. ; Comments start with a semicolon (;)
  3. ;
  4. ; To add a language use the following construct
  5. ;
  6. ; {LanguageName
  7. ; [FrameName]
  8. ; ElementName = Your_translation_for_this_element_(see_english_for_reference)
  9. ; [FrameName2]
  10. ; AnotherElementOnAnotherFrame = Some_translation
  11. ; }
  12. ;
  13. ; Syntax info:
  14. ; {LanguageName needs to be in one line
  15. ; The LanguageName end token "}" needs to be in one line
  16. ; [Section] needs to be in one line
  17. ; ElementName = Value needs to be in one line, spaces in value need to be replaced with "_": This_is_a_text results in "This is a text" in the application.
  18. ;
  19. ; Tabs and spaces get ignored
  20.  
  21. {English
  22. [StartupMessage]
  23. Message = If_you_use_this_program_not_exactly_as_specified_in_your_manual,_you_could_permanently_destroy_the_processor_on_the_target_board!_By_pressing_enter,_you_confirm_that_you've_read_this_warning_and_you_will_be_careful_while_updating_or_initializing_your_boards.
  24. Title = Warning
  25. CheckBox = Do_not_show_again
  26.  
  27. [MenuBar]
  28. ; Menu bar
  29. Language = Language
  30.  
  31. [Frame]
  32. AdapterDetectedPostfix = _(Programmer_detected)
  33.  
  34. ; Static text
  35. TextPort = Port:
  36. TextBoard = Board:
  37.  
  38. ; Error message
  39. MBErrorNoPortFound = Programmer_not_found!_Plug_in_the_programmer_via_USB_first_or_try_to_reinstall_the_USB-FTDI_driver.
  40. MBErrorNoPortFoundCaption = No_programmer
  41. WarningFoundPortButNoAdapter = Serial_ports_are_available_but_no_adapter_is_present
  42.  
  43. ; Status box
  44. StatusBoxTitle = Status
  45. StatusBoxOK = [_OK_]
  46. StatusBoxWarning = [_WARNING_]
  47. StatusBoxError = [_ERROR_]
  48.  
  49. StatusBoxDone = Process_completed_successfully!
  50. StatusBoxFailed = Process_failed!
  51.  
  52. StatusBoxInit = Initializing_board...
  53. StatusBoxUpdate = Updating_board...
  54.  
  55. StatusBoxCheckConnection = Checking_connection...
  56. StatusBoxEraseChip = Erasing_chip...
  57. StatusBoxBurnFuses = Burning_fuses...
  58. StatusBoxUpdating = Writing_update...
  59.  
  60. StatusBoxReadUPD = Reading_UPD_file...
  61. StatusBoxCheckUPDFileVersion = Check_UPD_file_version...
  62. StatusBoxCheckUPDTargetBoard = Check_UPD_compatibility...
  63. StatusBoxDecryptUPD = Decrypting_UPD_file...
  64.  
  65. StatusBoxScanSerialPorts = Scanning_ports...
  66. StatusBoxSearchProgrammer = Searching_for_programmer
  67.  
  68. ;Status light
  69. StatusLightReady = Ready_to_update
  70. StatusLightNotReady = Not_ready
  71.  
  72. ; Buttons
  73. ButtonUpdate = Update
  74. ButtonInitialize = Initialize
  75. ButtonCheckConnection = Check_connection
  76. ButtonRescanPorts = Rescan_ports
  77. }
  78.  
  79. {Deutsch
  80. [StartupMessage]
  81. Message = xxxxxxxx
  82. Title = Warnung
  83. CheckBox = Nicht_erneut_anzeigen
  84.  
  85. [MenuBar]
  86. ; Menu bar
  87. Language = Sprache
  88.  
  89. [Frame]
  90. AdapterDetectedPostfix = _(Adapter_gefunden)
  91.  
  92. ; Static text
  93. TextPort = Port:
  94. TextBoard = Platine:
  95.  
  96. ; Error message
  97. MBErrorNoPortFound = Kein_Adapter_zur_Programmierung_gefunden!_Verbinden_Sie_zuerst_den_Adapter_per_USB_oder_versuchen_Sie_die_FTDI-USB_Treiber_neu_zu_installieren.
  98. MBErrorNoPortFoundCaption = Kein_Adpater_gefunden
  99. WarningFoundPortButNoAdapter = Serielle_Anschlüsse_gefunden,_aber_kein_Adapter_angeschlossen
  100.  
  101. ; Status box
  102. StatusBoxTitle = Status
  103. StatusBoxOK = [_OK_]
  104. StatusBoxWarning = [_WARNUNG_]
  105. StatusBoxError = [_FEHLER_]
  106.  
  107. StatusBoxDone = Prozess_erfolgreich_abgeschlossen!
  108. StatusBoxFailed = Prozess_fehlgeschlagen!
  109.  
  110. StatusBoxInit = Initialisiere_Prozessor...
  111. StatusBoxUpdate = Prozessor_updaten...
  112.  
  113. StatusBoxCheckConnection = Prüfe_Verbindung...
  114. StatusBoxEraseChip = Lösche_Prozessor...
  115. StatusBoxBurnFuses = Schreibe_AVR_fuses...
  116. StatusBoxUpdating = Schreibe_Update...
  117.  
  118. StatusBoxReadUPD = Lese_UPD_Datei...
  119. StatusBoxCheckUPDFileVersion = Prüfe_UPD_Datei_Version...
  120. StatusBoxCheckUPDTargetBoard = Prüfe_UPD_Datei_Kompatibilität...
  121. StatusBoxDecryptUPD = Entschlüssle_UPD_Datei...
  122.  
  123. StatusBoxScanSerialPorts = Scanne_ports...
  124. StatusBoxSearchProgrammer = Suche_Adapter
  125.  
  126. ;Status light
  127. StatusLightReady = Bereit_für_Update
  128. StatusLightNotReady = Nicht_bereit
  129.  
  130. ; Buttons
  131. ButtonUpdate = Update
  132. ButtonInitialize = Initialisieren
  133. ButtonCheckConnection = Verbindung_prüfen
  134. ButtonRescanPorts = Ports_scannen
  135. }
  136.  
  137. {Español
  138. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement