calamares_en.ts 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <!DOCTYPE TS>
  3. <TS version="2.1" language="en">
  4. <context>
  5. <name>BootInfoWidget</name>
  6. <message>
  7. <location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="69"/>
  8. <source>The &lt;strong&gt;boot environment&lt;/strong&gt; of this system.&lt;br&gt;&lt;br&gt;Older x86 systems only support &lt;strong&gt;BIOS&lt;/strong&gt;.&lt;br&gt;Modern systems usually use &lt;strong&gt;EFI&lt;/strong&gt;, but may also show up as BIOS if started in compatibility mode.</source>
  9. <translation>The &lt;strong&gt;boot environment&lt;/strong&gt; of this system.&lt;br&gt;&lt;br&gt;Older x86 systems only support &lt;strong&gt;BIOS&lt;/strong&gt;.&lt;br&gt;Modern systems usually use &lt;strong&gt;EFI&lt;/strong&gt;, but may also show up as BIOS if started in compatibility mode.</translation>
  10. </message>
  11. <message>
  12. <location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="79"/>
  13. <source>This system was started with an &lt;strong&gt;EFI&lt;/strong&gt; boot environment.&lt;br&gt;&lt;br&gt;To configure startup from an EFI environment, this installer must deploy a boot loader application, like &lt;strong&gt;GRUB&lt;/strong&gt; or &lt;strong&gt;systemd-boot&lt;/strong&gt; on an &lt;strong&gt;EFI System Partition&lt;/strong&gt;. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own.</source>
  14. <translation>This system was started with an &lt;strong&gt;EFI&lt;/strong&gt; boot environment.&lt;br&gt;&lt;br&gt;To configure startup from an EFI environment, this installer must deploy a boot loader application, like &lt;strong&gt;GRUB&lt;/strong&gt; or &lt;strong&gt;systemd-boot&lt;/strong&gt; on an &lt;strong&gt;EFI System Partition&lt;/strong&gt;. This is automatic, unless you choose manual partitioning, in which case you must choose it or create it on your own.</translation>
  15. </message>
  16. <message>
  17. <location filename="../src/modules/partition/gui/BootInfoWidget.cpp" line="91"/>
  18. <source>This system was started with a &lt;strong&gt;BIOS&lt;/strong&gt; boot environment.&lt;br&gt;&lt;br&gt;To configure startup from a BIOS environment, this installer must install a boot loader, like &lt;strong&gt;GRUB&lt;/strong&gt;, either at the beginning of a partition or on the &lt;strong&gt;Master Boot Record&lt;/strong&gt; near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own.</source>
  19. <translation>This system was started with a &lt;strong&gt;BIOS&lt;/strong&gt; boot environment.&lt;br&gt;&lt;br&gt;To configure startup from a BIOS environment, this installer must install a boot loader, like &lt;strong&gt;GRUB&lt;/strong&gt;, either at the beginning of a partition or on the &lt;strong&gt;Master Boot Record&lt;/strong&gt; near the beginning of the partition table (preferred). This is automatic, unless you choose manual partitioning, in which case you must set it up on your own.</translation>
  20. </message>
  21. </context>
  22. <context>
  23. <name>BootLoaderModel</name>
  24. <message>
  25. <location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="59"/>
  26. <source>Master Boot Record of %1</source>
  27. <translation>Master Boot Record of %1</translation>
  28. </message>
  29. <message>
  30. <location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="76"/>
  31. <source>Boot Partition</source>
  32. <translation>Boot Partition</translation>
  33. </message>
  34. <message>
  35. <location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="81"/>
  36. <source>System Partition</source>
  37. <translation>System Partition</translation>
  38. </message>
  39. <message>
  40. <location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="111"/>
  41. <source>Do not install a boot loader</source>
  42. <translation>Do not install a boot loader</translation>
  43. </message>
  44. <message>
  45. <location filename="../src/modules/partition/core/BootLoaderModel.cpp" line="125"/>
  46. <source>%1 (%2)</source>
  47. <translation>%1 (%2)</translation>
  48. </message>
  49. </context>
  50. <context>
  51. <name>Calamares::DebugWindow</name>
  52. <message>
  53. <location filename="../src/libcalamaresui/utils/DebugWindow.ui" line="14"/>
  54. <source>Form</source>
  55. <translation>Form</translation>
  56. </message>
  57. <message>
  58. <location filename="../src/libcalamaresui/utils/DebugWindow.ui" line="24"/>
  59. <source>GlobalStorage</source>
  60. <translation>GlobalStorage</translation>
  61. </message>
  62. <message>
  63. <location filename="../src/libcalamaresui/utils/DebugWindow.ui" line="34"/>
  64. <source>JobQueue</source>
  65. <translation>JobQueue</translation>
  66. </message>
  67. <message>
  68. <location filename="../src/libcalamaresui/utils/DebugWindow.ui" line="44"/>
  69. <source>Modules</source>
  70. <translation>Modules</translation>
  71. </message>
  72. <message>
  73. <location filename="../src/libcalamaresui/utils/DebugWindow.ui" line="57"/>
  74. <source>Type:</source>
  75. <translation>Type:</translation>
  76. </message>
  77. <message>
  78. <location filename="../src/libcalamaresui/utils/DebugWindow.ui" line="64"/>
  79. <location filename="../src/libcalamaresui/utils/DebugWindow.ui" line="78"/>
  80. <source>none</source>
  81. <translation>none</translation>
  82. </message>
  83. <message>
  84. <location filename="../src/libcalamaresui/utils/DebugWindow.ui" line="71"/>
  85. <source>Interface:</source>
  86. <translation>Interface:</translation>
  87. </message>
  88. <message>
  89. <location filename="../src/libcalamaresui/utils/DebugWindow.ui" line="93"/>
  90. <source>Tools</source>
  91. <translation>Tools</translation>
  92. </message>
  93. <message>
  94. <location filename="../src/libcalamaresui/utils/DebugWindow.cpp" line="182"/>
  95. <source>Debug information</source>
  96. <translation>Debug information</translation>
  97. </message>
  98. </context>
  99. <context>
  100. <name>Calamares::ExecutionViewStep</name>
  101. <message>
  102. <location filename="../src/libcalamaresui/ExecutionViewStep.cpp" line="77"/>
  103. <source>Install</source>
  104. <translation>Install</translation>
  105. </message>
  106. </context>
  107. <context>
  108. <name>Calamares::JobThread</name>
  109. <message>
  110. <location filename="../src/libcalamares/JobQueue.cpp" line="89"/>
  111. <source>Done</source>
  112. <translation>Done</translation>
  113. </message>
  114. </context>
  115. <context>
  116. <name>Calamares::ProcessJob</name>
  117. <message>
  118. <location filename="../src/libcalamares/ProcessJob.cpp" line="51"/>
  119. <source>Run command %1 %2</source>
  120. <translation>Run command %1 %2</translation>
  121. </message>
  122. <message>
  123. <location filename="../src/libcalamares/ProcessJob.cpp" line="60"/>
  124. <source>Running command %1 %2</source>
  125. <translation>Running command %1 %2</translation>
  126. </message>
  127. <message>
  128. <location filename="../src/libcalamares/ProcessJob.cpp" line="89"/>
  129. <source>External command crashed</source>
  130. <translation>External command crashed</translation>
  131. </message>
  132. <message>
  133. <location filename="../src/libcalamares/ProcessJob.cpp" line="90"/>
  134. <source>Command %1 crashed.
  135. Output:
  136. %2</source>
  137. <translation>Command %1 crashed.
  138. Output:
  139. %2</translation>
  140. </message>
  141. <message>
  142. <location filename="../src/libcalamares/ProcessJob.cpp" line="95"/>
  143. <source>External command failed to start</source>
  144. <translation>External command failed to start</translation>
  145. </message>
  146. <message>
  147. <location filename="../src/libcalamares/ProcessJob.cpp" line="96"/>
  148. <source>Command %1 failed to start.</source>
  149. <translation>Command %1 failed to start.</translation>
  150. </message>
  151. <message>
  152. <location filename="../src/libcalamares/ProcessJob.cpp" line="100"/>
  153. <source>Internal error when starting command</source>
  154. <translation>Internal error when starting command</translation>
  155. </message>
  156. <message>
  157. <location filename="../src/libcalamares/ProcessJob.cpp" line="101"/>
  158. <source>Bad parameters for process job call.</source>
  159. <translation>Bad parameters for process job call.</translation>
  160. </message>
  161. <message>
  162. <location filename="../src/libcalamares/ProcessJob.cpp" line="104"/>
  163. <source>External command failed to finish</source>
  164. <translation>External command failed to finish</translation>
  165. </message>
  166. <message>
  167. <location filename="../src/libcalamares/ProcessJob.cpp" line="105"/>
  168. <source>Command %1 failed to finish in %2s.
  169. Output:
  170. %3</source>
  171. <translation>Command %1 failed to finish in %2s.
  172. Output:
  173. %3</translation>
  174. </message>
  175. <message>
  176. <location filename="../src/libcalamares/ProcessJob.cpp" line="111"/>
  177. <source>External command finished with errors</source>
  178. <translation>External command finished with errors</translation>
  179. </message>
  180. <message>
  181. <location filename="../src/libcalamares/ProcessJob.cpp" line="112"/>
  182. <source>Command %1 finished with exit code %2.
  183. Output:
  184. %3</source>
  185. <translation>Command %1 finished with exit code %2.
  186. Output:
  187. %3</translation>
  188. </message>
  189. </context>
  190. <context>
  191. <name>Calamares::PythonJob</name>
  192. <message>
  193. <location filename="../src/libcalamares/PythonJob.cpp" line="265"/>
  194. <source>Running %1 operation.</source>
  195. <translation>Running %1 operation.</translation>
  196. </message>
  197. <message>
  198. <location filename="../src/libcalamares/PythonJob.cpp" line="280"/>
  199. <source>Bad working directory path</source>
  200. <translation>Bad working directory path</translation>
  201. </message>
  202. <message>
  203. <location filename="../src/libcalamares/PythonJob.cpp" line="281"/>
  204. <source>Working directory %1 for python job %2 is not readable.</source>
  205. <translation>Working directory %1 for python job %2 is not readable.</translation>
  206. </message>
  207. <message>
  208. <location filename="../src/libcalamares/PythonJob.cpp" line="291"/>
  209. <source>Bad main script file</source>
  210. <translation>Bad main script file</translation>
  211. </message>
  212. <message>
  213. <location filename="../src/libcalamares/PythonJob.cpp" line="292"/>
  214. <source>Main script file %1 for python job %2 is not readable.</source>
  215. <translation>Main script file %1 for python job %2 is not readable.</translation>
  216. </message>
  217. <message>
  218. <location filename="../src/libcalamares/PythonJob.cpp" line="368"/>
  219. <source>Boost.Python error in job &quot;%1&quot;.</source>
  220. <translation>Boost.Python error in job &quot;%1&quot;.</translation>
  221. </message>
  222. </context>
  223. <context>
  224. <name>Calamares::ViewManager</name>
  225. <message>
  226. <location filename="../src/libcalamaresui/ViewManager.cpp" line="73"/>
  227. <source>&amp;Back</source>
  228. <translation>&amp;Back</translation>
  229. </message>
  230. <message>
  231. <location filename="../src/libcalamaresui/ViewManager.cpp" line="74"/>
  232. <source>&amp;Next</source>
  233. <translation>&amp;Next</translation>
  234. </message>
  235. <message>
  236. <location filename="../src/libcalamaresui/ViewManager.cpp" line="75"/>
  237. <location filename="../src/libcalamaresui/ViewManager.cpp" line="300"/>
  238. <source>&amp;Cancel</source>
  239. <translation>&amp;Cancel</translation>
  240. </message>
  241. <message>
  242. <location filename="../src/libcalamaresui/ViewManager.cpp" line="76"/>
  243. <location filename="../src/libcalamaresui/ViewManager.cpp" line="301"/>
  244. <source>Cancel installation without changing the system.</source>
  245. <translation>Cancel installation without changing the system.</translation>
  246. </message>
  247. <message>
  248. <location filename="../src/libcalamaresui/ViewManager.cpp" line="99"/>
  249. <source>Cancel installation?</source>
  250. <translation>Cancel installation?</translation>
  251. </message>
  252. <message>
  253. <location filename="../src/libcalamaresui/ViewManager.cpp" line="100"/>
  254. <source>Do you really want to cancel the current install process?
  255. The installer will quit and all changes will be lost.</source>
  256. <translation>Do you really want to cancel the current install process?
  257. The installer will quit and all changes will be lost.</translation>
  258. </message>
  259. <message>
  260. <location filename="../src/libcalamaresui/ViewManager.cpp" line="105"/>
  261. <source>&amp;Yes</source>
  262. <translation>&amp;Yes</translation>
  263. </message>
  264. <message>
  265. <location filename="../src/libcalamaresui/ViewManager.cpp" line="106"/>
  266. <source>&amp;No</source>
  267. <translation>&amp;No</translation>
  268. </message>
  269. <message>
  270. <location filename="../src/libcalamaresui/ViewManager.cpp" line="183"/>
  271. <source>&amp;Close</source>
  272. <translation>&amp;Close</translation>
  273. </message>
  274. <message>
  275. <location filename="../src/libcalamaresui/ViewManager.cpp" line="233"/>
  276. <source>Continue with setup?</source>
  277. <translation>Continue with setup?</translation>
  278. </message>
  279. <message>
  280. <location filename="../src/libcalamaresui/ViewManager.cpp" line="234"/>
  281. <source>The %1 installer is about to make changes to your disk in order to install %2.&lt;br/&gt;&lt;strong&gt;You will not be able to undo these changes.&lt;/strong&gt;</source>
  282. <translation>The %1 installer is about to make changes to your disk in order to install %2.&lt;br/&gt;&lt;strong&gt;You will not be able to undo these changes.&lt;/strong&gt;</translation>
  283. </message>
  284. <message>
  285. <location filename="../src/libcalamaresui/ViewManager.cpp" line="239"/>
  286. <source>&amp;Install now</source>
  287. <translation>&amp;Install now</translation>
  288. </message>
  289. <message>
  290. <location filename="../src/libcalamaresui/ViewManager.cpp" line="240"/>
  291. <source>Go &amp;back</source>
  292. <translation>Go &amp;back</translation>
  293. </message>
  294. <message>
  295. <location filename="../src/libcalamaresui/ViewManager.cpp" line="269"/>
  296. <source>&amp;Done</source>
  297. <translation>&amp;Done</translation>
  298. </message>
  299. <message>
  300. <location filename="../src/libcalamaresui/ViewManager.cpp" line="270"/>
  301. <source>The installation is complete. Close the installer.</source>
  302. <translation>The installation is complete. Close the installer.</translation>
  303. </message>
  304. <message>
  305. <location filename="../src/libcalamaresui/ViewManager.cpp" line="180"/>
  306. <source>Error</source>
  307. <translation>Error</translation>
  308. </message>
  309. <message>
  310. <location filename="../src/libcalamaresui/ViewManager.cpp" line="181"/>
  311. <source>Installation Failed</source>
  312. <translation>Installation Failed</translation>
  313. </message>
  314. </context>
  315. <context>
  316. <name>CalamaresPython::Helper</name>
  317. <message>
  318. <location filename="../src/libcalamares/PythonHelper.cpp" line="263"/>
  319. <source>Unknown exception type</source>
  320. <translation>Unknown exception type</translation>
  321. </message>
  322. <message>
  323. <location filename="../src/libcalamares/PythonHelper.cpp" line="276"/>
  324. <source>unparseable Python error</source>
  325. <translation>unparseable Python error</translation>
  326. </message>
  327. <message>
  328. <location filename="../src/libcalamares/PythonHelper.cpp" line="292"/>
  329. <source>unparseable Python traceback</source>
  330. <translation>unparseable Python traceback</translation>
  331. </message>
  332. <message>
  333. <location filename="../src/libcalamares/PythonHelper.cpp" line="296"/>
  334. <source>Unfetchable Python error.</source>
  335. <translation>Unfetchable Python error.</translation>
  336. </message>
  337. </context>
  338. <context>
  339. <name>CalamaresWindow</name>
  340. <message>
  341. <location filename="../src/calamares/CalamaresWindow.cpp" line="45"/>
  342. <source>%1 Installer</source>
  343. <translation>%1 Installer</translation>
  344. </message>
  345. <message>
  346. <location filename="../src/calamares/CalamaresWindow.cpp" line="112"/>
  347. <source>Show debug information</source>
  348. <translation>Show debug information</translation>
  349. </message>
  350. </context>
  351. <context>
  352. <name>CheckerWidget</name>
  353. <message>
  354. <location filename="../src/modules/welcome/checker/CheckerWidget.cpp" line="96"/>
  355. <source>This computer does not satisfy the minimum requirements for installing %1.&lt;br/&gt;Installation cannot continue. &lt;a href=&quot;#details&quot;&gt;Details...&lt;/a&gt;</source>
  356. <translation>This computer does not satisfy the minimum requirements for installing %1.&lt;br/&gt;Installation cannot continue. &lt;a href=&quot;#details&quot;&gt;Details...&lt;/a&gt;</translation>
  357. </message>
  358. <message>
  359. <location filename="../src/modules/welcome/checker/CheckerWidget.cpp" line="113"/>
  360. <source>This computer does not satisfy some of the recommended requirements for installing %1.&lt;br/&gt;Installation can continue, but some features might be disabled.</source>
  361. <translation>This computer does not satisfy some of the recommended requirements for installing %1.&lt;br/&gt;Installation can continue, but some features might be disabled.</translation>
  362. </message>
  363. <message>
  364. <location filename="../src/modules/welcome/checker/CheckerWidget.cpp" line="151"/>
  365. <source>This program will ask you some questions and set up %2 on your computer.</source>
  366. <translation>This program will ask you some questions and set up %2 on your computer.</translation>
  367. </message>
  368. <message>
  369. <location filename="../src/modules/welcome/checker/CheckerWidget.cpp" line="174"/>
  370. <source>For best results, please ensure that this computer:</source>
  371. <translation>For best results, please ensure that this computer:</translation>
  372. </message>
  373. <message>
  374. <location filename="../src/modules/welcome/checker/CheckerWidget.cpp" line="202"/>
  375. <source>System requirements</source>
  376. <translation>System requirements</translation>
  377. </message>
  378. </context>
  379. <context>
  380. <name>ChoicePage</name>
  381. <message>
  382. <location filename="../src/modules/partition/gui/ChoicePage.ui" line="14"/>
  383. <source>Form</source>
  384. <translation>Form</translation>
  385. </message>
  386. <message>
  387. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="128"/>
  388. <source>After:</source>
  389. <translation>After:</translation>
  390. </message>
  391. <message>
  392. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="235"/>
  393. <source>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</source>
  394. <translation>&lt;strong&gt;Manual partitioning&lt;/strong&gt;&lt;br/&gt;You can create or resize partitions yourself.</translation>
  395. </message>
  396. <message>
  397. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="978"/>
  398. <source>Boot loader location:</source>
  399. <translation>Boot loader location:</translation>
  400. </message>
  401. <message>
  402. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="922"/>
  403. <source>%1 will be shrunk to %2MB and a new %3MB partition will be created for %4.</source>
  404. <translation>%1 will be shrunk to %2MB and a new %3MB partition will be created for %4.</translation>
  405. </message>
  406. <message>
  407. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="126"/>
  408. <source>Select storage de&amp;vice:</source>
  409. <translation>Select storage de&amp;vice:</translation>
  410. </message>
  411. <message>
  412. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="127"/>
  413. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="904"/>
  414. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="950"/>
  415. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1029"/>
  416. <source>Current:</source>
  417. <translation>Current:</translation>
  418. </message>
  419. <message>
  420. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="775"/>
  421. <source>Reuse %1 as home partition for %2.</source>
  422. <translation>Reuse %1 as home partition for %2.</translation>
  423. </message>
  424. <message>
  425. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="905"/>
  426. <source>&lt;strong&gt;Select a partition to shrink, then drag the bottom bar to resize&lt;/strong&gt;</source>
  427. <translation>&lt;strong&gt;Select a partition to shrink, then drag the bottom bar to resize&lt;/strong&gt;</translation>
  428. </message>
  429. <message>
  430. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1020"/>
  431. <source>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</source>
  432. <translation>&lt;strong&gt;Select a partition to install on&lt;/strong&gt;</translation>
  433. </message>
  434. <message>
  435. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1076"/>
  436. <source>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
  437. <translation>An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</translation>
  438. </message>
  439. <message>
  440. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1085"/>
  441. <source>The EFI system partition at %1 will be used for starting %2.</source>
  442. <translation>The EFI system partition at %1 will be used for starting %2.</translation>
  443. </message>
  444. <message>
  445. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1093"/>
  446. <source>EFI system partition:</source>
  447. <translation>EFI system partition:</translation>
  448. </message>
  449. <message>
  450. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1177"/>
  451. <source>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
  452. <translation>This storage device does not seem to have an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</translation>
  453. </message>
  454. <message>
  455. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1182"/>
  456. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1219"/>
  457. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1241"/>
  458. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1265"/>
  459. <source>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color=&quot;red&quot;&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</source>
  460. <translation>&lt;strong&gt;Erase disk&lt;/strong&gt;&lt;br/&gt;This will &lt;font color=&quot;red&quot;&gt;delete&lt;/font&gt; all data currently present on the selected storage device.</translation>
  461. </message>
  462. <message>
  463. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1209"/>
  464. <source>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
  465. <translation>This storage device has %1 on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</translation>
  466. </message>
  467. <message>
  468. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1186"/>
  469. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1215"/>
  470. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1237"/>
  471. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1261"/>
  472. <source>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</source>
  473. <translation>&lt;strong&gt;Install alongside&lt;/strong&gt;&lt;br/&gt;The installer will shrink a partition to make room for %1.</translation>
  474. </message>
  475. <message>
  476. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1190"/>
  477. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1224"/>
  478. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1245"/>
  479. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1269"/>
  480. <source>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</source>
  481. <translation>&lt;strong&gt;Replace a partition&lt;/strong&gt;&lt;br/&gt;Replaces a partition with %1.</translation>
  482. </message>
  483. <message>
  484. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1232"/>
  485. <source>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
  486. <translation>This storage device already has an operating system on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</translation>
  487. </message>
  488. <message>
  489. <location filename="../src/modules/partition/gui/ChoicePage.cpp" line="1256"/>
  490. <source>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</source>
  491. <translation>This storage device has multiple operating systems on it. What would you like to do?&lt;br/&gt;You will be able to review and confirm your choices before any change is made to the storage device.</translation>
  492. </message>
  493. </context>
  494. <context>
  495. <name>ClearMountsJob</name>
  496. <message>
  497. <location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="45"/>
  498. <source>Clear mounts for partitioning operations on %1</source>
  499. <translation>Clear mounts for partitioning operations on %1</translation>
  500. </message>
  501. <message>
  502. <location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="53"/>
  503. <source>Clearing mounts for partitioning operations on %1.</source>
  504. <translation>Clearing mounts for partitioning operations on %1.</translation>
  505. </message>
  506. <message>
  507. <location filename="../src/modules/partition/jobs/ClearMountsJob.cpp" line="190"/>
  508. <source>Cleared all mounts for %1</source>
  509. <translation>Cleared all mounts for %1</translation>
  510. </message>
  511. </context>
  512. <context>
  513. <name>ClearTempMountsJob</name>
  514. <message>
  515. <location filename="../src/modules/partition/jobs/ClearTempMountsJob.cpp" line="42"/>
  516. <source>Clear all temporary mounts.</source>
  517. <translation>Clear all temporary mounts.</translation>
  518. </message>
  519. <message>
  520. <location filename="../src/modules/partition/jobs/ClearTempMountsJob.cpp" line="49"/>
  521. <source>Clearing all temporary mounts.</source>
  522. <translation>Clearing all temporary mounts.</translation>
  523. </message>
  524. <message>
  525. <location filename="../src/modules/partition/jobs/ClearTempMountsJob.cpp" line="60"/>
  526. <source>Cannot get list of temporary mounts.</source>
  527. <translation>Cannot get list of temporary mounts.</translation>
  528. </message>
  529. <message>
  530. <location filename="../src/modules/partition/jobs/ClearTempMountsJob.cpp" line="99"/>
  531. <source>Cleared all temporary mounts.</source>
  532. <translation>Cleared all temporary mounts.</translation>
  533. </message>
  534. </context>
  535. <context>
  536. <name>CreatePartitionDialog</name>
  537. <message>
  538. <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="14"/>
  539. <source>Create a Partition</source>
  540. <translation>Create a Partition</translation>
  541. </message>
  542. <message>
  543. <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="48"/>
  544. <source> MiB</source>
  545. <translation> MiB</translation>
  546. </message>
  547. <message>
  548. <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="55"/>
  549. <source>Partition &amp;Type:</source>
  550. <translation>Partition &amp;Type:</translation>
  551. </message>
  552. <message>
  553. <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="67"/>
  554. <source>&amp;Primary</source>
  555. <translation>&amp;Primary</translation>
  556. </message>
  557. <message>
  558. <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="77"/>
  559. <source>E&amp;xtended</source>
  560. <translation>E&amp;xtended</translation>
  561. </message>
  562. <message>
  563. <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="119"/>
  564. <source>Fi&amp;le System:</source>
  565. <translation>Fi&amp;le System:</translation>
  566. </message>
  567. <message>
  568. <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="178"/>
  569. <source>Flags:</source>
  570. <translation>Flags:</translation>
  571. </message>
  572. <message>
  573. <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="151"/>
  574. <source>&amp;Mount Point:</source>
  575. <translation>&amp;Mount Point:</translation>
  576. </message>
  577. <message>
  578. <location filename="../src/modules/partition/gui/CreatePartitionDialog.ui" line="38"/>
  579. <source>Si&amp;ze:</source>
  580. <translation>Si&amp;ze:</translation>
  581. </message>
  582. <message>
  583. <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="66"/>
  584. <source>En&amp;crypt</source>
  585. <translation>En&amp;crypt</translation>
  586. </message>
  587. <message>
  588. <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="162"/>
  589. <source>Logical</source>
  590. <translation>Logical</translation>
  591. </message>
  592. <message>
  593. <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="167"/>
  594. <source>Primary</source>
  595. <translation>Primary</translation>
  596. </message>
  597. <message>
  598. <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="184"/>
  599. <source>GPT</source>
  600. <translation>GPT</translation>
  601. </message>
  602. <message>
  603. <location filename="../src/modules/partition/gui/CreatePartitionDialog.cpp" line="269"/>
  604. <source>Mountpoint already in use. Please select another one.</source>
  605. <translation>Mountpoint already in use. Please select another one.</translation>
  606. </message>
  607. </context>
  608. <context>
  609. <name>CreatePartitionJob</name>
  610. <message>
  611. <location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="50"/>
  612. <source>Create new %2MB partition on %4 (%3) with file system %1.</source>
  613. <translation>Create new %2MB partition on %4 (%3) with file system %1.</translation>
  614. </message>
  615. <message>
  616. <location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="61"/>
  617. <source>Create new &lt;strong&gt;%2MB&lt;/strong&gt; partition on &lt;strong&gt;%4&lt;/strong&gt; (%3) with file system &lt;strong&gt;%1&lt;/strong&gt;.</source>
  618. <translation>Create new &lt;strong&gt;%2MB&lt;/strong&gt; partition on &lt;strong&gt;%4&lt;/strong&gt; (%3) with file system &lt;strong&gt;%1&lt;/strong&gt;.</translation>
  619. </message>
  620. <message>
  621. <location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="73"/>
  622. <source>Creating new %1 partition on %2.</source>
  623. <translation>Creating new %1 partition on %2.</translation>
  624. </message>
  625. <message>
  626. <location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="85"/>
  627. <source>The installer failed to create partition on disk &apos;%1&apos;.</source>
  628. <translation>The installer failed to create partition on disk &apos;%1&apos;.</translation>
  629. </message>
  630. <message>
  631. <location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="94"/>
  632. <source>Could not open device &apos;%1&apos;.</source>
  633. <translation>Could not open device &apos;%1&apos;.</translation>
  634. </message>
  635. <message>
  636. <location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="104"/>
  637. <source>Could not open partition table.</source>
  638. <translation>Could not open partition table.</translation>
  639. </message>
  640. <message>
  641. <location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="128"/>
  642. <source>The installer failed to create file system on partition %1.</source>
  643. <translation>The installer failed to create file system on partition %1.</translation>
  644. </message>
  645. <message>
  646. <location filename="../src/modules/partition/jobs/CreatePartitionJob.cpp" line="136"/>
  647. <source>The installer failed to update partition table on disk &apos;%1&apos;.</source>
  648. <translation>The installer failed to update partition table on disk &apos;%1&apos;.</translation>
  649. </message>
  650. </context>
  651. <context>
  652. <name>CreatePartitionTableDialog</name>
  653. <message>
  654. <location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="20"/>
  655. <source>Create Partition Table</source>
  656. <translation>Create Partition Table</translation>
  657. </message>
  658. <message>
  659. <location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="39"/>
  660. <source>Creating a new partition table will delete all existing data on the disk.</source>
  661. <translation>Creating a new partition table will delete all existing data on the disk.</translation>
  662. </message>
  663. <message>
  664. <location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="65"/>
  665. <source>What kind of partition table do you want to create?</source>
  666. <translation>What kind of partition table do you want to create?</translation>
  667. </message>
  668. <message>
  669. <location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="72"/>
  670. <source>Master Boot Record (MBR)</source>
  671. <translation>Master Boot Record (MBR)</translation>
  672. </message>
  673. <message>
  674. <location filename="../src/modules/partition/gui/CreatePartitionTableDialog.ui" line="82"/>
  675. <source>GUID Partition Table (GPT)</source>
  676. <translation>GUID Partition Table (GPT)</translation>
  677. </message>
  678. </context>
  679. <context>
  680. <name>CreatePartitionTableJob</name>
  681. <message>
  682. <location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="50"/>
  683. <source>Create new %1 partition table on %2.</source>
  684. <translation>Create new %1 partition table on %2.</translation>
  685. </message>
  686. <message>
  687. <location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="57"/>
  688. <source>Create new &lt;strong&gt;%1&lt;/strong&gt; partition table on &lt;strong&gt;%2&lt;/strong&gt; (%3).</source>
  689. <translation>Create new &lt;strong&gt;%1&lt;/strong&gt; partition table on &lt;strong&gt;%2&lt;/strong&gt; (%3).</translation>
  690. </message>
  691. <message>
  692. <location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="67"/>
  693. <source>Creating new %1 partition table on %2.</source>
  694. <translation>Creating new %1 partition table on %2.</translation>
  695. </message>
  696. <message>
  697. <location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="77"/>
  698. <source>The installer failed to create a partition table on %1.</source>
  699. <translation>The installer failed to create a partition table on %1.</translation>
  700. </message>
  701. <message>
  702. <location filename="../src/modules/partition/jobs/CreatePartitionTableJob.cpp" line="85"/>
  703. <source>Could not open device %1.</source>
  704. <translation>Could not open device %1.</translation>
  705. </message>
  706. </context>
  707. <context>
  708. <name>CreateUserJob</name>
  709. <message>
  710. <location filename="../src/modules/users/CreateUserJob.cpp" line="50"/>
  711. <source>Create user %1</source>
  712. <translation>Create user %1</translation>
  713. </message>
  714. <message>
  715. <location filename="../src/modules/users/CreateUserJob.cpp" line="57"/>
  716. <source>Create user &lt;strong&gt;%1&lt;/strong&gt;.</source>
  717. <translation>Create user &lt;strong&gt;%1&lt;/strong&gt;.</translation>
  718. </message>
  719. <message>
  720. <location filename="../src/modules/users/CreateUserJob.cpp" line="64"/>
  721. <source>Creating user %1.</source>
  722. <translation>Creating user %1.</translation>
  723. </message>
  724. <message>
  725. <location filename="../src/modules/users/CreateUserJob.cpp" line="80"/>
  726. <source>Sudoers dir is not writable.</source>
  727. <translation>Sudoers dir is not writable.</translation>
  728. </message>
  729. <message>
  730. <location filename="../src/modules/users/CreateUserJob.cpp" line="84"/>
  731. <source>Cannot create sudoers file for writing.</source>
  732. <translation>Cannot create sudoers file for writing.</translation>
  733. </message>
  734. <message>
  735. <location filename="../src/modules/users/CreateUserJob.cpp" line="92"/>
  736. <source>Cannot chmod sudoers file.</source>
  737. <translation>Cannot chmod sudoers file.</translation>
  738. </message>
  739. <message>
  740. <location filename="../src/modules/users/CreateUserJob.cpp" line="98"/>
  741. <source>Cannot open groups file for reading.</source>
  742. <translation>Cannot open groups file for reading.</translation>
  743. </message>
  744. <message>
  745. <location filename="../src/modules/users/CreateUserJob.cpp" line="159"/>
  746. <source>Cannot create user %1.</source>
  747. <translation>Cannot create user %1.</translation>
  748. </message>
  749. <message>
  750. <location filename="../src/modules/users/CreateUserJob.cpp" line="161"/>
  751. <source>useradd terminated with error code %1.</source>
  752. <translation>useradd terminated with error code %1.</translation>
  753. </message>
  754. <message>
  755. <location filename="../src/modules/users/CreateUserJob.cpp" line="170"/>
  756. <source>Cannot add user %1 to groups: %2.</source>
  757. <translation>Cannot add user %1 to groups: %2.</translation>
  758. </message>
  759. <message>
  760. <location filename="../src/modules/users/CreateUserJob.cpp" line="173"/>
  761. <source>usermod terminated with error code %1.</source>
  762. <translation>usermod terminated with error code %1.</translation>
  763. </message>
  764. <message>
  765. <location filename="../src/modules/users/CreateUserJob.cpp" line="183"/>
  766. <source>Cannot set home directory ownership for user %1.</source>
  767. <translation>Cannot set home directory ownership for user %1.</translation>
  768. </message>
  769. <message>
  770. <location filename="../src/modules/users/CreateUserJob.cpp" line="185"/>
  771. <source>chown terminated with error code %1.</source>
  772. <translation>chown terminated with error code %1.</translation>
  773. </message>
  774. </context>
  775. <context>
  776. <name>DeletePartitionJob</name>
  777. <message>
  778. <location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="43"/>
  779. <source>Delete partition %1.</source>
  780. <translation>Delete partition %1.</translation>
  781. </message>
  782. <message>
  783. <location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="51"/>
  784. <source>Delete partition &lt;strong&gt;%1&lt;/strong&gt;.</source>
  785. <translation>Delete partition &lt;strong&gt;%1&lt;/strong&gt;.</translation>
  786. </message>
  787. <message>
  788. <location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="59"/>
  789. <source>Deleting partition %1.</source>
  790. <translation>Deleting partition %1.</translation>
  791. </message>
  792. <message>
  793. <location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="68"/>
  794. <source>The installer failed to delete partition %1.</source>
  795. <translation>The installer failed to delete partition %1.</translation>
  796. </message>
  797. <message>
  798. <location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="74"/>
  799. <source>Partition (%1) and device (%2) do not match.</source>
  800. <translation>Partition (%1) and device (%2) do not match.</translation>
  801. </message>
  802. <message>
  803. <location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="86"/>
  804. <source>Could not open device %1.</source>
  805. <translation>Could not open device %1.</translation>
  806. </message>
  807. <message>
  808. <location filename="../src/modules/partition/jobs/DeletePartitionJob.cpp" line="95"/>
  809. <source>Could not open partition table.</source>
  810. <translation>Could not open partition table.</translation>
  811. </message>
  812. </context>
  813. <context>
  814. <name>DeviceInfoWidget</name>
  815. <message>
  816. <location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="150"/>
  817. <source>The type of &lt;strong&gt;partition table&lt;/strong&gt; on the selected storage device.&lt;br&gt;&lt;br&gt;The only way to change the partition table type is to erase and recreate the partition table from scratch, which destroys all data on the storage device.&lt;br&gt;This installer will keep the current partition table unless you explicitly choose otherwise.&lt;br&gt;If unsure, on modern systems GPT is preferred.</source>
  818. <translation>The type of &lt;strong&gt;partition table&lt;/strong&gt; on the selected storage device.&lt;br&gt;&lt;br&gt;The only way to change the partition table type is to erase and recreate the partition table from scratch, which destroys all data on the storage device.&lt;br&gt;This installer will keep the current partition table unless you explicitly choose otherwise.&lt;br&gt;If unsure, on modern systems GPT is preferred.</translation>
  819. </message>
  820. <message>
  821. <location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="107"/>
  822. <source>This device has a &lt;strong&gt;%1&lt;/strong&gt; partition table.</source>
  823. <translation>This device has a &lt;strong&gt;%1&lt;/strong&gt; partition table.</translation>
  824. </message>
  825. <message>
  826. <location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="114"/>
  827. <source>This is a &lt;strong&gt;loop&lt;/strong&gt; device.&lt;br&gt;&lt;br&gt;It is a pseudo-device with no partition table that makes a file accessible as a block device. This kind of setup usually only contains a single filesystem.</source>
  828. <translation>This is a &lt;strong&gt;loop&lt;/strong&gt; device.&lt;br&gt;&lt;br&gt;It is a pseudo-device with no partition table that makes a file accessible as a block device. This kind of setup usually only contains a single filesystem.</translation>
  829. </message>
  830. <message>
  831. <location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="121"/>
  832. <source>This installer &lt;strong&gt;cannot detect a partition table&lt;/strong&gt; on the selected storage device.&lt;br&gt;&lt;br&gt;The device either has no partition table, or the partition table is corrupted or of an unknown type.&lt;br&gt;This installer can create a new partition table for you, either automatically, or through the manual partitioning page.</source>
  833. <translation>This installer &lt;strong&gt;cannot detect a partition table&lt;/strong&gt; on the selected storage device.&lt;br&gt;&lt;br&gt;The device either has no partition table, or the partition table is corrupted or of an unknown type.&lt;br&gt;This installer can create a new partition table for you, either automatically, or through the manual partitioning page.</translation>
  834. </message>
  835. <message>
  836. <location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="131"/>
  837. <source>&lt;br&gt;&lt;br&gt;This is the recommended partition table type for modern systems which start from an &lt;strong&gt;EFI&lt;/strong&gt; boot environment.</source>
  838. <translation>&lt;br&gt;&lt;br&gt;This is the recommended partition table type for modern systems which start from an &lt;strong&gt;EFI&lt;/strong&gt; boot environment.</translation>
  839. </message>
  840. <message>
  841. <location filename="../src/modules/partition/gui/DeviceInfoWidget.cpp" line="137"/>
  842. <source>&lt;br&gt;&lt;br&gt;This partition table type is only advisable on older systems which start from a &lt;strong&gt;BIOS&lt;/strong&gt; boot environment. GPT is recommended in most other cases.&lt;br&gt;&lt;br&gt;&lt;strong&gt;Warning:&lt;/strong&gt; the MBR partition table is an obsolete MS-DOS era standard.&lt;br&gt;Only 4 &lt;em&gt;primary&lt;/em&gt; partitions may be created, and of those 4, one can be an &lt;em&gt;extended&lt;/em&gt; partition, which may in turn contain many &lt;em&gt;logical&lt;/em&gt; partitions.</source>
  843. <translation>&lt;br&gt;&lt;br&gt;This partition table type is only advisable on older systems which start from a &lt;strong&gt;BIOS&lt;/strong&gt; boot environment. GPT is recommended in most other cases.&lt;br&gt;&lt;br&gt;&lt;strong&gt;Warning:&lt;/strong&gt; the MBR partition table is an obsolete MS-DOS era standard.&lt;br&gt;Only 4 &lt;em&gt;primary&lt;/em&gt; partitions may be created, and of those 4, one can be an &lt;em&gt;extended&lt;/em&gt; partition, which may in turn contain many &lt;em&gt;logical&lt;/em&gt; partitions.</translation>
  844. </message>
  845. </context>
  846. <context>
  847. <name>DeviceModel</name>
  848. <message>
  849. <location filename="../src/modules/partition/core/DeviceModel.cpp" line="80"/>
  850. <source>%1 - %2 (%3)</source>
  851. <translation>%1 - %2 (%3)</translation>
  852. </message>
  853. </context>
  854. <context>
  855. <name>DracutLuksCfgJob</name>
  856. <message>
  857. <location filename="../src/modules/dracutlukscfg/DracutLuksCfgJob.cpp" line="131"/>
  858. <source>Write LUKS configuration for Dracut to %1</source>
  859. <translation>Write LUKS configuration for Dracut to %1</translation>
  860. </message>
  861. <message>
  862. <location filename="../src/modules/dracutlukscfg/DracutLuksCfgJob.cpp" line="133"/>
  863. <source>Skip writing LUKS configuration for Dracut: &quot;/&quot; partition is not encrypted</source>
  864. <translation>Skip writing LUKS configuration for Dracut: &quot;/&quot; partition is not encrypted</translation>
  865. </message>
  866. <message>
  867. <location filename="../src/modules/dracutlukscfg/DracutLuksCfgJob.cpp" line="149"/>
  868. <source>Failed to open %1</source>
  869. <translation>Failed to open %1</translation>
  870. </message>
  871. </context>
  872. <context>
  873. <name>DummyCppJob</name>
  874. <message>
  875. <location filename="../src/modules/dummycpp/DummyCppJob.cpp" line="46"/>
  876. <source>Dummy C++ Job</source>
  877. <translation>Dummy C++ Job</translation>
  878. </message>
  879. </context>
  880. <context>
  881. <name>EditExistingPartitionDialog</name>
  882. <message>
  883. <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="20"/>
  884. <source>Edit Existing Partition</source>
  885. <translation>Edit Existing Partition</translation>
  886. </message>
  887. <message>
  888. <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="50"/>
  889. <source>Content:</source>
  890. <translation>Content:</translation>
  891. </message>
  892. <message>
  893. <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="60"/>
  894. <source>&amp;Keep</source>
  895. <translation>&amp;Keep</translation>
  896. </message>
  897. <message>
  898. <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="70"/>
  899. <source>Format</source>
  900. <translation>Format</translation>
  901. </message>
  902. <message>
  903. <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="89"/>
  904. <source>Warning: Formatting the partition will erase all existing data.</source>
  905. <translation>Warning: Formatting the partition will erase all existing data.</translation>
  906. </message>
  907. <message>
  908. <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="99"/>
  909. <source>&amp;Mount Point:</source>
  910. <translation>&amp;Mount Point:</translation>
  911. </message>
  912. <message>
  913. <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="119"/>
  914. <source>Si&amp;ze:</source>
  915. <translation>Si&amp;ze:</translation>
  916. </message>
  917. <message>
  918. <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="129"/>
  919. <source> MiB</source>
  920. <translation> MiB</translation>
  921. </message>
  922. <message>
  923. <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="136"/>
  924. <source>Fi&amp;le System:</source>
  925. <translation>Fi&amp;le System:</translation>
  926. </message>
  927. <message>
  928. <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.ui" line="149"/>
  929. <source>Flags:</source>
  930. <translation>Flags:</translation>
  931. </message>
  932. <message>
  933. <location filename="../src/modules/partition/gui/EditExistingPartitionDialog.cpp" line="307"/>
  934. <source>Mountpoint already in use. Please select another one.</source>
  935. <translation>Mountpoint already in use. Please select another one.</translation>
  936. </message>
  937. </context>
  938. <context>
  939. <name>EncryptWidget</name>
  940. <message>
  941. <location filename="../src/modules/partition/gui/EncryptWidget.ui" line="14"/>
  942. <source>Form</source>
  943. <translation>Form</translation>
  944. </message>
  945. <message>
  946. <location filename="../src/modules/partition/gui/EncryptWidget.ui" line="32"/>
  947. <source>En&amp;crypt system</source>
  948. <translation>En&amp;crypt system</translation>
  949. </message>
  950. <message>
  951. <location filename="../src/modules/partition/gui/EncryptWidget.ui" line="42"/>
  952. <source>Passphrase</source>
  953. <translation>Passphrase</translation>
  954. </message>
  955. <message>
  956. <location filename="../src/modules/partition/gui/EncryptWidget.ui" line="52"/>
  957. <source>Confirm passphrase</source>
  958. <translation>Confirm passphrase</translation>
  959. </message>
  960. <message>
  961. <location filename="../src/modules/partition/gui/EncryptWidget.cpp" line="151"/>
  962. <source>Please enter the same passphrase in both boxes.</source>
  963. <translation>Please enter the same passphrase in both boxes.</translation>
  964. </message>
  965. </context>
  966. <context>
  967. <name>FillGlobalStorageJob</name>
  968. <message>
  969. <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="167"/>
  970. <source>Set partition information</source>
  971. <translation>Set partition information</translation>
  972. </message>
  973. <message>
  974. <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="191"/>
  975. <source>Install %1 on &lt;strong&gt;new&lt;/strong&gt; %2 system partition.</source>
  976. <translation>Install %1 on &lt;strong&gt;new&lt;/strong&gt; %2 system partition.</translation>
  977. </message>
  978. <message>
  979. <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="195"/>
  980. <source>Set up &lt;strong&gt;new&lt;/strong&gt; %2 partition with mount point &lt;strong&gt;%1&lt;/strong&gt;.</source>
  981. <translation>Set up &lt;strong&gt;new&lt;/strong&gt; %2 partition with mount point &lt;strong&gt;%1&lt;/strong&gt;.</translation>
  982. </message>
  983. <message>
  984. <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="203"/>
  985. <source>Install %2 on %3 system partition &lt;strong&gt;%1&lt;/strong&gt;.</source>
  986. <translation>Install %2 on %3 system partition &lt;strong&gt;%1&lt;/strong&gt;.</translation>
  987. </message>
  988. <message>
  989. <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="208"/>
  990. <source>Set up %3 partition &lt;strong&gt;%1&lt;/strong&gt; with mount point &lt;strong&gt;%2&lt;/strong&gt;.</source>
  991. <translation>Set up %3 partition &lt;strong&gt;%1&lt;/strong&gt; with mount point &lt;strong&gt;%2&lt;/strong&gt;.</translation>
  992. </message>
  993. <message>
  994. <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="220"/>
  995. <source>Install boot loader on &lt;strong&gt;%1&lt;/strong&gt;.</source>
  996. <translation>Install boot loader on &lt;strong&gt;%1&lt;/strong&gt;.</translation>
  997. </message>
  998. <message>
  999. <location filename="../src/modules/partition/jobs/FillGlobalStorageJob.cpp" line="230"/>
  1000. <source>Setting up mount points.</source>
  1001. <translation>Setting up mount points.</translation>
  1002. </message>
  1003. </context>
  1004. <context>
  1005. <name>FinishedPage</name>
  1006. <message>
  1007. <location filename="../src/modules/finished/FinishedPage.ui" line="14"/>
  1008. <source>Form</source>
  1009. <translation>Form</translation>
  1010. </message>
  1011. <message>
  1012. <location filename="../src/modules/finished/FinishedPage.ui" line="77"/>
  1013. <source>&amp;Restart now</source>
  1014. <translation>&amp;Restart now</translation>
  1015. </message>
  1016. <message>
  1017. <location filename="../src/modules/finished/FinishedPage.cpp" line="52"/>
  1018. <source>&lt;h1&gt;All done.&lt;/h1&gt;&lt;br/&gt;%1 has been installed on your computer.&lt;br/&gt;You may now restart into your new system, or continue using the %2 Live environment.</source>
  1019. <translation>&lt;h1&gt;All done.&lt;/h1&gt;&lt;br/&gt;%1 has been installed on your computer.&lt;br/&gt;You may now restart into your new system, or continue using the %2 Live environment.</translation>
  1020. </message>
  1021. <message>
  1022. <location filename="../src/modules/finished/FinishedPage.cpp" line="110"/>
  1023. <source>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</source>
  1024. <translation>&lt;h1&gt;Installation Failed&lt;/h1&gt;&lt;br/&gt;%1 has not been installed on your computer.&lt;br/&gt;The error message was: %2.</translation>
  1025. </message>
  1026. </context>
  1027. <context>
  1028. <name>FinishedViewStep</name>
  1029. <message>
  1030. <location filename="../src/modules/finished/FinishedViewStep.cpp" line="59"/>
  1031. <source>Finish</source>
  1032. <translation>Finish</translation>
  1033. </message>
  1034. <message>
  1035. <location filename="../src/modules/finished/FinishedViewStep.cpp" line="124"/>
  1036. <source>Installation Complete</source>
  1037. <translation>Installation Complete</translation>
  1038. </message>
  1039. <message>
  1040. <location filename="../src/modules/finished/FinishedViewStep.cpp" line="125"/>
  1041. <source>The installation of %1 is complete.</source>
  1042. <translation>The installation of %1 is complete.</translation>
  1043. </message>
  1044. </context>
  1045. <context>
  1046. <name>FormatPartitionJob</name>
  1047. <message>
  1048. <location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="49"/>
  1049. <source>Format partition %1 (file system: %2, size: %3 MB) on %4.</source>
  1050. <translation>Format partition %1 (file system: %2, size: %3 MB) on %4.</translation>
  1051. </message>
  1052. <message>
  1053. <location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="60"/>
  1054. <source>Format &lt;strong&gt;%3MB&lt;/strong&gt; partition &lt;strong&gt;%1&lt;/strong&gt; with file system &lt;strong&gt;%2&lt;/strong&gt;.</source>
  1055. <translation>Format &lt;strong&gt;%3MB&lt;/strong&gt; partition &lt;strong&gt;%1&lt;/strong&gt; with file system &lt;strong&gt;%2&lt;/strong&gt;.</translation>
  1056. </message>
  1057. <message>
  1058. <location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="71"/>
  1059. <source>Formatting partition %1 with file system %2.</source>
  1060. <translation>Formatting partition %1 with file system %2.</translation>
  1061. </message>
  1062. <message>
  1063. <location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="83"/>
  1064. <source>The installer failed to format partition %1 on disk &apos;%2&apos;.</source>
  1065. <translation>The installer failed to format partition %1 on disk &apos;%2&apos;.</translation>
  1066. </message>
  1067. <message>
  1068. <location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="91"/>
  1069. <source>Could not open device &apos;%1&apos;.</source>
  1070. <translation>Could not open device &apos;%1&apos;.</translation>
  1071. </message>
  1072. <message>
  1073. <location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="100"/>
  1074. <source>Could not open partition table.</source>
  1075. <translation>Could not open partition table.</translation>
  1076. </message>
  1077. <message>
  1078. <location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="124"/>
  1079. <source>The installer failed to create file system on partition %1.</source>
  1080. <translation>The installer failed to create file system on partition %1.</translation>
  1081. </message>
  1082. <message>
  1083. <location filename="../src/modules/partition/jobs/FormatPartitionJob.cpp" line="133"/>
  1084. <source>The installer failed to update partition table on disk &apos;%1&apos;.</source>
  1085. <translation>The installer failed to update partition table on disk &apos;%1&apos;.</translation>
  1086. </message>
  1087. </context>
  1088. <context>
  1089. <name>InteractiveTerminalPage</name>
  1090. <message>
  1091. <location filename="../src/modules/interactiveterminal/InteractiveTerminalPage.cpp" line="53"/>
  1092. <source>Konsole not installed</source>
  1093. <translation>Konsole not installed</translation>
  1094. </message>
  1095. <message>
  1096. <location filename="../src/modules/interactiveterminal/InteractiveTerminalPage.cpp" line="54"/>
  1097. <source>Please install KDE Konsole and try again!</source>
  1098. <translation type="unfinished"></translation>
  1099. </message>
  1100. <message>
  1101. <location filename="../src/modules/interactiveterminal/InteractiveTerminalPage.cpp" line="116"/>
  1102. <source>Executing script: &amp;nbsp;&lt;code&gt;%1&lt;/code&gt;</source>
  1103. <translation>Executing script: &amp;nbsp;&lt;code&gt;%1&lt;/code&gt;</translation>
  1104. </message>
  1105. </context>
  1106. <context>
  1107. <name>InteractiveTerminalViewStep</name>
  1108. <message>
  1109. <location filename="../src/modules/interactiveterminal/InteractiveTerminalViewStep.cpp" line="45"/>
  1110. <source>Script</source>
  1111. <translation>Script</translation>
  1112. </message>
  1113. </context>
  1114. <context>
  1115. <name>KeyboardPage</name>
  1116. <message>
  1117. <location filename="../src/modules/keyboard/KeyboardPage.cpp" line="220"/>
  1118. <source>Set keyboard model to %1.&lt;br/&gt;</source>
  1119. <translation>Set keyboard model to %1.&lt;br/&gt;</translation>
  1120. </message>
  1121. <message>
  1122. <location filename="../src/modules/keyboard/KeyboardPage.cpp" line="222"/>
  1123. <source>Set keyboard layout to %1/%2.</source>
  1124. <translation>Set keyboard layout to %1/%2.</translation>
  1125. </message>
  1126. </context>
  1127. <context>
  1128. <name>KeyboardViewStep</name>
  1129. <message>
  1130. <location filename="../src/modules/keyboard/KeyboardViewStep.cpp" line="50"/>
  1131. <source>Keyboard</source>
  1132. <translation>Keyboard</translation>
  1133. </message>
  1134. </context>
  1135. <context>
  1136. <name>LCLocaleDialog</name>
  1137. <message>
  1138. <location filename="../src/modules/locale/LCLocaleDialog.cpp" line="34"/>
  1139. <source>System locale setting</source>
  1140. <translation>System locale setting</translation>
  1141. </message>
  1142. <message>
  1143. <location filename="../src/modules/locale/LCLocaleDialog.cpp" line="41"/>
  1144. <source>The system locale setting affects the language and character set for some command line user interface elements.&lt;br/&gt;The current setting is &lt;strong&gt;%1&lt;/strong&gt;.</source>
  1145. <translation>The system locale setting affects the language and character set for some command line user interface elements.&lt;br/&gt;The current setting is &lt;strong&gt;%1&lt;/strong&gt;.</translation>
  1146. </message>
  1147. <message>
  1148. <location filename="../src/modules/locale/LCLocaleDialog.cpp" line="66"/>
  1149. <source>&amp;Cancel</source>
  1150. <translation>&amp;Cancel</translation>
  1151. </message>
  1152. <message>
  1153. <location filename="../src/modules/locale/LCLocaleDialog.cpp" line="67"/>
  1154. <source>&amp;OK</source>
  1155. <translation>&amp;OK</translation>
  1156. </message>
  1157. </context>
  1158. <context>
  1159. <name>LicensePage</name>
  1160. <message>
  1161. <location filename="../src/modules/license/LicensePage.ui" line="14"/>
  1162. <source>Form</source>
  1163. <translation>Form</translation>
  1164. </message>
  1165. <message>
  1166. <location filename="../src/modules/license/LicensePage.cpp" line="88"/>
  1167. <source>I accept the terms and conditions above.</source>
  1168. <translation>I accept the terms and conditions above.</translation>
  1169. </message>
  1170. <message>
  1171. <location filename="../src/modules/license/LicensePage.cpp" line="115"/>
  1172. <source>&lt;h1&gt;License Agreement&lt;/h1&gt;This setup procedure will install proprietary software that is subject to licensing terms.</source>
  1173. <translation>&lt;h1&gt;License Agreement&lt;/h1&gt;This setup procedure will install proprietary software that is subject to licensing terms.</translation>
  1174. </message>
  1175. <message>
  1176. <location filename="../src/modules/license/LicensePage.cpp" line="118"/>
  1177. <source>Please review the End User License Agreements (EULAs) above.&lt;br/&gt;If you do not agree with the terms, the setup procedure cannot continue.</source>
  1178. <translation>Please review the End User License Agreements (EULAs) above.&lt;br/&gt;If you do not agree with the terms, the setup procedure cannot continue.</translation>
  1179. </message>
  1180. <message>
  1181. <location filename="../src/modules/license/LicensePage.cpp" line="124"/>
  1182. <source>&lt;h1&gt;License Agreement&lt;/h1&gt;This setup procedure can install proprietary software that is subject to licensing terms in order to provide additional features and enhance the user experience.</source>
  1183. <translation>&lt;h1&gt;License Agreement&lt;/h1&gt;This setup procedure can install proprietary software that is subject to licensing terms in order to provide additional features and enhance the user experience.</translation>
  1184. </message>
  1185. <message>
  1186. <location filename="../src/modules/license/LicensePage.cpp" line="129"/>
  1187. <source>Please review the End User License Agreements (EULAs) above.&lt;br/&gt;If you do not agree with the terms, proprietary software will not be installed, and open source alternatives will be used instead.</source>
  1188. <translation>Please review the End User License Agreements (EULAs) above.&lt;br/&gt;If you do not agree with the terms, proprietary software will not be installed, and open source alternatives will be used instead.</translation>
  1189. </message>
  1190. <message>
  1191. <location filename="../src/modules/license/LicensePage.cpp" line="159"/>
  1192. <source>&lt;strong&gt;%1 driver&lt;/strong&gt;&lt;br/&gt;by %2</source>
  1193. <extracomment>%1 is an untranslatable product name, example: Creative Audigy driver</extracomment>
  1194. <translation>&lt;strong&gt;%1 driver&lt;/strong&gt;&lt;br/&gt;by %2</translation>
  1195. </message>
  1196. <message>
  1197. <location filename="../src/modules/license/LicensePage.cpp" line="166"/>
  1198. <source>&lt;strong&gt;%1 graphics driver&lt;/strong&gt;&lt;br/&gt;&lt;font color=&quot;Grey&quot;&gt;by %2&lt;/font&gt;</source>
  1199. <extracomment>%1 is usually a vendor name, example: Nvidia graphics driver</extracomment>
  1200. <translation>&lt;strong&gt;%1 graphics driver&lt;/strong&gt;&lt;br/&gt;&lt;font color=&quot;Grey&quot;&gt;by %2&lt;/font&gt;</translation>
  1201. </message>
  1202. <message>
  1203. <location filename="../src/modules/license/LicensePage.cpp" line="172"/>
  1204. <source>&lt;strong&gt;%1 browser plugin&lt;/strong&gt;&lt;br/&gt;&lt;font color=&quot;Grey&quot;&gt;by %2&lt;/font&gt;</source>
  1205. <translation>&lt;strong&gt;%1 browser plugin&lt;/strong&gt;&lt;br/&gt;&lt;font color=&quot;Grey&quot;&gt;by %2&lt;/font&gt;</translation>
  1206. </message>
  1207. <message>
  1208. <location filename="../src/modules/license/LicensePage.cpp" line="178"/>
  1209. <source>&lt;strong&gt;%1 codec&lt;/strong&gt;&lt;br/&gt;&lt;font color=&quot;Grey&quot;&gt;by %2&lt;/font&gt;</source>
  1210. <translation>&lt;strong&gt;%1 codec&lt;/strong&gt;&lt;br/&gt;&lt;font color=&quot;Grey&quot;&gt;by %2&lt;/font&gt;</translation>
  1211. </message>
  1212. <message>
  1213. <location filename="../src/modules/license/LicensePage.cpp" line="184"/>
  1214. <source>&lt;strong&gt;%1 package&lt;/strong&gt;&lt;br/&gt;&lt;font color=&quot;Grey&quot;&gt;by %2&lt;/font&gt;</source>
  1215. <translation>&lt;strong&gt;%1 package&lt;/strong&gt;&lt;br/&gt;&lt;font color=&quot;Grey&quot;&gt;by %2&lt;/font&gt;</translation>
  1216. </message>
  1217. <message>
  1218. <location filename="../src/modules/license/LicensePage.cpp" line="190"/>
  1219. <source>&lt;strong&gt;%1&lt;/strong&gt;&lt;br/&gt;&lt;font color=&quot;Grey&quot;&gt;by %2&lt;/font&gt;</source>
  1220. <translation>&lt;strong&gt;%1&lt;/strong&gt;&lt;br/&gt;&lt;font color=&quot;Grey&quot;&gt;by %2&lt;/font&gt;</translation>
  1221. </message>
  1222. <message>
  1223. <location filename="../src/modules/license/LicensePage.cpp" line="202"/>
  1224. <source>&lt;a href=&quot;%1&quot;&gt;view license agreement&lt;/a&gt;</source>
  1225. <translation>&lt;a href=&quot;%1&quot;&gt;view license agreement&lt;/a&gt;</translation>
  1226. </message>
  1227. </context>
  1228. <context>
  1229. <name>LicenseViewStep</name>
  1230. <message>
  1231. <location filename="../src/modules/license/LicenseViewStep.cpp" line="51"/>
  1232. <source>License</source>
  1233. <translation>License</translation>
  1234. </message>
  1235. </context>
  1236. <context>
  1237. <name>LocalePage</name>
  1238. <message>
  1239. <location filename="../src/modules/locale/LocalePage.cpp" line="387"/>
  1240. <source>The system language will be set to %1.</source>
  1241. <translation>The system language will be set to %1.</translation>
  1242. </message>
  1243. <message>
  1244. <location filename="../src/modules/locale/LocalePage.cpp" line="389"/>
  1245. <source>The numbers and dates locale will be set to %1.</source>
  1246. <translation>The numbers and dates locale will be set to %1.</translation>
  1247. </message>
  1248. <message>
  1249. <location filename="../src/modules/locale/LocalePage.cpp" line="215"/>
  1250. <source>Region:</source>
  1251. <translation>Region:</translation>
  1252. </message>
  1253. <message>
  1254. <location filename="../src/modules/locale/LocalePage.cpp" line="216"/>
  1255. <source>Zone:</source>
  1256. <translation>Zone:</translation>
  1257. </message>
  1258. <message>
  1259. <location filename="../src/modules/locale/LocalePage.cpp" line="220"/>
  1260. <location filename="../src/modules/locale/LocalePage.cpp" line="221"/>
  1261. <source>&amp;Change...</source>
  1262. <translation>&amp;Change...</translation>
  1263. </message>
  1264. <message>
  1265. <location filename="../src/modules/locale/LocalePage.cpp" line="398"/>
  1266. <source>Set timezone to %1/%2.&lt;br/&gt;</source>
  1267. <translation>Set timezone to %1/%2.&lt;br/&gt;</translation>
  1268. </message>
  1269. <message>
  1270. <location filename="../src/modules/locale/LocalePage.cpp" line="480"/>
  1271. <source>%1 (%2)</source>
  1272. <extracomment>Language (Country)</extracomment>
  1273. <translation>%1 (%2)</translation>
  1274. </message>
  1275. </context>
  1276. <context>
  1277. <name>LocaleViewStep</name>
  1278. <message>
  1279. <location filename="../src/modules/locale/LocaleViewStep.cpp" line="52"/>
  1280. <source>Loading location data...</source>
  1281. <translation>Loading location data...</translation>
  1282. </message>
  1283. <message>
  1284. <location filename="../src/modules/locale/LocaleViewStep.cpp" line="169"/>
  1285. <source>Location</source>
  1286. <translation>Location</translation>
  1287. </message>
  1288. </context>
  1289. <context>
  1290. <name>NetInstallPage</name>
  1291. <message>
  1292. <location filename="../src/modules/netinstall/NetInstallPage.cpp" line="72"/>
  1293. <source>Name</source>
  1294. <translation>Name</translation>
  1295. </message>
  1296. <message>
  1297. <location filename="../src/modules/netinstall/NetInstallPage.cpp" line="73"/>
  1298. <source>Description</source>
  1299. <translation>Description</translation>
  1300. </message>
  1301. <message>
  1302. <location filename="../src/modules/netinstall/NetInstallPage.cpp" line="94"/>
  1303. <source>Network Installation. (Disabled: Unable to fetch package lists, check your network connection)</source>
  1304. <translation>Network Installation. (Disabled: Unable to fetch package lists, check your network connection)</translation>
  1305. </message>
  1306. <message>
  1307. <location filename="../src/modules/netinstall/NetInstallPage.cpp" line="104"/>
  1308. <source>Network Installation. (Disabled: Received invalid groups data)</source>
  1309. <translation>Network Installation. (Disabled: Received invalid groups data)</translation>
  1310. </message>
  1311. </context>
  1312. <context>
  1313. <name>NetInstallViewStep</name>
  1314. <message>
  1315. <location filename="../src/modules/netinstall/NetInstallViewStep.cpp" line="52"/>
  1316. <source>Package selection</source>
  1317. <translation>Package selection</translation>
  1318. </message>
  1319. </context>
  1320. <context>
  1321. <name>Page_Keyboard</name>
  1322. <message>
  1323. <location filename="../src/modules/keyboard/KeyboardPage.ui" line="14"/>
  1324. <source>Form</source>
  1325. <translation>Form</translation>
  1326. </message>
  1327. <message>
  1328. <location filename="../src/modules/keyboard/KeyboardPage.ui" line="70"/>
  1329. <source>Keyboard Model:</source>
  1330. <translation>Keyboard Model:</translation>
  1331. </message>
  1332. <message>
  1333. <location filename="../src/modules/keyboard/KeyboardPage.ui" line="131"/>
  1334. <source>Type here to test your keyboard</source>
  1335. <translation>Type here to test your keyboard</translation>
  1336. </message>
  1337. </context>
  1338. <context>
  1339. <name>Page_UserSetup</name>
  1340. <message>
  1341. <location filename="../src/modules/users/page_usersetup.ui" line="14"/>
  1342. <source>Form</source>
  1343. <translation>Form</translation>
  1344. </message>
  1345. <message>
  1346. <location filename="../src/modules/users/page_usersetup.ui" line="36"/>
  1347. <source>What is your name?</source>
  1348. <translation>What is your name?</translation>
  1349. </message>
  1350. <message>
  1351. <location filename="../src/modules/users/page_usersetup.ui" line="117"/>
  1352. <source>What name do you want to use to log in?</source>
  1353. <translation>What name do you want to use to log in?</translation>
  1354. </message>
  1355. <message>
  1356. <location filename="../src/modules/users/page_usersetup.ui" line="306"/>
  1357. <location filename="../src/modules/users/page_usersetup.ui" line="437"/>
  1358. <location filename="../src/modules/users/page_usersetup.ui" line="582"/>
  1359. <source>font-weight: normal</source>
  1360. <translation>font-weight: normal</translation>
  1361. </message>
  1362. <message>
  1363. <location filename="../src/modules/users/page_usersetup.ui" line="200"/>
  1364. <source>&lt;small&gt;If more than one person will use this computer, you can set up multiple accounts after installation.&lt;/small&gt;</source>
  1365. <translation>&lt;small&gt;If more than one person will use this computer, you can set up multiple accounts after installation.&lt;/small&gt;</translation>
  1366. </message>
  1367. <message>
  1368. <location filename="../src/modules/users/page_usersetup.ui" line="335"/>
  1369. <source>Choose a password to keep your account safe.</source>
  1370. <translation>Choose a password to keep your account safe.</translation>
  1371. </message>
  1372. <message>
  1373. <location filename="../src/modules/users/page_usersetup.ui" line="440"/>
  1374. <source>&lt;small&gt;Enter the same password twice, so that it can be checked for typing errors. A good password will contain a mixture of letters, numbers and punctuation, should be at least eight characters long, and should be changed at regular intervals.&lt;/small&gt;</source>
  1375. <translation>&lt;small&gt;Enter the same password twice, so that it can be checked for typing errors. A good password will contain a mixture of letters, numbers and punctuation, should be at least eight characters long, and should be changed at regular intervals.&lt;/small&gt;</translation>
  1376. </message>
  1377. <message>
  1378. <location filename="../src/modules/users/page_usersetup.ui" line="226"/>
  1379. <source>What is the name of this computer?</source>
  1380. <translation>What is the name of this computer?</translation>
  1381. </message>
  1382. <message>
  1383. <location filename="../src/modules/users/page_usersetup.ui" line="309"/>
  1384. <source>&lt;small&gt;This name will be used if you make the computer visible to others on a network.&lt;/small&gt;</source>
  1385. <translation>&lt;small&gt;This name will be used if you make the computer visible to others on a network.&lt;/small&gt;</translation>
  1386. </message>
  1387. <message>
  1388. <location filename="../src/modules/users/page_usersetup.ui" line="450"/>
  1389. <source>Log in automatically without asking for the password.</source>
  1390. <translation>Log in automatically without asking for the password.</translation>
  1391. </message>
  1392. <message>
  1393. <location filename="../src/modules/users/page_usersetup.ui" line="457"/>
  1394. <source>Use the same password for the administrator account.</source>
  1395. <translation>Use the same password for the administrator account.</translation>
  1396. </message>
  1397. <message>
  1398. <location filename="../src/modules/users/page_usersetup.ui" line="480"/>
  1399. <source>Choose a password for the administrator account.</source>
  1400. <translation>Choose a password for the administrator account.</translation>
  1401. </message>
  1402. <message>
  1403. <location filename="../src/modules/users/page_usersetup.ui" line="585"/>
  1404. <source>&lt;small&gt;Enter the same password twice, so that it can be checked for typing errors.&lt;/small&gt;</source>
  1405. <translation>&lt;small&gt;Enter the same password twice, so that it can be checked for typing errors.&lt;/small&gt;</translation>
  1406. </message>
  1407. </context>
  1408. <context>
  1409. <name>PartitionLabelsView</name>
  1410. <message>
  1411. <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="193"/>
  1412. <source>Root</source>
  1413. <translation>Root</translation>
  1414. </message>
  1415. <message>
  1416. <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="196"/>
  1417. <source>Home</source>
  1418. <translation>Home</translation>
  1419. </message>
  1420. <message>
  1421. <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="198"/>
  1422. <source>Boot</source>
  1423. <translation>Boot</translation>
  1424. </message>
  1425. <message>
  1426. <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="201"/>
  1427. <source>EFI system</source>
  1428. <translation>EFI system</translation>
  1429. </message>
  1430. <message>
  1431. <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="203"/>
  1432. <source>Swap</source>
  1433. <translation>Swap</translation>
  1434. </message>
  1435. <message>
  1436. <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="205"/>
  1437. <source>New partition for %1</source>
  1438. <translation>New partition for %1</translation>
  1439. </message>
  1440. <message>
  1441. <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="207"/>
  1442. <source>New partition</source>
  1443. <translation>New partition</translation>
  1444. </message>
  1445. <message>
  1446. <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="224"/>
  1447. <source>%1 %2</source>
  1448. <translation>%1 %2</translation>
  1449. </message>
  1450. </context>
  1451. <context>
  1452. <name>PartitionModel</name>
  1453. <message>
  1454. <location filename="../src/modules/partition/core/PartitionModel.cpp" line="137"/>
  1455. <location filename="../src/modules/partition/core/PartitionModel.cpp" line="169"/>
  1456. <source>Free Space</source>
  1457. <translation>Free Space</translation>
  1458. </message>
  1459. <message>
  1460. <location filename="../src/modules/partition/core/PartitionModel.cpp" line="141"/>
  1461. <location filename="../src/modules/partition/core/PartitionModel.cpp" line="173"/>
  1462. <source>New partition</source>
  1463. <translation>New partition</translation>
  1464. </message>
  1465. <message>
  1466. <location filename="../src/modules/partition/core/PartitionModel.cpp" line="257"/>
  1467. <source>Name</source>
  1468. <translation>Name</translation>
  1469. </message>
  1470. <message>
  1471. <location filename="../src/modules/partition/core/PartitionModel.cpp" line="259"/>
  1472. <source>File System</source>
  1473. <translation>File System</translation>
  1474. </message>
  1475. <message>
  1476. <location filename="../src/modules/partition/core/PartitionModel.cpp" line="261"/>
  1477. <source>Mount Point</source>
  1478. <translation>Mount Point</translation>
  1479. </message>
  1480. <message>
  1481. <location filename="../src/modules/partition/core/PartitionModel.cpp" line="263"/>
  1482. <source>Size</source>
  1483. <translation>Size</translation>
  1484. </message>
  1485. </context>
  1486. <context>
  1487. <name>PartitionPage</name>
  1488. <message>
  1489. <location filename="../src/modules/partition/gui/PartitionPage.ui" line="14"/>
  1490. <source>Form</source>
  1491. <translation>Form</translation>
  1492. </message>
  1493. <message>
  1494. <location filename="../src/modules/partition/gui/PartitionPage.ui" line="22"/>
  1495. <source>Storage de&amp;vice:</source>
  1496. <translation>Storage de&amp;vice:</translation>
  1497. </message>
  1498. <message>
  1499. <location filename="../src/modules/partition/gui/PartitionPage.ui" line="51"/>
  1500. <source>&amp;Revert All Changes</source>
  1501. <translation>&amp;Revert All Changes</translation>
  1502. </message>
  1503. <message>
  1504. <location filename="../src/modules/partition/gui/PartitionPage.ui" line="87"/>
  1505. <source>New Partition &amp;Table</source>
  1506. <translation>New Partition &amp;Table</translation>
  1507. </message>
  1508. <message>
  1509. <location filename="../src/modules/partition/gui/PartitionPage.ui" line="107"/>
  1510. <source>&amp;Create</source>
  1511. <translation>&amp;Create</translation>
  1512. </message>
  1513. <message>
  1514. <location filename="../src/modules/partition/gui/PartitionPage.ui" line="114"/>
  1515. <source>&amp;Edit</source>
  1516. <translation>&amp;Edit</translation>
  1517. </message>
  1518. <message>
  1519. <location filename="../src/modules/partition/gui/PartitionPage.ui" line="121"/>
  1520. <source>&amp;Delete</source>
  1521. <translation>&amp;Delete</translation>
  1522. </message>
  1523. <message>
  1524. <location filename="../src/modules/partition/gui/PartitionPage.ui" line="148"/>
  1525. <source>Install boot &amp;loader on:</source>
  1526. <translation>Install boot &amp;loader on:</translation>
  1527. </message>
  1528. <message>
  1529. <location filename="../src/modules/partition/gui/PartitionPage.cpp" line="161"/>
  1530. <source>Are you sure you want to create a new partition table on %1?</source>
  1531. <translation>Are you sure you want to create a new partition table on %1?</translation>
  1532. </message>
  1533. </context>
  1534. <context>
  1535. <name>PartitionViewStep</name>
  1536. <message>
  1537. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="70"/>
  1538. <source>Gathering system information...</source>
  1539. <translation>Gathering system information...</translation>
  1540. </message>
  1541. <message>
  1542. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="121"/>
  1543. <source>Partitions</source>
  1544. <translation>Partitions</translation>
  1545. </message>
  1546. <message>
  1547. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="158"/>
  1548. <source>Install %1 &lt;strong&gt;alongside&lt;/strong&gt; another operating system.</source>
  1549. <translation>Install %1 &lt;strong&gt;alongside&lt;/strong&gt; another operating system.</translation>
  1550. </message>
  1551. <message>
  1552. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="162"/>
  1553. <source>&lt;strong&gt;Erase&lt;/strong&gt; disk and install %1.</source>
  1554. <translation>&lt;strong&gt;Erase&lt;/strong&gt; disk and install %1.</translation>
  1555. </message>
  1556. <message>
  1557. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="166"/>
  1558. <source>&lt;strong&gt;Replace&lt;/strong&gt; a partition with %1.</source>
  1559. <translation>&lt;strong&gt;Replace&lt;/strong&gt; a partition with %1.</translation>
  1560. </message>
  1561. <message>
  1562. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="171"/>
  1563. <source>&lt;strong&gt;Manual&lt;/strong&gt; partitioning.</source>
  1564. <translation>&lt;strong&gt;Manual&lt;/strong&gt; partitioning.</translation>
  1565. </message>
  1566. <message>
  1567. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="184"/>
  1568. <source>Install %1 &lt;strong&gt;alongside&lt;/strong&gt; another operating system on disk &lt;strong&gt;%2&lt;/strong&gt; (%3).</source>
  1569. <translation>Install %1 &lt;strong&gt;alongside&lt;/strong&gt; another operating system on disk &lt;strong&gt;%2&lt;/strong&gt; (%3).</translation>
  1570. </message>
  1571. <message>
  1572. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="190"/>
  1573. <source>&lt;strong&gt;Erase&lt;/strong&gt; disk &lt;strong&gt;%2&lt;/strong&gt; (%3) and install %1.</source>
  1574. <translation>&lt;strong&gt;Erase&lt;/strong&gt; disk &lt;strong&gt;%2&lt;/strong&gt; (%3) and install %1.</translation>
  1575. </message>
  1576. <message>
  1577. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="196"/>
  1578. <source>&lt;strong&gt;Replace&lt;/strong&gt; a partition on disk &lt;strong&gt;%2&lt;/strong&gt; (%3) with %1.</source>
  1579. <translation>&lt;strong&gt;Replace&lt;/strong&gt; a partition on disk &lt;strong&gt;%2&lt;/strong&gt; (%3) with %1.</translation>
  1580. </message>
  1581. <message>
  1582. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="203"/>
  1583. <source>&lt;strong&gt;Manual&lt;/strong&gt; partitioning on disk &lt;strong&gt;%1&lt;/strong&gt; (%2).</source>
  1584. <translation>&lt;strong&gt;Manual&lt;/strong&gt; partitioning on disk &lt;strong&gt;%1&lt;/strong&gt; (%2).</translation>
  1585. </message>
  1586. <message>
  1587. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="211"/>
  1588. <source>Disk &lt;strong&gt;%1&lt;/strong&gt; (%2)</source>
  1589. <translation>Disk &lt;strong&gt;%1&lt;/strong&gt; (%2)</translation>
  1590. </message>
  1591. <message>
  1592. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="239"/>
  1593. <source>Current:</source>
  1594. <translation>Current:</translation>
  1595. </message>
  1596. <message>
  1597. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="256"/>
  1598. <source>After:</source>
  1599. <translation>After:</translation>
  1600. </message>
  1601. <message>
  1602. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="399"/>
  1603. <source>No EFI system partition configured</source>
  1604. <translation>No EFI system partition configured</translation>
  1605. </message>
  1606. <message>
  1607. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="400"/>
  1608. <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a FAT32 filesystem with the &lt;strong&gt;esp&lt;/strong&gt; flag enabled and mount point &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;You can continue without setting up an EFI system partition but your system may fail to start.</source>
  1609. <translation>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;To configure an EFI system partition, go back and select or create a FAT32 filesystem with the &lt;strong&gt;esp&lt;/strong&gt; flag enabled and mount point &lt;strong&gt;%2&lt;/strong&gt;.&lt;br/&gt;&lt;br/&gt;You can continue without setting up an EFI system partition but your system may fail to start.</translation>
  1610. </message>
  1611. <message>
  1612. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="413"/>
  1613. <source>EFI system partition flag not set</source>
  1614. <translation>EFI system partition flag not set</translation>
  1615. </message>
  1616. <message>
  1617. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="414"/>
  1618. <source>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;A partition was configured with mount point &lt;strong&gt;%2&lt;/strong&gt; but its &lt;strong&gt;esp&lt;/strong&gt; flag is not set.&lt;br/&gt;To set the flag, go back and edit the partition.&lt;br/&gt;&lt;br/&gt;You can continue without setting the flag but your system may fail to start.</source>
  1619. <translation>An EFI system partition is necessary to start %1.&lt;br/&gt;&lt;br/&gt;A partition was configured with mount point &lt;strong&gt;%2&lt;/strong&gt; but its &lt;strong&gt;esp&lt;/strong&gt; flag is not set.&lt;br/&gt;To set the flag, go back and edit the partition.&lt;br/&gt;&lt;br/&gt;You can continue without setting the flag but your system may fail to start.</translation>
  1620. </message>
  1621. <message>
  1622. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="448"/>
  1623. <source>Boot partition not encrypted</source>
  1624. <translation>Boot partition not encrypted</translation>
  1625. </message>
  1626. <message>
  1627. <location filename="../src/modules/partition/gui/PartitionViewStep.cpp" line="449"/>
  1628. <source>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</source>
  1629. <translation>A separate boot partition was set up together with an encrypted root partition, but the boot partition is not encrypted.&lt;br/&gt;&lt;br/&gt;There are security concerns with this kind of setup, because important system files are kept on an unencrypted partition.&lt;br/&gt;You may continue if you wish, but filesystem unlocking will happen later during system startup.&lt;br/&gt;To encrypt the boot partition, go back and recreate it, selecting &lt;strong&gt;Encrypt&lt;/strong&gt; in the partition creation window.</translation>
  1630. </message>
  1631. </context>
  1632. <context>
  1633. <name>QObject</name>
  1634. <message>
  1635. <location filename="../src/modules/keyboard/keyboardwidget/keyboardglobal.cpp" line="82"/>
  1636. <source>Default Keyboard Model</source>
  1637. <translation>Default Keyboard Model</translation>
  1638. </message>
  1639. <message>
  1640. <location filename="../src/modules/keyboard/keyboardwidget/keyboardglobal.cpp" line="127"/>
  1641. <location filename="../src/modules/keyboard/keyboardwidget/keyboardglobal.cpp" line="163"/>
  1642. <source>Default</source>
  1643. <translation>Default</translation>
  1644. </message>
  1645. <message>
  1646. <location filename="../src/modules/partition/core/KPMHelpers.cpp" line="210"/>
  1647. <source>unknown</source>
  1648. <translation>unknown</translation>
  1649. </message>
  1650. <message>
  1651. <location filename="../src/modules/partition/core/KPMHelpers.cpp" line="212"/>
  1652. <source>extended</source>
  1653. <translation>extended</translation>
  1654. </message>
  1655. <message>
  1656. <location filename="../src/modules/partition/core/KPMHelpers.cpp" line="214"/>
  1657. <source>unformatted</source>
  1658. <translation>unformatted</translation>
  1659. </message>
  1660. <message>
  1661. <location filename="../src/modules/partition/core/KPMHelpers.cpp" line="216"/>
  1662. <source>swap</source>
  1663. <translation>swap</translation>
  1664. </message>
  1665. <message>
  1666. <location filename="../src/modules/partition/gui/PartitionLabelsView.cpp" line="49"/>
  1667. <source>Unpartitioned space or unknown partition table</source>
  1668. <translation>Unpartitioned space or unknown partition table</translation>
  1669. </message>
  1670. </context>
  1671. <context>
  1672. <name>ReplaceWidget</name>
  1673. <message>
  1674. <location filename="../src/modules/partition/gui/ReplaceWidget.ui" line="14"/>
  1675. <source>Form</source>
  1676. <translation>Form</translation>
  1677. </message>
  1678. <message>
  1679. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="134"/>
  1680. <source>Select where to install %1.&lt;br/&gt;&lt;font color=&quot;red&quot;&gt;Warning: &lt;/font&gt;this will delete all files on the selected partition.</source>
  1681. <translation>Select where to install %1.&lt;br/&gt;&lt;font color=&quot;red&quot;&gt;Warning: &lt;/font&gt;this will delete all files on the selected partition.</translation>
  1682. </message>
  1683. <message>
  1684. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="160"/>
  1685. <source>The selected item does not appear to be a valid partition.</source>
  1686. <translation>The selected item does not appear to be a valid partition.</translation>
  1687. </message>
  1688. <message>
  1689. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="168"/>
  1690. <source>%1 cannot be installed on empty space. Please select an existing partition.</source>
  1691. <translation>%1 cannot be installed on empty space. Please select an existing partition.</translation>
  1692. </message>
  1693. <message>
  1694. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="178"/>
  1695. <source>%1 cannot be installed on an extended partition. Please select an existing primary or logical partition.</source>
  1696. <translation>%1 cannot be installed on an extended partition. Please select an existing primary or logical partition.</translation>
  1697. </message>
  1698. <message>
  1699. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="188"/>
  1700. <source>%1 cannot be installed on this partition.</source>
  1701. <translation>%1 cannot be installed on this partition.</translation>
  1702. </message>
  1703. <message>
  1704. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="194"/>
  1705. <source>Data partition (%1)</source>
  1706. <translation>Data partition (%1)</translation>
  1707. </message>
  1708. <message>
  1709. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="211"/>
  1710. <source>Unknown system partition (%1)</source>
  1711. <translation>Unknown system partition (%1)</translation>
  1712. </message>
  1713. <message>
  1714. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="216"/>
  1715. <source>%1 system partition (%2)</source>
  1716. <translation>%1 system partition (%2)</translation>
  1717. </message>
  1718. <message>
  1719. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="227"/>
  1720. <source>&lt;strong&gt;%4&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB.</source>
  1721. <translation>&lt;strong&gt;%4&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;The partition %1 is too small for %2. Please select a partition with capacity at least %3 GiB.</translation>
  1722. </message>
  1723. <message>
  1724. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="250"/>
  1725. <source>&lt;strong&gt;%2&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</source>
  1726. <translation>&lt;strong&gt;%2&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;An EFI system partition cannot be found anywhere on this system. Please go back and use manual partitioning to set up %1.</translation>
  1727. </message>
  1728. <message>
  1729. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="261"/>
  1730. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="278"/>
  1731. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="302"/>
  1732. <source>&lt;strong&gt;%3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;%1 will be installed on %2.&lt;br/&gt;&lt;font color=&quot;red&quot;&gt;Warning: &lt;/font&gt;all data on partition %2 will be lost.</source>
  1733. <translation>&lt;strong&gt;%3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;%1 will be installed on %2.&lt;br/&gt;&lt;font color=&quot;red&quot;&gt;Warning: &lt;/font&gt;all data on partition %2 will be lost.</translation>
  1734. </message>
  1735. <message>
  1736. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="270"/>
  1737. <source>The EFI system partition at %1 will be used for starting %2.</source>
  1738. <translation>The EFI system partition at %1 will be used for starting %2.</translation>
  1739. </message>
  1740. <message>
  1741. <location filename="../src/modules/partition/gui/ReplaceWidget.cpp" line="286"/>
  1742. <source>EFI system partition:</source>
  1743. <translation>EFI system partition:</translation>
  1744. </message>
  1745. </context>
  1746. <context>
  1747. <name>RequirementsChecker</name>
  1748. <message>
  1749. <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="68"/>
  1750. <source>Gathering system information...</source>
  1751. <translation>Gathering system information...</translation>
  1752. </message>
  1753. <message>
  1754. <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="116"/>
  1755. <source>has at least %1 GB available drive space</source>
  1756. <translation>has at least %1 GB available drive space</translation>
  1757. </message>
  1758. <message>
  1759. <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="118"/>
  1760. <source>There is not enough drive space. At least %1 GB is required.</source>
  1761. <translation>There is not enough drive space. At least %1 GB is required.</translation>
  1762. </message>
  1763. <message>
  1764. <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="126"/>
  1765. <source>has at least %1 GB working memory</source>
  1766. <translation>has at least %1 GB working memory</translation>
  1767. </message>
  1768. <message>
  1769. <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="128"/>
  1770. <source>The system does not have enough working memory. At least %1 GB is required.</source>
  1771. <translation>The system does not have enough working memory. At least %1 GB is required.</translation>
  1772. </message>
  1773. <message>
  1774. <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="136"/>
  1775. <source>is plugged in to a power source</source>
  1776. <translation>is plugged in to a power source</translation>
  1777. </message>
  1778. <message>
  1779. <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="137"/>
  1780. <source>The system is not plugged in to a power source.</source>
  1781. <translation>The system is not plugged in to a power source.</translation>
  1782. </message>
  1783. <message>
  1784. <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="144"/>
  1785. <source>is connected to the Internet</source>
  1786. <translation>is connected to the Internet</translation>
  1787. </message>
  1788. <message>
  1789. <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="145"/>
  1790. <source>The system is not connected to the Internet.</source>
  1791. <translation>The system is not connected to the Internet.</translation>
  1792. </message>
  1793. <message>
  1794. <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="153"/>
  1795. <source>The installer is not running with administrator rights.</source>
  1796. <translation>The installer is not running with administrator rights.</translation>
  1797. </message>
  1798. <message>
  1799. <location filename="../src/modules/welcome/checker/RequirementsChecker.cpp" line="161"/>
  1800. <source>The screen is too small to display the installer.</source>
  1801. <translation>The screen is too small to display the installer.</translation>
  1802. </message>
  1803. </context>
  1804. <context>
  1805. <name>ResizePartitionJob</name>
  1806. <message>
  1807. <location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="44"/>
  1808. <source>Resize partition %1.</source>
  1809. <translation>Resize partition %1.</translation>
  1810. </message>
  1811. <message>
  1812. <location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="51"/>
  1813. <source>Resize &lt;strong&gt;%2MB&lt;/strong&gt; partition &lt;strong&gt;%1&lt;/strong&gt; to &lt;strong&gt;%3MB&lt;/strong&gt;.</source>
  1814. <translation>Resize &lt;strong&gt;%2MB&lt;/strong&gt; partition &lt;strong&gt;%1&lt;/strong&gt; to &lt;strong&gt;%3MB&lt;/strong&gt;.</translation>
  1815. </message>
  1816. <message>
  1817. <location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="62"/>
  1818. <source>Resizing %2MB partition %1 to %3MB.</source>
  1819. <translation>Resizing %2MB partition %1 to %3MB.</translation>
  1820. </message>
  1821. <message>
  1822. <location filename="../src/modules/partition/jobs/ResizePartitionJob.cpp" line="81"/>
  1823. <source>The installer failed to resize partition %1 on disk &apos;%2&apos;.</source>
  1824. <translation>The installer failed to resize partition %1 on disk &apos;%2&apos;.</translation>
  1825. </message>
  1826. </context>
  1827. <context>
  1828. <name>ScanningDialog</name>
  1829. <message>
  1830. <location filename="../src/modules/partition/gui/ScanningDialog.cpp" line="84"/>
  1831. <source>Scanning storage devices...</source>
  1832. <translation>Scanning storage devices...</translation>
  1833. </message>
  1834. <message>
  1835. <location filename="../src/modules/partition/gui/ScanningDialog.cpp" line="85"/>
  1836. <source>Partitioning</source>
  1837. <translation>Partitioning</translation>
  1838. </message>
  1839. </context>
  1840. <context>
  1841. <name>SetHostNameJob</name>
  1842. <message>
  1843. <location filename="../src/modules/users/SetHostNameJob.cpp" line="37"/>
  1844. <source>Set hostname %1</source>
  1845. <translation>Set hostname %1</translation>
  1846. </message>
  1847. <message>
  1848. <location filename="../src/modules/users/SetHostNameJob.cpp" line="44"/>
  1849. <source>Set hostname &lt;strong&gt;%1&lt;/strong&gt;.</source>
  1850. <translation>Set hostname &lt;strong&gt;%1&lt;/strong&gt;.</translation>
  1851. </message>
  1852. <message>
  1853. <location filename="../src/modules/users/SetHostNameJob.cpp" line="51"/>
  1854. <source>Setting hostname %1.</source>
  1855. <translation>Setting hostname %1.</translation>
  1856. </message>
  1857. <message>
  1858. <location filename="../src/modules/users/SetHostNameJob.cpp" line="61"/>
  1859. <location filename="../src/modules/users/SetHostNameJob.cpp" line="68"/>
  1860. <source>Internal Error</source>
  1861. <translation>Internal Error</translation>
  1862. </message>
  1863. <message>
  1864. <location filename="../src/modules/users/SetHostNameJob.cpp" line="75"/>
  1865. <location filename="../src/modules/users/SetHostNameJob.cpp" line="86"/>
  1866. <source>Cannot write hostname to target system</source>
  1867. <translation>Cannot write hostname to target system</translation>
  1868. </message>
  1869. </context>
  1870. <context>
  1871. <name>SetKeyboardLayoutJob</name>
  1872. <message>
  1873. <location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="59"/>
  1874. <source>Set keyboard model to %1, layout to %2-%3</source>
  1875. <translation>Set keyboard model to %1, layout to %2-%3</translation>
  1876. </message>
  1877. <message>
  1878. <location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="320"/>
  1879. <source>Failed to write keyboard configuration for the virtual console.</source>
  1880. <translation>Failed to write keyboard configuration for the virtual console.</translation>
  1881. </message>
  1882. <message>
  1883. <location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="321"/>
  1884. <location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="325"/>
  1885. <location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="331"/>
  1886. <source>Failed to write to %1</source>
  1887. <translation>Failed to write to %1</translation>
  1888. </message>
  1889. <message>
  1890. <location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="324"/>
  1891. <source>Failed to write keyboard configuration for X11.</source>
  1892. <translation>Failed to write keyboard configuration for X11.</translation>
  1893. </message>
  1894. <message>
  1895. <location filename="../src/modules/keyboard/SetKeyboardLayoutJob.cpp" line="330"/>
  1896. <source>Failed to write keyboard configuration to existing /etc/default directory.</source>
  1897. <translation>Failed to write keyboard configuration to existing /etc/default directory.</translation>
  1898. </message>
  1899. </context>
  1900. <context>
  1901. <name>SetPartFlagsJob</name>
  1902. <message>
  1903. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="48"/>
  1904. <source>Set flags on partition %1.</source>
  1905. <translation>Set flags on partition %1.</translation>
  1906. </message>
  1907. <message>
  1908. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="51"/>
  1909. <source>Set flags on %1MB %2 partition.</source>
  1910. <translation>Set flags on %1MB %2 partition.</translation>
  1911. </message>
  1912. <message>
  1913. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="55"/>
  1914. <source>Set flags on new partition.</source>
  1915. <translation>Set flags on new partition.</translation>
  1916. </message>
  1917. <message>
  1918. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="66"/>
  1919. <source>Clear flags on partition &lt;strong&gt;%1&lt;/strong&gt;.</source>
  1920. <translation>Clear flags on partition &lt;strong&gt;%1&lt;/strong&gt;.</translation>
  1921. </message>
  1922. <message>
  1923. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="70"/>
  1924. <source>Clear flags on %1MB &lt;strong&gt;%2&lt;/strong&gt; partition.</source>
  1925. <translation>Clear flags on %1MB &lt;strong&gt;%2&lt;/strong&gt; partition.</translation>
  1926. </message>
  1927. <message>
  1928. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="74"/>
  1929. <source>Clear flags on new partition.</source>
  1930. <translation>Clear flags on new partition.</translation>
  1931. </message>
  1932. <message>
  1933. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="78"/>
  1934. <source>Flag partition &lt;strong&gt;%1&lt;/strong&gt; as &lt;strong&gt;%2&lt;/strong&gt;.</source>
  1935. <translation>Flag partition &lt;strong&gt;%1&lt;/strong&gt; as &lt;strong&gt;%2&lt;/strong&gt;.</translation>
  1936. </message>
  1937. <message>
  1938. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="84"/>
  1939. <source>Flag %1MB &lt;strong&gt;%2&lt;/strong&gt; partition as &lt;strong&gt;%3&lt;/strong&gt;.</source>
  1940. <translation>Flag %1MB &lt;strong&gt;%2&lt;/strong&gt; partition as &lt;strong&gt;%3&lt;/strong&gt;.</translation>
  1941. </message>
  1942. <message>
  1943. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="90"/>
  1944. <source>Flag new partition as &lt;strong&gt;%1&lt;/strong&gt;.</source>
  1945. <translation>Flag new partition as &lt;strong&gt;%1&lt;/strong&gt;.</translation>
  1946. </message>
  1947. <message>
  1948. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="102"/>
  1949. <source>Clearing flags on partition &lt;strong&gt;%1&lt;/strong&gt;.</source>
  1950. <translation>Clearing flags on partition &lt;strong&gt;%1&lt;/strong&gt;.</translation>
  1951. </message>
  1952. <message>
  1953. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="106"/>
  1954. <source>Clearing flags on %1MB &lt;strong&gt;%2&lt;/strong&gt; partition.</source>
  1955. <translation>Clearing flags on %1MB &lt;strong&gt;%2&lt;/strong&gt; partition.</translation>
  1956. </message>
  1957. <message>
  1958. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="110"/>
  1959. <source>Clearing flags on new partition.</source>
  1960. <translation>Clearing flags on new partition.</translation>
  1961. </message>
  1962. <message>
  1963. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="114"/>
  1964. <source>Setting flags &lt;strong&gt;%2&lt;/strong&gt; on partition &lt;strong&gt;%1&lt;/strong&gt;.</source>
  1965. <translation>Setting flags &lt;strong&gt;%2&lt;/strong&gt; on partition &lt;strong&gt;%1&lt;/strong&gt;.</translation>
  1966. </message>
  1967. <message>
  1968. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="120"/>
  1969. <source>Setting flags &lt;strong&gt;%3&lt;/strong&gt; on %1MB &lt;strong&gt;%2&lt;/strong&gt; partition.</source>
  1970. <translation>Setting flags &lt;strong&gt;%3&lt;/strong&gt; on %1MB &lt;strong&gt;%2&lt;/strong&gt; partition.</translation>
  1971. </message>
  1972. <message>
  1973. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="126"/>
  1974. <source>Setting flags &lt;strong&gt;%1&lt;/strong&gt; on new partition.</source>
  1975. <translation>Setting flags &lt;strong&gt;%1&lt;/strong&gt; on new partition.</translation>
  1976. </message>
  1977. <message>
  1978. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="140"/>
  1979. <source>The installer failed to set flags on partition %1.</source>
  1980. <translation>The installer failed to set flags on partition %1.</translation>
  1981. </message>
  1982. <message>
  1983. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="148"/>
  1984. <source>Could not open device &apos;%1&apos;.</source>
  1985. <translation>Could not open device &apos;%1&apos;.</translation>
  1986. </message>
  1987. <message>
  1988. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="157"/>
  1989. <source>Could not open partition table on device &apos;%1&apos;.</source>
  1990. <translation>Could not open partition table on device &apos;%1&apos;.</translation>
  1991. </message>
  1992. <message>
  1993. <location filename="../src/modules/partition/jobs/SetPartitionFlagsJob.cpp" line="169"/>
  1994. <source>Could not find partition &apos;%1&apos;.</source>
  1995. <translation>Could not find partition &apos;%1&apos;.</translation>
  1996. </message>
  1997. </context>
  1998. <context>
  1999. <name>SetPasswordJob</name>
  2000. <message>
  2001. <location filename="../src/modules/users/SetPasswordJob.cpp" line="48"/>
  2002. <source>Set password for user %1</source>
  2003. <translation>Set password for user %1</translation>
  2004. </message>
  2005. <message>
  2006. <location filename="../src/modules/users/SetPasswordJob.cpp" line="55"/>
  2007. <source>Setting password for user %1.</source>
  2008. <translation>Setting password for user %1.</translation>
  2009. </message>
  2010. <message>
  2011. <location filename="../src/modules/users/SetPasswordJob.cpp" line="112"/>
  2012. <source>Bad destination system path.</source>
  2013. <translation>Bad destination system path.</translation>
  2014. </message>
  2015. <message>
  2016. <location filename="../src/modules/users/SetPasswordJob.cpp" line="113"/>
  2017. <source>rootMountPoint is %1</source>
  2018. <translation>rootMountPoint is %1</translation>
  2019. </message>
  2020. <message>
  2021. <location filename="../src/modules/users/SetPasswordJob.cpp" line="123"/>
  2022. <source>Cannot disable root account.</source>
  2023. <translation>Cannot disable root account.</translation>
  2024. </message>
  2025. <message>
  2026. <location filename="../src/modules/users/SetPasswordJob.cpp" line="124"/>
  2027. <source>passwd terminated with error code %1.</source>
  2028. <translation>passwd terminated with error code %1.</translation>
  2029. </message>
  2030. <message>
  2031. <location filename="../src/modules/users/SetPasswordJob.cpp" line="139"/>
  2032. <source>Cannot set password for user %1.</source>
  2033. <translation>Cannot set password for user %1.</translation>
  2034. </message>
  2035. <message>
  2036. <location filename="../src/modules/users/SetPasswordJob.cpp" line="141"/>
  2037. <source>usermod terminated with error code %1.</source>
  2038. <translation>usermod terminated with error code %1.</translation>
  2039. </message>
  2040. </context>
  2041. <context>
  2042. <name>SetTimezoneJob</name>
  2043. <message>
  2044. <location filename="../src/modules/locale/SetTimezoneJob.cpp" line="43"/>
  2045. <source>Set timezone to %1/%2</source>
  2046. <translation>Set timezone to %1/%2</translation>
  2047. </message>
  2048. <message>
  2049. <location filename="../src/modules/locale/SetTimezoneJob.cpp" line="71"/>
  2050. <source>Cannot access selected timezone path.</source>
  2051. <translation>Cannot access selected timezone path.</translation>
  2052. </message>
  2053. <message>
  2054. <location filename="../src/modules/locale/SetTimezoneJob.cpp" line="72"/>
  2055. <source>Bad path: %1</source>
  2056. <translation>Bad path: %1</translation>
  2057. </message>
  2058. <message>
  2059. <location filename="../src/modules/locale/SetTimezoneJob.cpp" line="86"/>
  2060. <source>Cannot set timezone.</source>
  2061. <translation>Cannot set timezone.</translation>
  2062. </message>
  2063. <message>
  2064. <location filename="../src/modules/locale/SetTimezoneJob.cpp" line="87"/>
  2065. <source>Link creation failed, target: %1; link name: %2</source>
  2066. <translation>Link creation failed, target: %1; link name: %2</translation>
  2067. </message>
  2068. <message>
  2069. <location filename="../src/modules/locale/SetTimezoneJob.cpp" line="96"/>
  2070. <source>Cannot set timezone,</source>
  2071. <translation>Cannot set timezone,</translation>
  2072. </message>
  2073. <message>
  2074. <location filename="../src/modules/locale/SetTimezoneJob.cpp" line="97"/>
  2075. <source>Cannot open /etc/timezone for writing</source>
  2076. <translation>Cannot open /etc/timezone for writing</translation>
  2077. </message>
  2078. </context>
  2079. <context>
  2080. <name>SummaryPage</name>
  2081. <message>
  2082. <location filename="../src/modules/summary/SummaryPage.cpp" line="49"/>
  2083. <source>This is an overview of what will happen once you start the install procedure.</source>
  2084. <translation>This is an overview of what will happen once you start the install procedure.</translation>
  2085. </message>
  2086. </context>
  2087. <context>
  2088. <name>SummaryViewStep</name>
  2089. <message>
  2090. <location filename="../src/modules/summary/SummaryViewStep.cpp" line="43"/>
  2091. <source>Summary</source>
  2092. <translation>Summary</translation>
  2093. </message>
  2094. </context>
  2095. <context>
  2096. <name>TrackingInstallJob</name>
  2097. <message>
  2098. <location filename="../src/modules/tracking/TrackingJobs.cpp" line="43"/>
  2099. <source>Installation feedback</source>
  2100. <translation type="unfinished"></translation>
  2101. </message>
  2102. <message>
  2103. <location filename="../src/modules/tracking/TrackingJobs.cpp" line="53"/>
  2104. <source>Sending installation feedback.</source>
  2105. <translation type="unfinished"></translation>
  2106. </message>
  2107. <message>
  2108. <location filename="../src/modules/tracking/TrackingJobs.cpp" line="88"/>
  2109. <source>Internal error in install-tracking.</source>
  2110. <translation type="unfinished"></translation>
  2111. </message>
  2112. <message>
  2113. <location filename="../src/modules/tracking/TrackingJobs.cpp" line="89"/>
  2114. <source>HTTP request timed out.</source>
  2115. <translation type="unfinished"></translation>
  2116. </message>
  2117. </context>
  2118. <context>
  2119. <name>TrackingMachineNeonJob</name>
  2120. <message>
  2121. <location filename="../src/modules/tracking/TrackingJobs.cpp" line="104"/>
  2122. <source>Machine feedback</source>
  2123. <translation type="unfinished"></translation>
  2124. </message>
  2125. <message>
  2126. <location filename="../src/modules/tracking/TrackingJobs.cpp" line="114"/>
  2127. <source>Configuring machine feedback.</source>
  2128. <translation type="unfinished"></translation>
  2129. </message>
  2130. <message>
  2131. <location filename="../src/modules/tracking/TrackingJobs.cpp" line="133"/>
  2132. <location filename="../src/modules/tracking/TrackingJobs.cpp" line="136"/>
  2133. <source>Error in machine feedback configuration.</source>
  2134. <translation type="unfinished"></translation>
  2135. </message>
  2136. <message>
  2137. <location filename="../src/modules/tracking/TrackingJobs.cpp" line="134"/>
  2138. <source>Could not configure machine feedback correctly, script error %1.</source>
  2139. <translation type="unfinished"></translation>
  2140. </message>
  2141. <message>
  2142. <location filename="../src/modules/tracking/TrackingJobs.cpp" line="137"/>
  2143. <source>Could not configure machine feedback correctly, Calamares error %1.</source>
  2144. <translation type="unfinished"></translation>
  2145. </message>
  2146. </context>
  2147. <context>
  2148. <name>TrackingPage</name>
  2149. <message>
  2150. <location filename="../src/modules/tracking/page_trackingstep.ui" line="14"/>
  2151. <source>Form</source>
  2152. <translation type="unfinished">Form</translation>
  2153. </message>
  2154. <message>
  2155. <location filename="../src/modules/tracking/page_trackingstep.ui" line="24"/>
  2156. <source>Placeholder</source>
  2157. <translation type="unfinished"></translation>
  2158. </message>
  2159. <message>
  2160. <location filename="../src/modules/tracking/page_trackingstep.ui" line="72"/>
  2161. <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;By selecting this, you will send &lt;span style=&quot; font-weight:600;&quot;&gt;no information at all&lt;/span&gt; about your installation.&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
  2162. <translation type="unfinished"></translation>
  2163. </message>
  2164. <message>
  2165. <location filename="../src/modules/tracking/page_trackingstep.ui" line="123"/>
  2166. <location filename="../src/modules/tracking/page_trackingstep.ui" line="185"/>
  2167. <location filename="../src/modules/tracking/page_trackingstep.ui" line="247"/>
  2168. <source>TextLabel</source>
  2169. <translation type="unfinished"></translation>
  2170. </message>
  2171. <message>
  2172. <location filename="../src/modules/tracking/page_trackingstep.ui" line="133"/>
  2173. <location filename="../src/modules/tracking/page_trackingstep.ui" line="195"/>
  2174. <location filename="../src/modules/tracking/page_trackingstep.ui" line="257"/>
  2175. <source>...</source>
  2176. <translation type="unfinished"></translation>
  2177. </message>
  2178. <message>
  2179. <location filename="../src/modules/tracking/page_trackingstep.ui" line="271"/>
  2180. <source>&lt;html&gt;&lt;head/&gt;&lt;body&gt;&lt;p&gt;&lt;a href=&quot;placeholder&quot;&gt;&lt;span style=&quot; text-decoration: underline; color:#2980b9;&quot;&gt;Click here for more information about user feedback&lt;/span&gt;&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;&lt;/html&gt;</source>
  2181. <translation type="unfinished"></translation>
  2182. </message>
  2183. <message>
  2184. <location filename="../src/modules/tracking/TrackingPage.cpp" line="44"/>
  2185. <source>Install tracking helps %1 to see how many users they have, what hardware they install %1 to and (with the last two options below), get continuous information about preferred applications. To see what will be sent, please click the help icon next to each area.</source>
  2186. <translation type="unfinished"></translation>
  2187. </message>
  2188. <message>
  2189. <location filename="../src/modules/tracking/TrackingPage.cpp" line="45"/>
  2190. <source>By selecting this you will send information about your installation and hardware. This information will &lt;b&gt;only be sent once&lt;/b&gt; after the installation finishes.</source>
  2191. <translation type="unfinished"></translation>
  2192. </message>
  2193. <message>
  2194. <location filename="../src/modules/tracking/TrackingPage.cpp" line="46"/>
  2195. <source>By selecting this you will &lt;b&gt;periodically&lt;/b&gt; send information about your installation, hardware and applications, to %1.</source>
  2196. <translation type="unfinished"></translation>
  2197. </message>
  2198. <message>
  2199. <location filename="../src/modules/tracking/TrackingPage.cpp" line="47"/>
  2200. <source>By selecting this you will &lt;b&gt;regularly&lt;/b&gt; send information about your installation, hardware, applications and usage patterns, to %1.</source>
  2201. <translation type="unfinished"></translation>
  2202. </message>
  2203. </context>
  2204. <context>
  2205. <name>TrackingViewStep</name>
  2206. <message>
  2207. <location filename="../src/modules/tracking/TrackingViewStep.cpp" line="59"/>
  2208. <source>Feedback</source>
  2209. <translation type="unfinished"></translation>
  2210. </message>
  2211. </context>
  2212. <context>
  2213. <name>UsersPage</name>
  2214. <message>
  2215. <location filename="../src/modules/users/UsersPage.cpp" line="287"/>
  2216. <source>Your username is too long.</source>
  2217. <translation>Your username is too long.</translation>
  2218. </message>
  2219. <message>
  2220. <location filename="../src/modules/users/UsersPage.cpp" line="293"/>
  2221. <source>Your username contains invalid characters. Only lowercase letters and numbers are allowed.</source>
  2222. <translation>Your username contains invalid characters. Only lowercase letters and numbers are allowed.</translation>
  2223. </message>
  2224. <message>
  2225. <location filename="../src/modules/users/UsersPage.cpp" line="331"/>
  2226. <source>Your hostname is too short.</source>
  2227. <translation>Your hostname is too short.</translation>
  2228. </message>
  2229. <message>
  2230. <location filename="../src/modules/users/UsersPage.cpp" line="337"/>
  2231. <source>Your hostname is too long.</source>
  2232. <translation>Your hostname is too long.</translation>
  2233. </message>
  2234. <message>
  2235. <location filename="../src/modules/users/UsersPage.cpp" line="343"/>
  2236. <source>Your hostname contains invalid characters. Only letters, numbers and dashes are allowed.</source>
  2237. <translation>Your hostname contains invalid characters. Only letters, numbers and dashes are allowed.</translation>
  2238. </message>
  2239. <message>
  2240. <location filename="../src/modules/users/UsersPage.cpp" line="371"/>
  2241. <location filename="../src/modules/users/UsersPage.cpp" line="415"/>
  2242. <source>Your passwords do not match!</source>
  2243. <translation>Your passwords do not match!</translation>
  2244. </message>
  2245. <message>
  2246. <location filename="../src/modules/users/UsersPage.cpp" line="494"/>
  2247. <source>Password is too short</source>
  2248. <translation>Password is too short</translation>
  2249. </message>
  2250. <message>
  2251. <location filename="../src/modules/users/UsersPage.cpp" line="513"/>
  2252. <source>Password is too long</source>
  2253. <translation>Password is too long</translation>
  2254. </message>
  2255. </context>
  2256. <context>
  2257. <name>UsersViewStep</name>
  2258. <message>
  2259. <location filename="../src/modules/users/UsersViewStep.cpp" line="51"/>
  2260. <source>Users</source>
  2261. <translation>Users</translation>
  2262. </message>
  2263. </context>
  2264. <context>
  2265. <name>WelcomePage</name>
  2266. <message>
  2267. <location filename="../src/modules/welcome/WelcomePage.ui" line="14"/>
  2268. <source>Form</source>
  2269. <translation>Form</translation>
  2270. </message>
  2271. <message>
  2272. <location filename="../src/modules/welcome/WelcomePage.ui" line="75"/>
  2273. <source>&amp;Language:</source>
  2274. <translation>&amp;Language:</translation>
  2275. </message>
  2276. <message>
  2277. <location filename="../src/modules/welcome/WelcomePage.ui" line="176"/>
  2278. <source>&amp;Release notes</source>
  2279. <translation>&amp;Release notes</translation>
  2280. </message>
  2281. <message>
  2282. <location filename="../src/modules/welcome/WelcomePage.ui" line="166"/>
  2283. <source>&amp;Known issues</source>
  2284. <translation>&amp;Known issues</translation>
  2285. </message>
  2286. <message>
  2287. <location filename="../src/modules/welcome/WelcomePage.ui" line="156"/>
  2288. <source>&amp;Support</source>
  2289. <translation>&amp;Support</translation>
  2290. </message>
  2291. <message>
  2292. <location filename="../src/modules/welcome/WelcomePage.ui" line="146"/>
  2293. <source>&amp;About</source>
  2294. <translation>&amp;About</translation>
  2295. </message>
  2296. <message>
  2297. <location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
  2298. <source>&lt;h1&gt;Welcome to the %1 installer.&lt;/h1&gt;</source>
  2299. <translation>&lt;h1&gt;Welcome to the %1 installer&lt;/h1&gt;</translation>
  2300. </message>
  2301. <message>
  2302. <location filename="../src/modules/welcome/WelcomePage.cpp" line="60"/>
  2303. <source>&lt;h1&gt;Welcome to the Calamares installer for %1.&lt;/h1&gt;</source>
  2304. <translation>&lt;h1&gt;Welcome to the Calamares installer for %1.&lt;/h1&gt;</translation>
  2305. </message>
  2306. <message>
  2307. <location filename="../src/modules/welcome/WelcomePage.cpp" line="73"/>
  2308. <source>About %1 installer</source>
  2309. <translation>About %1 installer</translation>
  2310. </message>
  2311. <message>
  2312. <location filename="../src/modules/welcome/WelcomePage.cpp" line="75"/>
  2313. <source>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</source>
  2314. <translation>&lt;h1&gt;%1&lt;/h1&gt;&lt;br/&gt;&lt;strong&gt;%2&lt;br/&gt;for %3&lt;/strong&gt;&lt;br/&gt;&lt;br/&gt;Copyright 2014-2017 Teo Mrnjavac &amp;lt;teo@kde.org&amp;gt;&lt;br/&gt;Copyright 2017 Adriaan de Groot &amp;lt;groot@kde.org&amp;gt;&lt;br/&gt;Thanks to: Anke Boersma, Aurélien Gâteau, Kevin Kofler, Lisa Vitolo, Philip Müller, Pier Luigi Fiorini, Rohan Garg and the &lt;a href=&quot;https://www.transifex.com/calamares/calamares/&quot;&gt;Calamares translators team&lt;/a&gt;.&lt;br/&gt;&lt;br/&gt;&lt;a href=&quot;http://calamares.io/&quot;&gt;Calamares&lt;/a&gt; development is sponsored by &lt;br/&gt;&lt;a href=&quot;http://www.blue-systems.com/&quot;&gt;Blue Systems&lt;/a&gt; - Liberating Software.</translation>
  2315. </message>
  2316. <message>
  2317. <location filename="../src/modules/welcome/WelcomePage.cpp" line="201"/>
  2318. <source>%1 support</source>
  2319. <translation>%1 support</translation>
  2320. </message>
  2321. </context>
  2322. <context>
  2323. <name>WelcomeViewStep</name>
  2324. <message>
  2325. <location filename="../src/modules/welcome/WelcomeViewStep.cpp" line="51"/>
  2326. <source>Welcome</source>
  2327. <translation>Welcome</translation>
  2328. </message>
  2329. </context>
  2330. </TS>