mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
Apply advanced settings prompt: offer "no" without clear options
By request. When prompted if previous settings should be applied, offer a "no" button that only applies this time, and does not clear settings.
This commit is contained in:
parent
0378751295
commit
b93fe29617
16 changed files with 1153 additions and 1188 deletions
4
debian/changelog
vendored
4
debian/changelog
vendored
|
@ -2,8 +2,10 @@ rpi-imager (1.7.4.1) unstable; urgency=medium
|
||||||
|
|
||||||
* Advanced settings: fix creating files on FAT partition that are
|
* Advanced settings: fix creating files on FAT partition that are
|
||||||
an exact multiple of cluster size.
|
an exact multiple of cluster size.
|
||||||
|
* Do you want to apply saved settings window: offer no option,
|
||||||
|
without clearing settings.
|
||||||
|
|
||||||
-- Floris Bos <bos@je-eigen-domein.nl> Wed, 22 Mar 2023 16:15:00 +0100
|
-- Floris Bos <bos@je-eigen-domein.nl> Fri, 24 Mar 2023 14:16:03 +0100
|
||||||
|
|
||||||
rpi-imager (1.7.4) unstable; urgency=medium
|
rpi-imager (1.7.4) unstable; urgency=medium
|
||||||
|
|
||||||
|
|
|
@ -115,11 +115,12 @@ if(${QT}WinExtras_FOUND)
|
||||||
set(EXTRALIBS ${EXTRALIBS} ${QT}::WinExtras)
|
set(EXTRALIBS ${EXTRALIBS} ${QT}::WinExtras)
|
||||||
endif()
|
endif()
|
||||||
|
|
||||||
#qt5_create_translation(QM_FILES ${CMAKE_SOURCE_DIR} i18n/rpi-imager_en.ts i18n/rpi-imager_nl.ts i18n/rpi-imager_zh.ts i18n/rpi-imager_tr.ts i18n/rpi-imager_fr.ts i18n/rpi-imager_de.ts i18n/rpi-imager_sk.ts i18n/rpi-imager_it.ts i18n/rpi-imager_ca.ts i18n/rpi-imager_sl.ts i18n/rpi-imager_ko.ts i18n/rpi-imager_ja.ts)
|
set(TRANSLATIONS i18n/rpi-imager_en.ts i18n/rpi-imager_nl.ts i18n/rpi-imager_zh.ts i18n/rpi-imager_tr.ts i18n/rpi-imager_fr.ts i18n/rpi-imager_de.ts i18n/rpi-imager_sk.ts i18n/rpi-imager_it.ts i18n/rpi-imager_ca.ts i18n/rpi-imager_sl.ts i18n/rpi-imager_ko.ts i18n/rpi-imager_ja.ts)
|
||||||
|
#qt5_create_translation(QM_FILES ${CMAKE_SOURCE_DIR} ${TRANSLATIONS})
|
||||||
if (Qt5_FOUND)
|
if (Qt5_FOUND)
|
||||||
qt5_add_translation(QM_FILES i18n/rpi-imager_en.ts i18n/rpi-imager_nl.ts i18n/rpi-imager_zh.ts i18n/rpi-imager_tr.ts i18n/rpi-imager_fr.ts i18n/rpi-imager_de.ts i18n/rpi-imager_sk.ts i18n/rpi-imager_it.ts i18n/rpi-imager_ca.ts i18n/rpi-imager_sl.ts i18n/rpi-imager_ko.ts i18n/rpi-imager_ja.ts)
|
qt5_add_translation(QM_FILES ${TRANSLATIONS})
|
||||||
else()
|
else()
|
||||||
qt_add_translation(QM_FILES i18n/rpi-imager_en.ts i18n/rpi-imager_nl.ts i18n/rpi-imager_zh.ts i18n/rpi-imager_tr.ts i18n/rpi-imager_fr.ts i18n/rpi-imager_de.ts i18n/rpi-imager_sk.ts i18n/rpi-imager_it.ts i18n/rpi-imager_ca.ts i18n/rpi-imager_sl.ts i18n/rpi-imager_ko.ts i18n/rpi-imager_ja.ts)
|
qt_add_translation(QM_FILES ${TRANSLATIONS})
|
||||||
endif()
|
endif()
|
||||||
configure_file(i18n/translations.qrc "${CMAKE_CURRENT_BINARY_DIR}" COPYONLY)
|
configure_file(i18n/translations.qrc "${CMAKE_CURRENT_BINARY_DIR}" COPYONLY)
|
||||||
set(SOURCES ${SOURCES} ${CMAKE_CURRENT_BINARY_DIR}/translations.qrc ${QM_FILES})
|
set(SOURCES ${SOURCES} ${CMAKE_CURRENT_BINARY_DIR}/translations.qrc ${QM_FILES})
|
||||||
|
|
|
@ -20,6 +20,7 @@ Popup {
|
||||||
|
|
||||||
signal yes()
|
signal yes()
|
||||||
signal no()
|
signal no()
|
||||||
|
signal noClearSettings()
|
||||||
signal editSettings()
|
signal editSettings()
|
||||||
|
|
||||||
// background of title
|
// background of title
|
||||||
|
@ -92,7 +93,7 @@ Popup {
|
||||||
spacing: 20
|
spacing: 20
|
||||||
|
|
||||||
ImButton {
|
ImButton {
|
||||||
text: qsTr("NO, CLEAR SETTINGS")
|
text: qsTr("NO")
|
||||||
onClicked: {
|
onClicked: {
|
||||||
msgpopup.close()
|
msgpopup.close()
|
||||||
msgpopup.no()
|
msgpopup.no()
|
||||||
|
@ -101,6 +102,16 @@ Popup {
|
||||||
Material.background: "#c51a4a"
|
Material.background: "#c51a4a"
|
||||||
}
|
}
|
||||||
|
|
||||||
|
ImButton {
|
||||||
|
text: qsTr("NO, CLEAR SETTINGS")
|
||||||
|
onClicked: {
|
||||||
|
msgpopup.close()
|
||||||
|
msgpopup.noClearSettings()
|
||||||
|
}
|
||||||
|
Material.foreground: activeFocus ? "#d1dcfb" : "#ffffff"
|
||||||
|
Material.background: "#c51a4a"
|
||||||
|
}
|
||||||
|
|
||||||
ImButton {
|
ImButton {
|
||||||
text: qsTr("YES")
|
text: qsTr("YES")
|
||||||
onClicked: {
|
onClicked: {
|
||||||
|
|
|
@ -33,162 +33,148 @@
|
||||||
<context>
|
<context>
|
||||||
<name>DownloadThread</name>
|
<name>DownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="147"/>
|
<location filename="../downloadthread.cpp" line="166"/>
|
||||||
<source>Error running diskpart: %1</source>
|
<source>Error running diskpart: %1</source>
|
||||||
<translation>S'ha produït un error en executar «diskpart»: %1</translation>
|
<translation>S'ha produït un error en executar «diskpart»: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="168"/>
|
<location filename="../downloadthread.cpp" line="187"/>
|
||||||
<source>Error removing existing partitions</source>
|
<source>Error removing existing partitions</source>
|
||||||
<translation>S'ha produït un error en eliminar les particions existents.</translation>
|
<translation>S'ha produït un error en eliminar les particions existents.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="194"/>
|
<location filename="../downloadthread.cpp" line="213"/>
|
||||||
<source>Authentication cancelled</source>
|
<source>Authentication cancelled</source>
|
||||||
<translation>S'ha cancel·lat l'autenticació</translation>
|
<translation>S'ha cancel·lat l'autenticació</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="197"/>
|
<location filename="../downloadthread.cpp" line="216"/>
|
||||||
<source>Error running authopen to gain access to disk device '%1'</source>
|
<source>Error running authopen to gain access to disk device '%1'</source>
|
||||||
<translation>S'ha produït un error en executar «authopen» per a obtenir l'accés al dispositiu de disc «%1»</translation>
|
<translation>S'ha produït un error en executar «authopen» per a obtenir l'accés al dispositiu de disc «%1»</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="198"/>
|
<location filename="../downloadthread.cpp" line="217"/>
|
||||||
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
||||||
<translation>Verifiqueu si el «Raspberry Pi Imager» té accés als «volums extraïbles» des de la configuració de privacitat (sota «fitxers i carpetes» o doneu-li «accés complet al disc»)</translation>
|
<translation>Verifiqueu si el «Raspberry Pi Imager» té accés als «volums extraïbles» des de la configuració de privacitat (sota «fitxers i carpetes» o doneu-li «accés complet al disc»)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="220"/>
|
<location filename="../downloadthread.cpp" line="239"/>
|
||||||
<source>Cannot open storage device '%1'.</source>
|
<source>Cannot open storage device '%1'.</source>
|
||||||
<translation>No s'ha pogut obrir el dispositiu d'emmagatzematge «%1»</translation>
|
<translation>No s'ha pogut obrir el dispositiu d'emmagatzematge «%1»</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="262"/>
|
<location filename="../downloadthread.cpp" line="281"/>
|
||||||
<source>discarding existing data on drive</source>
|
<source>discarding existing data on drive</source>
|
||||||
<translation>S'estan descartant les dades existents a la unitat</translation>
|
<translation>S'estan descartant les dades existents a la unitat</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="282"/>
|
<location filename="../downloadthread.cpp" line="301"/>
|
||||||
<source>zeroing out first and last MB of drive</source>
|
<source>zeroing out first and last MB of drive</source>
|
||||||
<translation>S'està esborrant amb zeros el primer i l'últim MB de la unitat</translation>
|
<translation>S'està esborrant amb zeros el primer i l'últim MB de la unitat</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="288"/>
|
<location filename="../downloadthread.cpp" line="307"/>
|
||||||
<source>Write error while zero'ing out MBR</source>
|
<source>Write error while zero'ing out MBR</source>
|
||||||
<translation>S'ha produït un error en esborrar amb zeros l'«MBR».</translation>
|
<translation>S'ha produït un error en esborrar amb zeros l'«MBR».</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="779"/>
|
<location filename="../downloadthread.cpp" line="813"/>
|
||||||
<source>Error reading from storage.<br>SD card may be broken.</source>
|
<source>Error reading from storage.<br>SD card may be broken.</source>
|
||||||
<translation>S'ha produït un error en llegir l'emmagatzematge.<br>És possible que la targeta SD estigui malmesa.</translation>
|
<translation>S'ha produït un error en llegir l'emmagatzematge.<br>És possible que la targeta SD estigui malmesa.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="855"/>
|
|
||||||
<source>Waiting for FAT partition to be mounted</source>
|
<source>Waiting for FAT partition to be mounted</source>
|
||||||
<translation>S'està esperant que la partició FAT s'hagi muntat</translation>
|
<translation type="vanished">S'està esperant que la partició FAT s'hagi muntat</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="941"/>
|
|
||||||
<source>Error mounting FAT32 partition</source>
|
<source>Error mounting FAT32 partition</source>
|
||||||
<translation>S'ha produït un error en muntar la partició FAT32</translation>
|
<translation type="vanished">S'ha produït un error en muntar la partició FAT32</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="963"/>
|
|
||||||
<source>Operating system did not mount FAT32 partition</source>
|
<source>Operating system did not mount FAT32 partition</source>
|
||||||
<translation>El sistema operatiu no ha muntat la partició FAT32</translation>
|
<translation type="vanished">El sistema operatiu no ha muntat la partició FAT32</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="996"/>
|
<location filename="../downloadthread.cpp" line="885"/>
|
||||||
<source>Unable to customize. File '%1' does not exist.</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1000"/>
|
|
||||||
<source>Customizing image</source>
|
<source>Customizing image</source>
|
||||||
<translation>S'està personalitzant la imatge</translation>
|
<translation>S'està personalitzant la imatge</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1085"/>
|
|
||||||
<source>Error creating firstrun.sh on FAT partition</source>
|
<source>Error creating firstrun.sh on FAT partition</source>
|
||||||
<translation>S'ha produït un error en crear el fitxer «firstrun.sh» a la partició FAT</translation>
|
<translation type="vanished">S'ha produït un error en crear el fitxer «firstrun.sh» a la partició FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1037"/>
|
|
||||||
<source>Error writing to config.txt on FAT partition</source>
|
<source>Error writing to config.txt on FAT partition</source>
|
||||||
<translation>S'ha produït un error en escriure al fitxer «config.txt» a la partició FAT</translation>
|
<translation type="vanished">S'ha produït un error en escriure al fitxer «config.txt» a la partició FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1102"/>
|
|
||||||
<source>Error creating user-data cloudinit file on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1116"/>
|
|
||||||
<source>Error creating network-config cloudinit file on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1139"/>
|
|
||||||
<source>Error writing to cmdline.txt on FAT partition</source>
|
<source>Error writing to cmdline.txt on FAT partition</source>
|
||||||
<translation>S'ha produït un error en escriure al fitxer «cmdline.txt» a la partició FAT</translation>
|
<translation type="vanished">S'ha produït un error en escriure al fitxer «cmdline.txt» a la partició FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="432"/>
|
<location filename="../downloadthread.cpp" line="451"/>
|
||||||
<source>Access denied error while writing file to disk.</source>
|
<source>Access denied error while writing file to disk.</source>
|
||||||
<translation>S'ha produït un error d'accés denegat en escriure el fitxer al disc.</translation>
|
<translation>S'ha produït un error d'accés denegat en escriure el fitxer al disc.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="437"/>
|
<location filename="../downloadthread.cpp" line="456"/>
|
||||||
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
||||||
<translation>L'opció «Controla l'accés de la carpeta» de la Seguretat del Windows sembla que està activada. Afegiu els executables «rpi-imager.exe» i «fat32format.exe» a la llista d'aplicacions permeses i torneu-ho a provar.</translation>
|
<translation>L'opció «Controla l'accés de la carpeta» de la Seguretat del Windows sembla que està activada. Afegiu els executables «rpi-imager.exe» i «fat32format.exe» a la llista d'aplicacions permeses i torneu-ho a provar.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="444"/>
|
<location filename="../downloadthread.cpp" line="463"/>
|
||||||
<source>Error writing file to disk</source>
|
<source>Error writing file to disk</source>
|
||||||
<translation>S'ha produït un error en escriure el fitxer al disc</translation>
|
<translation>S'ha produït un error en escriure el fitxer al disc</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="463"/>
|
<location filename="../downloadthread.cpp" line="482"/>
|
||||||
<source>Error downloading: %1</source>
|
<source>Error downloading: %1</source>
|
||||||
<translation>S'ha produït un error en la baixada: %1</translation>
|
<translation>S'ha produït un error en la baixada: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="686"/>
|
<location filename="../downloadthread.cpp" line="705"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="757"/>
|
||||||
<source>Error writing to storage (while flushing)</source>
|
<source>Error writing to storage (while flushing)</source>
|
||||||
<translation>S'ha produït un error en escriure a l'emmagatzematge (procés: Flushing)</translation>
|
<translation>S'ha produït un error en escriure a l'emmagatzematge (procés: Flushing)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="693"/>
|
<location filename="../downloadthread.cpp" line="712"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="764"/>
|
||||||
<source>Error writing to storage (while fsync)</source>
|
<source>Error writing to storage (while fsync)</source>
|
||||||
<translation>S'ha produït un error en escriure a l'emmagatzematge (procés: fsync)</translation>
|
<translation>S'ha produït un error en escriure a l'emmagatzematge (procés: fsync)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="674"/>
|
<location filename="../downloadthread.cpp" line="693"/>
|
||||||
<source>Download corrupt. Hash does not match</source>
|
<source>Download corrupt. Hash does not match</source>
|
||||||
<translation>La baixada està corrompuda. El «hash» no coincideix</translation>
|
<translation>La baixada està corrompuda. El «hash» no coincideix</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="114"/>
|
<location filename="../downloadthread.cpp" line="118"/>
|
||||||
|
<source>unmounting drive</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../downloadthread.cpp" line="138"/>
|
||||||
<source>opening drive</source>
|
<source>opening drive</source>
|
||||||
<translation>S'està obrint la unitat</translation>
|
<translation>S'està obrint la unitat</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="300"/>
|
<location filename="../downloadthread.cpp" line="319"/>
|
||||||
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
||||||
<translation>S'ha produït un error d'escriptura en esborrar amb zeros l'última part de la targeta.<br>La targeta podria estar indicant una capacitat errònia (possible falsificació)</translation>
|
<translation>S'ha produït un error d'escriptura en esborrar amb zeros l'última part de la targeta.<br>La targeta podria estar indicant una capacitat errònia (possible falsificació)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="389"/>
|
<location filename="../downloadthread.cpp" line="408"/>
|
||||||
<source>starting download</source>
|
<source>starting download</source>
|
||||||
<translation>S'està iniciant la baixada</translation>
|
<translation>S'està iniciant la baixada</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="719"/>
|
<location filename="../downloadthread.cpp" line="747"/>
|
||||||
<source>Error writing first block (partition table)</source>
|
<source>Error writing first block (partition table)</source>
|
||||||
<translation>S'ha produït un error en escriure el primer bloc (taula de particions)</translation>
|
<translation>S'ha produït un error en escriure el primer bloc (taula de particions)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="798"/>
|
<location filename="../downloadthread.cpp" line="832"/>
|
||||||
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
||||||
<translation>Ha fallat la verificació de l'escriptura. El contingut de la targeta SD és diferent del que s'hi ha escrit.</translation>
|
<translation>Ha fallat la verificació de l'escriptura. El contingut de la targeta SD és diferent del que s'hi ha escrit.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -256,27 +242,27 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ImageWriter</name>
|
<name>ImageWriter</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="257"/>
|
<location filename="../imagewriter.cpp" line="248"/>
|
||||||
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
||||||
<translation>La capacitat de l'emmagatzematge no és suficient.<br>Ha de ser de %1 GB com a mínim.</translation>
|
<translation>La capacitat de l'emmagatzematge no és suficient.<br>Ha de ser de %1 GB com a mínim.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="263"/>
|
<location filename="../imagewriter.cpp" line="254"/>
|
||||||
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
||||||
<translation>El fitxer d'entrada no és una imatge de disc vàlida.<br>La mida del fitxer és de %1 bytes, que no és múltiple de 512 bytes.</translation>
|
<translation>El fitxer d'entrada no és una imatge de disc vàlida.<br>La mida del fitxer és de %1 bytes, que no és múltiple de 512 bytes.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="445"/>
|
<location filename="../imagewriter.cpp" line="442"/>
|
||||||
<source>Downloading and writing image</source>
|
<source>Downloading and writing image</source>
|
||||||
<translation>S'està baixant i escrivint la imatge</translation>
|
<translation>S'està baixant i escrivint la imatge</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="578"/>
|
<location filename="../imagewriter.cpp" line="575"/>
|
||||||
<source>Select image</source>
|
<source>Select image</source>
|
||||||
<translation>Selecciona una imatge</translation>
|
<translation>Selecciona una imatge</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="979"/>
|
<location filename="../imagewriter.cpp" line="864"/>
|
||||||
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -320,22 +306,22 @@
|
||||||
<context>
|
<context>
|
||||||
<name>OptionsPopup</name>
|
<name>OptionsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="79"/>
|
<location filename="../OptionsPopup.qml" line="80"/>
|
||||||
<source>Advanced options</source>
|
<source>Advanced options</source>
|
||||||
<translation>Opcions avançades</translation>
|
<translation>Opcions avançades</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="96"/>
|
<location filename="../OptionsPopup.qml" line="97"/>
|
||||||
<source>Image customization options</source>
|
<source>Image customization options</source>
|
||||||
<translation>Opcions de personalització de les imatges</translation>
|
<translation>Opcions de personalització de les imatges</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="104"/>
|
<location filename="../OptionsPopup.qml" line="105"/>
|
||||||
<source>for this session only</source>
|
<source>for this session only</source>
|
||||||
<translation>per a aquesta sessió només</translation>
|
<translation>per a aquesta sessió només</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="105"/>
|
<location filename="../OptionsPopup.qml" line="106"/>
|
||||||
<source>to always use</source>
|
<source>to always use</source>
|
||||||
<translation>per utilitzar sempre</translation>
|
<translation>per utilitzar sempre</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -344,17 +330,17 @@
|
||||||
<translation type="vanished">Desactiva el sobreescaneig (overscan)</translation>
|
<translation type="vanished">Desactiva el sobreescaneig (overscan)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="119"/>
|
<location filename="../OptionsPopup.qml" line="120"/>
|
||||||
<source>Set hostname:</source>
|
<source>Set hostname:</source>
|
||||||
<translation>Defineix un nom de la màquina (hostname):</translation>
|
<translation>Defineix un nom de la màquina (hostname):</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="138"/>
|
<location filename="../OptionsPopup.qml" line="140"/>
|
||||||
<source>Enable SSH</source>
|
<source>Enable SSH</source>
|
||||||
<translation>Activa el protocol SSH</translation>
|
<translation>Activa el protocol SSH</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="160"/>
|
<location filename="../OptionsPopup.qml" line="162"/>
|
||||||
<source>Use password authentication</source>
|
<source>Use password authentication</source>
|
||||||
<translation>Utilitza l'autenticació de contrasenya</translation>
|
<translation>Utilitza l'autenticació de contrasenya</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -363,7 +349,7 @@
|
||||||
<translation type="vanished">Establiu la contrasenya per a l'usuari «pi»:</translation>
|
<translation type="vanished">Establiu la contrasenya per a l'usuari «pi»:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="170"/>
|
<location filename="../OptionsPopup.qml" line="172"/>
|
||||||
<source>Allow public-key authentication only</source>
|
<source>Allow public-key authentication only</source>
|
||||||
<translation>Permet només l'autenticació de claus públiques</translation>
|
<translation>Permet només l'autenticació de claus públiques</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -372,63 +358,63 @@
|
||||||
<translation type="vanished">Establiu «authorized_keys» per a l'usuari «pi»:</translation>
|
<translation type="vanished">Establiu «authorized_keys» per a l'usuari «pi»:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="188"/>
|
<location filename="../OptionsPopup.qml" line="190"/>
|
||||||
<source>Set authorized_keys for '%1':</source>
|
<source>Set authorized_keys for '%1':</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="261"/>
|
<location filename="../OptionsPopup.qml" line="264"/>
|
||||||
<source>Configure wireless LAN</source>
|
<source>Configure wireless LAN</source>
|
||||||
<translation>Configura la wifi</translation>
|
<translation>Configura la wifi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="280"/>
|
<location filename="../OptionsPopup.qml" line="283"/>
|
||||||
<source>SSID:</source>
|
<source>SSID:</source>
|
||||||
<translation>SSID:</translation>
|
<translation>SSID:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="234"/>
|
<location filename="../OptionsPopup.qml" line="237"/>
|
||||||
<location filename="../OptionsPopup.qml" line="300"/>
|
<location filename="../OptionsPopup.qml" line="303"/>
|
||||||
<source>Password:</source>
|
<source>Password:</source>
|
||||||
<translation>Contrasenya</translation>
|
<translation>Contrasenya</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="200"/>
|
<location filename="../OptionsPopup.qml" line="203"/>
|
||||||
<source>Set username and password</source>
|
<source>Set username and password</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="219"/>
|
<location filename="../OptionsPopup.qml" line="222"/>
|
||||||
<source>Username:</source>
|
<source>Username:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="295"/>
|
<location filename="../OptionsPopup.qml" line="298"/>
|
||||||
<source>Hidden SSID</source>
|
<source>Hidden SSID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="316"/>
|
<location filename="../OptionsPopup.qml" line="319"/>
|
||||||
<source>Show password</source>
|
<source>Show password</source>
|
||||||
<translation>Mostra la contrasenya</translation>
|
<translation>Mostra la contrasenya</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="321"/>
|
<location filename="../OptionsPopup.qml" line="324"/>
|
||||||
<source>Wireless LAN country:</source>
|
<source>Wireless LAN country:</source>
|
||||||
<translation>País de la wifi:</translation>
|
<translation>País de la wifi:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="332"/>
|
<location filename="../OptionsPopup.qml" line="335"/>
|
||||||
<source>Set locale settings</source>
|
<source>Set locale settings</source>
|
||||||
<translation>Estableix la configuració regional</translation>
|
<translation>Estableix la configuració regional</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="342"/>
|
<location filename="../OptionsPopup.qml" line="345"/>
|
||||||
<source>Time zone:</source>
|
<source>Time zone:</source>
|
||||||
<translation>Fus horari:</translation>
|
<translation>Fus horari:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="352"/>
|
<location filename="../OptionsPopup.qml" line="355"/>
|
||||||
<source>Keyboard layout:</source>
|
<source>Keyboard layout:</source>
|
||||||
<translation>Disposició del teclat</translation>
|
<translation>Disposició del teclat</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -437,27 +423,27 @@
|
||||||
<translation type="vanished">Omet l'assistent de la primera arrencada</translation>
|
<translation type="vanished">Omet l'assistent de la primera arrencada</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="365"/>
|
<location filename="../OptionsPopup.qml" line="368"/>
|
||||||
<source>Persistent settings</source>
|
<source>Persistent settings</source>
|
||||||
<translation>Configuració persistent</translation>
|
<translation>Configuració persistent</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="373"/>
|
<location filename="../OptionsPopup.qml" line="376"/>
|
||||||
<source>Play sound when finished</source>
|
<source>Play sound when finished</source>
|
||||||
<translation>Fes un so quan acabi</translation>
|
<translation>Fes un so quan acabi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="377"/>
|
<location filename="../OptionsPopup.qml" line="380"/>
|
||||||
<source>Eject media when finished</source>
|
<source>Eject media when finished</source>
|
||||||
<translation>Expulsa el mitjà quan acabi</translation>
|
<translation>Expulsa el mitjà quan acabi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="381"/>
|
<location filename="../OptionsPopup.qml" line="384"/>
|
||||||
<source>Enable telemetry</source>
|
<source>Enable telemetry</source>
|
||||||
<translation>Activa la telemetria</translation>
|
<translation>Activa la telemetria</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="394"/>
|
<location filename="../OptionsPopup.qml" line="397"/>
|
||||||
<source>SAVE</source>
|
<source>SAVE</source>
|
||||||
<translation>DESA</translation>
|
<translation>DESA</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -473,27 +459,32 @@
|
||||||
<context>
|
<context>
|
||||||
<name>UseSavedSettingsPopup</name>
|
<name>UseSavedSettingsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="72"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="73"/>
|
||||||
<source>Warning: advanced settings set</source>
|
<source>Warning: advanced settings set</source>
|
||||||
<translation>Avís: hi ha opcions avançades establertes</translation>
|
<translation>Avís: hi ha opcions avançades establertes</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="86"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="87"/>
|
||||||
<source>Would you like to apply the image customization settings saved earlier?</source>
|
<source>Would you like to apply the image customization settings saved earlier?</source>
|
||||||
<translation>Voleu aplicar la configuració personalitzada de la imatge desada anteriorment?</translation>
|
<translation>Voleu aplicar la configuració personalitzada de la imatge desada anteriorment?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="95"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="96"/>
|
||||||
|
<source>NO</source>
|
||||||
|
<translation>NO</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../UseSavedSettingsPopup.qml" line="106"/>
|
||||||
<source>NO, CLEAR SETTINGS</source>
|
<source>NO, CLEAR SETTINGS</source>
|
||||||
<translation>NO, ESBORRA LA CONFIGURACIÓ</translation>
|
<translation>NO, ESBORRA LA CONFIGURACIÓ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="105"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="116"/>
|
||||||
<source>YES</source>
|
<source>YES</source>
|
||||||
<translation>SÍ</translation>
|
<translation>SÍ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="115"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="126"/>
|
||||||
<source>EDIT SETTINGS</source>
|
<source>EDIT SETTINGS</source>
|
||||||
<translation>EDITA LA CONFIGURACIÓ</translation>
|
<translation>EDITA LA CONFIGURACIÓ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -529,7 +520,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="147"/>
|
<location filename="../main.qml" line="147"/>
|
||||||
<location filename="../main.qml" line="1038"/>
|
<location filename="../main.qml" line="1041"/>
|
||||||
<source>CHOOSE STORAGE</source>
|
<source>CHOOSE STORAGE</source>
|
||||||
<translation>ESCULL L'EMMAGATZEMATGE</translation>
|
<translation>ESCULL L'EMMAGATZEMATGE</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -550,7 +541,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="221"/>
|
<location filename="../main.qml" line="221"/>
|
||||||
<location filename="../main.qml" line="965"/>
|
<location filename="../main.qml" line="968"/>
|
||||||
<source>Cancelling...</source>
|
<source>Cancelling...</source>
|
||||||
<translation>S'està cancel·lant...</translation>
|
<translation>S'està cancel·lant...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -561,8 +552,8 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="232"/>
|
<location filename="../main.qml" line="232"/>
|
||||||
<location filename="../main.qml" line="988"/>
|
<location filename="../main.qml" line="991"/>
|
||||||
<location filename="../main.qml" line="1057"/>
|
<location filename="../main.qml" line="1060"/>
|
||||||
<source>Finalizing...</source>
|
<source>Finalizing...</source>
|
||||||
<translation>S'està finalitzant...</translation>
|
<translation>S'està finalitzant...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -593,7 +584,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="505"/>
|
<location filename="../main.qml" line="505"/>
|
||||||
<location filename="../main.qml" line="1022"/>
|
<location filename="../main.qml" line="1025"/>
|
||||||
<source>Erase</source>
|
<source>Erase</source>
|
||||||
<translation>Esborra</translation>
|
<translation>Esborra</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -690,7 +681,7 @@
|
||||||
<translation>Hi ha una nova versió de l'Imager disponible.<br>Voleu visitar el lloc web per baixar-la?</translation>
|
<translation>Hi ha una nova versió de l'Imager disponible.<br>Voleu visitar el lloc web per baixar-la?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="968"/>
|
<location filename="../main.qml" line="971"/>
|
||||||
<source>Writing... %1%</source>
|
<source>Writing... %1%</source>
|
||||||
<translation>S'està escrivint... %1%</translation>
|
<translation>S'està escrivint... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -700,32 +691,32 @@
|
||||||
<translation>Totes les dades existents a «%1» s'esborraràn.<br>Esteu segur que voleu continuar?</translation>
|
<translation>Totes les dades existents a «%1» s'esborraràn.<br>Esteu segur que voleu continuar?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="947"/>
|
<location filename="../main.qml" line="950"/>
|
||||||
<source>Error downloading OS list from Internet</source>
|
<source>Error downloading OS list from Internet</source>
|
||||||
<translation>S'ha produït un error en baixar la llista dels SO d'internet</translation>
|
<translation>S'ha produït un error en baixar la llista dels SO d'internet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="991"/>
|
<location filename="../main.qml" line="994"/>
|
||||||
<source>Verifying... %1%</source>
|
<source>Verifying... %1%</source>
|
||||||
<translation>S'està verificant... %1%</translation>
|
<translation>S'està verificant... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="998"/>
|
<location filename="../main.qml" line="1001"/>
|
||||||
<source>Preparing to write... (%1)</source>
|
<source>Preparing to write... (%1)</source>
|
||||||
<translation>S'està preparant per escriure... (%1)</translation>
|
<translation>S'està preparant per escriure... (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1014"/>
|
<location filename="../main.qml" line="1017"/>
|
||||||
<source>Error</source>
|
<source>Error</source>
|
||||||
<translation>S'ha produït un error</translation>
|
<translation>S'ha produït un error</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1021"/>
|
<location filename="../main.qml" line="1024"/>
|
||||||
<source>Write Successful</source>
|
<source>Write Successful</source>
|
||||||
<translation>S'ha escrit amb èxit</translation>
|
<translation>S'ha escrit amb èxit</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1023"/>
|
<location filename="../main.qml" line="1026"/>
|
||||||
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation>S'ha esborrat <b>%1</b><br><br>Ja podeu retirar la targeta SD del lector</translation>
|
<translation>S'ha esborrat <b>%1</b><br><br>Ja podeu retirar la targeta SD del lector</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -734,22 +725,22 @@
|
||||||
<translation type="vanished">S'ha escrit el «<b>%1</b>» a <b>%2</b></translation>
|
<translation type="vanished">S'ha escrit el «<b>%1</b>» a <b>%2</b></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1030"/>
|
<location filename="../main.qml" line="1033"/>
|
||||||
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation>S'ha escrit el «<b>%1</b>» a <b>%2</b><br><br>Ja podeu retirar la targeta SD del lector</translation>
|
<translation>S'ha escrit el «<b>%1</b>» a <b>%2</b><br><br>Ja podeu retirar la targeta SD del lector</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1098"/>
|
<location filename="../main.qml" line="1101"/>
|
||||||
<source>Error parsing os_list.json</source>
|
<source>Error parsing os_list.json</source>
|
||||||
<translation>S'ha produït un error en analitzar os_lists.json</translation>
|
<translation>S'ha produït un error en analitzar os_lists.json</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1271"/>
|
<location filename="../main.qml" line="1274"/>
|
||||||
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
||||||
<translation>Connecteu una memòria USB que contingui primer imatges.<br>Les imatges s'han de trobar a la carpeta arrel de la memòria.</translation>
|
<translation>Connecteu una memòria USB que contingui primer imatges.<br>Les imatges s'han de trobar a la carpeta arrel de la memòria.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1287"/>
|
<location filename="../main.qml" line="1290"/>
|
||||||
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
||||||
<translation>La targeta SD està protegida contra escriptura.<br>Accioneu l'interruptor del costat esquerre de la targeta SD per tal que quedi posicionat a la part superior i torneu-ho a provar.</translation>
|
<translation>La targeta SD està protegida contra escriptura.<br>Accioneu l'interruptor del costat esquerre de la targeta SD per tal que quedi posicionat a la part superior i torneu-ho a provar.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -33,32 +33,37 @@
|
||||||
<context>
|
<context>
|
||||||
<name>DownloadThread</name>
|
<name>DownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="114"/>
|
<location filename="../downloadthread.cpp" line="118"/>
|
||||||
|
<source>unmounting drive</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../downloadthread.cpp" line="138"/>
|
||||||
<source>opening drive</source>
|
<source>opening drive</source>
|
||||||
<translation>Gerät wird geöffnet</translation>
|
<translation>Gerät wird geöffnet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="147"/>
|
<location filename="../downloadthread.cpp" line="166"/>
|
||||||
<source>Error running diskpart: %1</source>
|
<source>Error running diskpart: %1</source>
|
||||||
<translation>Fehler beim Ausführen von Diskpart: %1</translation>
|
<translation>Fehler beim Ausführen von Diskpart: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="168"/>
|
<location filename="../downloadthread.cpp" line="187"/>
|
||||||
<source>Error removing existing partitions</source>
|
<source>Error removing existing partitions</source>
|
||||||
<translation>Fehler beim Entfernen von existierenden Partitionen</translation>
|
<translation>Fehler beim Entfernen von existierenden Partitionen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="194"/>
|
<location filename="../downloadthread.cpp" line="213"/>
|
||||||
<source>Authentication cancelled</source>
|
<source>Authentication cancelled</source>
|
||||||
<translation>Authentifizierung abgebrochen</translation>
|
<translation>Authentifizierung abgebrochen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="197"/>
|
<location filename="../downloadthread.cpp" line="216"/>
|
||||||
<source>Error running authopen to gain access to disk device '%1'</source>
|
<source>Error running authopen to gain access to disk device '%1'</source>
|
||||||
<translation>Fehler beim Ausführen von authopen, um Zugriff auf Geräte zu erhalten '%1'</translation>
|
<translation>Fehler beim Ausführen von authopen, um Zugriff auf Geräte zu erhalten '%1'</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="198"/>
|
<location filename="../downloadthread.cpp" line="217"/>
|
||||||
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
||||||
<translatorcomment>I don't use Mac OS, I would need help here. Unfinished translation:
|
<translatorcomment>I don't use Mac OS, I would need help here. Unfinished translation:
|
||||||
|
|
||||||
|
@ -66,97 +71,88 @@ Bitte stellen Sie sicher, dass 'Raspberry Pi Imager' Zugriff auf &apos
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="220"/>
|
<location filename="../downloadthread.cpp" line="239"/>
|
||||||
<source>Cannot open storage device '%1'.</source>
|
<source>Cannot open storage device '%1'.</source>
|
||||||
<translation>Speichergerät '%1' kann nicht geöffnet werden.</translation>
|
<translation>Speichergerät '%1' kann nicht geöffnet werden.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="262"/>
|
<location filename="../downloadthread.cpp" line="281"/>
|
||||||
<source>discarding existing data on drive</source>
|
<source>discarding existing data on drive</source>
|
||||||
<translation>Vorhandene Daten auf dem Medium werden gelöscht</translation>
|
<translation>Vorhandene Daten auf dem Medium werden gelöscht</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="282"/>
|
<location filename="../downloadthread.cpp" line="301"/>
|
||||||
<source>zeroing out first and last MB of drive</source>
|
<source>zeroing out first and last MB of drive</source>
|
||||||
<translation>Erstes und letztes Megabyte des Mediums werden überschrieben</translation>
|
<translation>Erstes und letztes Megabyte des Mediums werden überschrieben</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="288"/>
|
<location filename="../downloadthread.cpp" line="307"/>
|
||||||
<source>Write error while zero'ing out MBR</source>
|
<source>Write error while zero'ing out MBR</source>
|
||||||
<translation>Schreibfehler während des Löschens des MBR</translation>
|
<translation>Schreibfehler während des Löschens des MBR</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="300"/>
|
<location filename="../downloadthread.cpp" line="319"/>
|
||||||
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
||||||
<translation>Fehler beim Löschen des letzten Teiles der Speicherkarte.<br>Die Speicherkarte könnte mit einer falschen Größe beworben sein (möglicherweise Betrug).</translation>
|
<translation>Fehler beim Löschen des letzten Teiles der Speicherkarte.<br>Die Speicherkarte könnte mit einer falschen Größe beworben sein (möglicherweise Betrug).</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="389"/>
|
<location filename="../downloadthread.cpp" line="408"/>
|
||||||
<source>starting download</source>
|
<source>starting download</source>
|
||||||
<translation>Download wird gestartet</translation>
|
<translation>Download wird gestartet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="779"/>
|
<location filename="../downloadthread.cpp" line="813"/>
|
||||||
<source>Error reading from storage.<br>SD card may be broken.</source>
|
<source>Error reading from storage.<br>SD card may be broken.</source>
|
||||||
<translation>Fehler beim Lesen vom Speicher.<br>Die SD-Karte könnte defekt sein.</translation>
|
<translation>Fehler beim Lesen vom Speicher.<br>Die SD-Karte könnte defekt sein.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="855"/>
|
|
||||||
<source>Waiting for FAT partition to be mounted</source>
|
<source>Waiting for FAT partition to be mounted</source>
|
||||||
<translation>Warten auf das Einbinden der FAT-Partition</translation>
|
<translation type="vanished">Warten auf das Einbinden der FAT-Partition</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="941"/>
|
|
||||||
<source>Error mounting FAT32 partition</source>
|
<source>Error mounting FAT32 partition</source>
|
||||||
<translation>Fehler beim Einbinden der FAT32-Partition</translation>
|
<translation type="vanished">Fehler beim Einbinden der FAT32-Partition</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="963"/>
|
|
||||||
<source>Operating system did not mount FAT32 partition</source>
|
<source>Operating system did not mount FAT32 partition</source>
|
||||||
<translation>Das Betriebssystem hat die FAT32-Partition nicht eingebunden.</translation>
|
<translation type="vanished">Das Betriebssystem hat die FAT32-Partition nicht eingebunden.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="996"/>
|
|
||||||
<source>Unable to customize. File '%1' does not exist.</source>
|
<source>Unable to customize. File '%1' does not exist.</source>
|
||||||
<translation>Modifizieren fehlgeschlagen. Die Datei '%1' existiert nicht.</translation>
|
<translation type="vanished">Modifizieren fehlgeschlagen. Die Datei '%1' existiert nicht.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1000"/>
|
<location filename="../downloadthread.cpp" line="885"/>
|
||||||
<source>Customizing image</source>
|
<source>Customizing image</source>
|
||||||
<translation>Image modifizieren</translation>
|
<translation>Image modifizieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1085"/>
|
|
||||||
<source>Error creating firstrun.sh on FAT partition</source>
|
<source>Error creating firstrun.sh on FAT partition</source>
|
||||||
<translation>Fehler beim Erstellen von firstrun.sh auf der FAT-Partition</translation>
|
<translation type="vanished">Fehler beim Erstellen von firstrun.sh auf der FAT-Partition</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1037"/>
|
|
||||||
<source>Error writing to config.txt on FAT partition</source>
|
<source>Error writing to config.txt on FAT partition</source>
|
||||||
<translation>Fehler beim Schreiben in config.txt auf der FAT-Partition</translation>
|
<translation type="vanished">Fehler beim Schreiben in config.txt auf der FAT-Partition</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1102"/>
|
|
||||||
<source>Error creating user-data cloudinit file on FAT partition</source>
|
<source>Error creating user-data cloudinit file on FAT partition</source>
|
||||||
<translation>Fehler beim Erstellen der user-data cloudinit Datei auf der FAT-Partition</translation>
|
<translation type="vanished">Fehler beim Erstellen der user-data cloudinit Datei auf der FAT-Partition</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1116"/>
|
|
||||||
<source>Error creating network-config cloudinit file on FAT partition</source>
|
<source>Error creating network-config cloudinit file on FAT partition</source>
|
||||||
<translation>Fehler beim Erstellen der network-config cloudinit Datei auf der FAT-Partition</translation>
|
<translation type="vanished">Fehler beim Erstellen der network-config cloudinit Datei auf der FAT-Partition</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1139"/>
|
|
||||||
<source>Error writing to cmdline.txt on FAT partition</source>
|
<source>Error writing to cmdline.txt on FAT partition</source>
|
||||||
<translation>Fehler beim Schreiben in cmdline.txt auf der FAT-Partition</translation>
|
<translation type="vanished">Fehler beim Schreiben in cmdline.txt auf der FAT-Partition</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="432"/>
|
<location filename="../downloadthread.cpp" line="451"/>
|
||||||
<source>Access denied error while writing file to disk.</source>
|
<source>Access denied error while writing file to disk.</source>
|
||||||
<translation>Zugriff verweigert-Fehler beim Schreiben auf den Datenträger.</translation>
|
<translation>Zugriff verweigert-Fehler beim Schreiben auf den Datenträger.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="437"/>
|
<location filename="../downloadthread.cpp" line="456"/>
|
||||||
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
||||||
<translatorcomment>I don't use Windows either. What is "Controlled Folder Access" in the German version?
|
<translatorcomment>I don't use Windows either. What is "Controlled Folder Access" in the German version?
|
||||||
|
|
||||||
|
@ -164,37 +160,39 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="444"/>
|
<location filename="../downloadthread.cpp" line="463"/>
|
||||||
<source>Error writing file to disk</source>
|
<source>Error writing file to disk</source>
|
||||||
<translation>Fehler beim Schreiben der Datei auf den Speicher</translation>
|
<translation>Fehler beim Schreiben der Datei auf den Speicher</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="463"/>
|
<location filename="../downloadthread.cpp" line="482"/>
|
||||||
<source>Error downloading: %1</source>
|
<source>Error downloading: %1</source>
|
||||||
<translation>Fehler beim Herunterladen: %1</translation>
|
<translation>Fehler beim Herunterladen: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="674"/>
|
<location filename="../downloadthread.cpp" line="693"/>
|
||||||
<source>Download corrupt. Hash does not match</source>
|
<source>Download corrupt. Hash does not match</source>
|
||||||
<translation>Download beschädigt. Prüfsumme stimmt nicht überein</translation>
|
<translation>Download beschädigt. Prüfsumme stimmt nicht überein</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="686"/>
|
<location filename="../downloadthread.cpp" line="705"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="757"/>
|
||||||
<source>Error writing to storage (while flushing)</source>
|
<source>Error writing to storage (while flushing)</source>
|
||||||
<translation>Fehler beim Schreiben auf den Speicher (während flushing)</translation>
|
<translation>Fehler beim Schreiben auf den Speicher (während flushing)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="693"/>
|
<location filename="../downloadthread.cpp" line="712"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="764"/>
|
||||||
<source>Error writing to storage (while fsync)</source>
|
<source>Error writing to storage (while fsync)</source>
|
||||||
<translation>Fehler beim Schreiben auf den Speicher (während fsync)</translation>
|
<translation>Fehler beim Schreiben auf den Speicher (während fsync)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="719"/>
|
<location filename="../downloadthread.cpp" line="747"/>
|
||||||
<source>Error writing first block (partition table)</source>
|
<source>Error writing first block (partition table)</source>
|
||||||
<translation>Fehler beim Schreiben auf des ersten Blocks (Partitionstabelle)</translation>
|
<translation>Fehler beim Schreiben auf des ersten Blocks (Partitionstabelle)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="798"/>
|
<location filename="../downloadthread.cpp" line="832"/>
|
||||||
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
||||||
<translation>Verifizierung fehlgeschlagen. Der Inhalt der SD-Karte weicht von dem Inhalt ab, der geschrieben werden sollte.</translation>
|
<translation>Verifizierung fehlgeschlagen. Der Inhalt der SD-Karte weicht von dem Inhalt ab, der geschrieben werden sollte.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -262,27 +260,27 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
<context>
|
<context>
|
||||||
<name>ImageWriter</name>
|
<name>ImageWriter</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="257"/>
|
<location filename="../imagewriter.cpp" line="248"/>
|
||||||
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
||||||
<translation>Die Speicherkapazität ist nicht groß genug.<br>Sie muss mindestens %1 GB betragen.</translation>
|
<translation>Die Speicherkapazität ist nicht groß genug.<br>Sie muss mindestens %1 GB betragen.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="263"/>
|
<location filename="../imagewriter.cpp" line="254"/>
|
||||||
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
||||||
<translation>Die Eingabedatei ist kein gültiges Disk-Image.<br>Die Dateigröße%1 Bytes ist kein Vielfaches von 512 Bytes.</translation>
|
<translation>Die Eingabedatei ist kein gültiges Disk-Image.<br>Die Dateigröße%1 Bytes ist kein Vielfaches von 512 Bytes.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="445"/>
|
<location filename="../imagewriter.cpp" line="442"/>
|
||||||
<source>Downloading and writing image</source>
|
<source>Downloading and writing image</source>
|
||||||
<translation>Image herunterladen und schreiben</translation>
|
<translation>Image herunterladen und schreiben</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="578"/>
|
<location filename="../imagewriter.cpp" line="575"/>
|
||||||
<source>Select image</source>
|
<source>Select image</source>
|
||||||
<translation>Image wählen</translation>
|
<translation>Image wählen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="979"/>
|
<location filename="../imagewriter.cpp" line="864"/>
|
||||||
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
||||||
<translation>Möchten Sie das Wifi-Passwort aus dem System-Schlüsselbund vorab ausfüllen?</translation>
|
<translation>Möchten Sie das Wifi-Passwort aus dem System-Schlüsselbund vorab ausfüllen?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -326,22 +324,22 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
<context>
|
<context>
|
||||||
<name>OptionsPopup</name>
|
<name>OptionsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="79"/>
|
<location filename="../OptionsPopup.qml" line="80"/>
|
||||||
<source>Advanced options</source>
|
<source>Advanced options</source>
|
||||||
<translation>Erweiterte Optionen</translation>
|
<translation>Erweiterte Optionen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="96"/>
|
<location filename="../OptionsPopup.qml" line="97"/>
|
||||||
<source>Image customization options</source>
|
<source>Image customization options</source>
|
||||||
<translation>OS-Modifizierungen</translation>
|
<translation>OS-Modifizierungen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="104"/>
|
<location filename="../OptionsPopup.qml" line="105"/>
|
||||||
<source>for this session only</source>
|
<source>for this session only</source>
|
||||||
<translation>Nur für diese Sitzung</translation>
|
<translation>Nur für diese Sitzung</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="105"/>
|
<location filename="../OptionsPopup.qml" line="106"/>
|
||||||
<source>to always use</source>
|
<source>to always use</source>
|
||||||
<translation>Immer verwenden</translation>
|
<translation>Immer verwenden</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -350,22 +348,22 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
<translation type="vanished">Overscan deaktivieren</translation>
|
<translation type="vanished">Overscan deaktivieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="119"/>
|
<location filename="../OptionsPopup.qml" line="120"/>
|
||||||
<source>Set hostname:</source>
|
<source>Set hostname:</source>
|
||||||
<translation>Hostname:</translation>
|
<translation>Hostname:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="138"/>
|
<location filename="../OptionsPopup.qml" line="140"/>
|
||||||
<source>Enable SSH</source>
|
<source>Enable SSH</source>
|
||||||
<translation>SSH aktivieren</translation>
|
<translation>SSH aktivieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="160"/>
|
<location filename="../OptionsPopup.qml" line="162"/>
|
||||||
<source>Use password authentication</source>
|
<source>Use password authentication</source>
|
||||||
<translation>Password zur Authentifizierung verwenden</translation>
|
<translation>Password zur Authentifizierung verwenden</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="170"/>
|
<location filename="../OptionsPopup.qml" line="172"/>
|
||||||
<source>Allow public-key authentication only</source>
|
<source>Allow public-key authentication only</source>
|
||||||
<translation>Authentifizierung via Public-Key</translation>
|
<translation>Authentifizierung via Public-Key</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -374,63 +372,63 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
<translation type="vanished">Passwort für '%1':</translation>
|
<translation type="vanished">Passwort für '%1':</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="188"/>
|
<location filename="../OptionsPopup.qml" line="190"/>
|
||||||
<source>Set authorized_keys for '%1':</source>
|
<source>Set authorized_keys for '%1':</source>
|
||||||
<translation>authorized_keys für '%1':</translation>
|
<translation>authorized_keys für '%1':</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="261"/>
|
<location filename="../OptionsPopup.qml" line="264"/>
|
||||||
<source>Configure wireless LAN</source>
|
<source>Configure wireless LAN</source>
|
||||||
<translation>Wifi einrichten</translation>
|
<translation>Wifi einrichten</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="280"/>
|
<location filename="../OptionsPopup.qml" line="283"/>
|
||||||
<source>SSID:</source>
|
<source>SSID:</source>
|
||||||
<translation>SSID:</translation>
|
<translation>SSID:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="234"/>
|
<location filename="../OptionsPopup.qml" line="237"/>
|
||||||
<location filename="../OptionsPopup.qml" line="300"/>
|
<location filename="../OptionsPopup.qml" line="303"/>
|
||||||
<source>Password:</source>
|
<source>Password:</source>
|
||||||
<translation>Passwort:</translation>
|
<translation>Passwort:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="200"/>
|
<location filename="../OptionsPopup.qml" line="203"/>
|
||||||
<source>Set username and password</source>
|
<source>Set username and password</source>
|
||||||
<translation>Benutzername und Passwort setzen:</translation>
|
<translation>Benutzername und Passwort setzen:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="219"/>
|
<location filename="../OptionsPopup.qml" line="222"/>
|
||||||
<source>Username:</source>
|
<source>Username:</source>
|
||||||
<translation>Benutzername:</translation>
|
<translation>Benutzername:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="295"/>
|
<location filename="../OptionsPopup.qml" line="298"/>
|
||||||
<source>Hidden SSID</source>
|
<source>Hidden SSID</source>
|
||||||
<translation>Verborgene SSID</translation>
|
<translation>Verborgene SSID</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="316"/>
|
<location filename="../OptionsPopup.qml" line="319"/>
|
||||||
<source>Show password</source>
|
<source>Show password</source>
|
||||||
<translation>Passwort anzeigen</translation>
|
<translation>Passwort anzeigen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="321"/>
|
<location filename="../OptionsPopup.qml" line="324"/>
|
||||||
<source>Wireless LAN country:</source>
|
<source>Wireless LAN country:</source>
|
||||||
<translation>Wifi-Land:</translation>
|
<translation>Wifi-Land:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="332"/>
|
<location filename="../OptionsPopup.qml" line="335"/>
|
||||||
<source>Set locale settings</source>
|
<source>Set locale settings</source>
|
||||||
<translation>Spracheinstellungen festlegen</translation>
|
<translation>Spracheinstellungen festlegen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="342"/>
|
<location filename="../OptionsPopup.qml" line="345"/>
|
||||||
<source>Time zone:</source>
|
<source>Time zone:</source>
|
||||||
<translation>Zeitzone:</translation>
|
<translation>Zeitzone:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="352"/>
|
<location filename="../OptionsPopup.qml" line="355"/>
|
||||||
<source>Keyboard layout:</source>
|
<source>Keyboard layout:</source>
|
||||||
<translation>Tastaturlayout:</translation>
|
<translation>Tastaturlayout:</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -439,27 +437,27 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
<translation type="vanished">Einrichtungsassistent überspringen</translation>
|
<translation type="vanished">Einrichtungsassistent überspringen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="365"/>
|
<location filename="../OptionsPopup.qml" line="368"/>
|
||||||
<source>Persistent settings</source>
|
<source>Persistent settings</source>
|
||||||
<translation>Dauerhafte Einstellungen</translation>
|
<translation>Dauerhafte Einstellungen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="373"/>
|
<location filename="../OptionsPopup.qml" line="376"/>
|
||||||
<source>Play sound when finished</source>
|
<source>Play sound when finished</source>
|
||||||
<translation>Tonsignal nach Beenden abspielen</translation>
|
<translation>Tonsignal nach Beenden abspielen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="377"/>
|
<location filename="../OptionsPopup.qml" line="380"/>
|
||||||
<source>Eject media when finished</source>
|
<source>Eject media when finished</source>
|
||||||
<translation>Medien nach Beenden auswerfen</translation>
|
<translation>Medien nach Beenden auswerfen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="381"/>
|
<location filename="../OptionsPopup.qml" line="384"/>
|
||||||
<source>Enable telemetry</source>
|
<source>Enable telemetry</source>
|
||||||
<translation>Telemetry aktivieren</translation>
|
<translation>Telemetry aktivieren</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="394"/>
|
<location filename="../OptionsPopup.qml" line="397"/>
|
||||||
<source>SAVE</source>
|
<source>SAVE</source>
|
||||||
<translation>SPEICHERN</translation>
|
<translation>SPEICHERN</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -475,27 +473,32 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
<context>
|
<context>
|
||||||
<name>UseSavedSettingsPopup</name>
|
<name>UseSavedSettingsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="72"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="73"/>
|
||||||
<source>Warning: advanced settings set</source>
|
<source>Warning: advanced settings set</source>
|
||||||
<translation>Warnung: Erweiterte Optionen festgelegt</translation>
|
<translation>Warnung: Erweiterte Optionen festgelegt</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="86"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="87"/>
|
||||||
<source>Would you like to apply the image customization settings saved earlier?</source>
|
<source>Would you like to apply the image customization settings saved earlier?</source>
|
||||||
<translation>Möchten Sie die vorher festgelegten OS-Modifizierungen anwenden?</translation>
|
<translation>Möchten Sie die vorher festgelegten OS-Modifizierungen anwenden?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="95"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="96"/>
|
||||||
|
<source>NO</source>
|
||||||
|
<translation>NEIN</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../UseSavedSettingsPopup.qml" line="106"/>
|
||||||
<source>NO, CLEAR SETTINGS</source>
|
<source>NO, CLEAR SETTINGS</source>
|
||||||
<translation>NEIN, EINSTELLUNGEN LÖSCHEN</translation>
|
<translation>NEIN, EINSTELLUNGEN LÖSCHEN</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="105"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="116"/>
|
||||||
<source>YES</source>
|
<source>YES</source>
|
||||||
<translation>JA</translation>
|
<translation>JA</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="115"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="126"/>
|
||||||
<source>EDIT SETTINGS</source>
|
<source>EDIT SETTINGS</source>
|
||||||
<translation>EINSTELLUNGEN BEARBEITEN</translation>
|
<translation>EINSTELLUNGEN BEARBEITEN</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -531,7 +534,7 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="147"/>
|
<location filename="../main.qml" line="147"/>
|
||||||
<location filename="../main.qml" line="1038"/>
|
<location filename="../main.qml" line="1041"/>
|
||||||
<source>CHOOSE STORAGE</source>
|
<source>CHOOSE STORAGE</source>
|
||||||
<translation>SD-KARTE WÄHLEN</translation>
|
<translation>SD-KARTE WÄHLEN</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -556,7 +559,7 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="221"/>
|
<location filename="../main.qml" line="221"/>
|
||||||
<location filename="../main.qml" line="965"/>
|
<location filename="../main.qml" line="968"/>
|
||||||
<source>Cancelling...</source>
|
<source>Cancelling...</source>
|
||||||
<translation>Abbrechen...</translation>
|
<translation>Abbrechen...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -567,14 +570,14 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="232"/>
|
<location filename="../main.qml" line="232"/>
|
||||||
<location filename="../main.qml" line="988"/>
|
<location filename="../main.qml" line="991"/>
|
||||||
<location filename="../main.qml" line="1057"/>
|
<location filename="../main.qml" line="1060"/>
|
||||||
<source>Finalizing...</source>
|
<source>Finalizing...</source>
|
||||||
<translation>Finalisieren...</translation>
|
<translation>Finalisieren...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="505"/>
|
<location filename="../main.qml" line="505"/>
|
||||||
<location filename="../main.qml" line="1022"/>
|
<location filename="../main.qml" line="1025"/>
|
||||||
<source>Erase</source>
|
<source>Erase</source>
|
||||||
<translation>Löschen</translation>
|
<translation>Löschen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -696,7 +699,7 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
<translation>Eine neuere Version von Imager ist verfügbar. <br>Möchten Sie die Webseite besuchen, um das Update herunterzuladen?</translation>
|
<translation>Eine neuere Version von Imager ist verfügbar. <br>Möchten Sie die Webseite besuchen, um das Update herunterzuladen?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="968"/>
|
<location filename="../main.qml" line="971"/>
|
||||||
<source>Writing... %1%</source>
|
<source>Writing... %1%</source>
|
||||||
<translation>Schreiben... %1%</translation>
|
<translation>Schreiben... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -706,32 +709,32 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
<translation>Alle vorhandenen Daten auf '%1' werden gelöscht.<br>Möchten Sie wirklich fortfahren?</translation>
|
<translation>Alle vorhandenen Daten auf '%1' werden gelöscht.<br>Möchten Sie wirklich fortfahren?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="947"/>
|
<location filename="../main.qml" line="950"/>
|
||||||
<source>Error downloading OS list from Internet</source>
|
<source>Error downloading OS list from Internet</source>
|
||||||
<translation>Fehler beim Herunterladen der Betriebssystemsliste aus dem Internet</translation>
|
<translation>Fehler beim Herunterladen der Betriebssystemsliste aus dem Internet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="991"/>
|
<location filename="../main.qml" line="994"/>
|
||||||
<source>Verifying... %1%</source>
|
<source>Verifying... %1%</source>
|
||||||
<translation>Verifizierung... %1%</translation>
|
<translation>Verifizierung... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="998"/>
|
<location filename="../main.qml" line="1001"/>
|
||||||
<source>Preparing to write... (%1)</source>
|
<source>Preparing to write... (%1)</source>
|
||||||
<translation>Schreiben wird vorbereitet... (%1)</translation>
|
<translation>Schreiben wird vorbereitet... (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1014"/>
|
<location filename="../main.qml" line="1017"/>
|
||||||
<source>Error</source>
|
<source>Error</source>
|
||||||
<translation>Fehler</translation>
|
<translation>Fehler</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1021"/>
|
<location filename="../main.qml" line="1024"/>
|
||||||
<source>Write Successful</source>
|
<source>Write Successful</source>
|
||||||
<translation>Schreiben erfolgreich</translation>
|
<translation>Schreiben erfolgreich</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1023"/>
|
<location filename="../main.qml" line="1026"/>
|
||||||
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> wurde geleert<br><br>Sie können die SD-Karte nun aus dem Lesegerät entfernen</translation>
|
<translation><b>%1</b> wurde geleert<br><br>Sie können die SD-Karte nun aus dem Lesegerät entfernen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -740,22 +743,22 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-
|
||||||
<translation type="vanished"><b>%1</b> wurde auf <b>%2</b> geschrieben</translation>
|
<translation type="vanished"><b>%1</b> wurde auf <b>%2</b> geschrieben</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1030"/>
|
<location filename="../main.qml" line="1033"/>
|
||||||
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> wurde auf <b>%2</b> geschrieben<br><br>Sie können die SD-Karte nun aus dem Lesegerät entfernen</translation>
|
<translation><b>%1</b> wurde auf <b>%2</b> geschrieben<br><br>Sie können die SD-Karte nun aus dem Lesegerät entfernen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1098"/>
|
<location filename="../main.qml" line="1101"/>
|
||||||
<source>Error parsing os_list.json</source>
|
<source>Error parsing os_list.json</source>
|
||||||
<translation>Fehler beim Parsen von os_list.json</translation>
|
<translation>Fehler beim Parsen von os_list.json</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1271"/>
|
<location filename="../main.qml" line="1274"/>
|
||||||
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
||||||
<translation>Verbinden Sie zuerst einen USB-Stick mit Images.<br>Die Images müssen sich im Wurzelverzeichnes des USB-Sticks befinden.</translation>
|
<translation>Verbinden Sie zuerst einen USB-Stick mit Images.<br>Die Images müssen sich im Wurzelverzeichnes des USB-Sticks befinden.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1287"/>
|
<location filename="../main.qml" line="1290"/>
|
||||||
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
||||||
<translation>Die Speicherkarte ist schreibgeschützt.<br>Schieben Sie den Schutzschalter auf der linken Seite nach oben, und versuchen Sie es erneut.</translation>
|
<translation>Die Speicherkarte ist schreibgeschützt.<br>Schieben Sie den Schutzschalter auf der linken Seite nach oben, und versuchen Sie es erneut.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -33,162 +33,124 @@
|
||||||
<context>
|
<context>
|
||||||
<name>DownloadThread</name>
|
<name>DownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="147"/>
|
<location filename="../downloadthread.cpp" line="166"/>
|
||||||
<source>Error running diskpart: %1</source>
|
<source>Error running diskpart: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="168"/>
|
<location filename="../downloadthread.cpp" line="187"/>
|
||||||
<source>Error removing existing partitions</source>
|
<source>Error removing existing partitions</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="194"/>
|
<location filename="../downloadthread.cpp" line="213"/>
|
||||||
<source>Authentication cancelled</source>
|
<source>Authentication cancelled</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="197"/>
|
<location filename="../downloadthread.cpp" line="216"/>
|
||||||
<source>Error running authopen to gain access to disk device '%1'</source>
|
<source>Error running authopen to gain access to disk device '%1'</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="198"/>
|
<location filename="../downloadthread.cpp" line="217"/>
|
||||||
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="220"/>
|
<location filename="../downloadthread.cpp" line="239"/>
|
||||||
<source>Cannot open storage device '%1'.</source>
|
<source>Cannot open storage device '%1'.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="262"/>
|
<location filename="../downloadthread.cpp" line="281"/>
|
||||||
<source>discarding existing data on drive</source>
|
<source>discarding existing data on drive</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="282"/>
|
<location filename="../downloadthread.cpp" line="301"/>
|
||||||
<source>zeroing out first and last MB of drive</source>
|
<source>zeroing out first and last MB of drive</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="288"/>
|
<location filename="../downloadthread.cpp" line="307"/>
|
||||||
<source>Write error while zero'ing out MBR</source>
|
<source>Write error while zero'ing out MBR</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="779"/>
|
<location filename="../downloadthread.cpp" line="813"/>
|
||||||
<source>Error reading from storage.<br>SD card may be broken.</source>
|
<source>Error reading from storage.<br>SD card may be broken.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="855"/>
|
<location filename="../downloadthread.cpp" line="885"/>
|
||||||
<source>Waiting for FAT partition to be mounted</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="941"/>
|
|
||||||
<source>Error mounting FAT32 partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="963"/>
|
|
||||||
<source>Operating system did not mount FAT32 partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="996"/>
|
|
||||||
<source>Unable to customize. File '%1' does not exist.</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1000"/>
|
|
||||||
<source>Customizing image</source>
|
<source>Customizing image</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1085"/>
|
<location filename="../downloadthread.cpp" line="451"/>
|
||||||
<source>Error creating firstrun.sh on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1037"/>
|
|
||||||
<source>Error writing to config.txt on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1102"/>
|
|
||||||
<source>Error creating user-data cloudinit file on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1116"/>
|
|
||||||
<source>Error creating network-config cloudinit file on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1139"/>
|
|
||||||
<source>Error writing to cmdline.txt on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="432"/>
|
|
||||||
<source>Access denied error while writing file to disk.</source>
|
<source>Access denied error while writing file to disk.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="437"/>
|
<location filename="../downloadthread.cpp" line="456"/>
|
||||||
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="444"/>
|
<location filename="../downloadthread.cpp" line="463"/>
|
||||||
<source>Error writing file to disk</source>
|
<source>Error writing file to disk</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="463"/>
|
<location filename="../downloadthread.cpp" line="482"/>
|
||||||
<source>Error downloading: %1</source>
|
<source>Error downloading: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="686"/>
|
<location filename="../downloadthread.cpp" line="705"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="757"/>
|
||||||
<source>Error writing to storage (while flushing)</source>
|
<source>Error writing to storage (while flushing)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="693"/>
|
<location filename="../downloadthread.cpp" line="712"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="764"/>
|
||||||
<source>Error writing to storage (while fsync)</source>
|
<source>Error writing to storage (while fsync)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="674"/>
|
<location filename="../downloadthread.cpp" line="693"/>
|
||||||
<source>Download corrupt. Hash does not match</source>
|
<source>Download corrupt. Hash does not match</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="114"/>
|
<location filename="../downloadthread.cpp" line="118"/>
|
||||||
|
<source>unmounting drive</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../downloadthread.cpp" line="138"/>
|
||||||
<source>opening drive</source>
|
<source>opening drive</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="300"/>
|
<location filename="../downloadthread.cpp" line="319"/>
|
||||||
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="389"/>
|
<location filename="../downloadthread.cpp" line="408"/>
|
||||||
<source>starting download</source>
|
<source>starting download</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="719"/>
|
<location filename="../downloadthread.cpp" line="747"/>
|
||||||
<source>Error writing first block (partition table)</source>
|
<source>Error writing first block (partition table)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="798"/>
|
<location filename="../downloadthread.cpp" line="832"/>
|
||||||
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -256,27 +218,27 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ImageWriter</name>
|
<name>ImageWriter</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="257"/>
|
<location filename="../imagewriter.cpp" line="248"/>
|
||||||
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="263"/>
|
<location filename="../imagewriter.cpp" line="254"/>
|
||||||
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="445"/>
|
<location filename="../imagewriter.cpp" line="442"/>
|
||||||
<source>Downloading and writing image</source>
|
<source>Downloading and writing image</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="578"/>
|
<location filename="../imagewriter.cpp" line="575"/>
|
||||||
<source>Select image</source>
|
<source>Select image</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="979"/>
|
<location filename="../imagewriter.cpp" line="864"/>
|
||||||
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -320,128 +282,128 @@
|
||||||
<context>
|
<context>
|
||||||
<name>OptionsPopup</name>
|
<name>OptionsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="79"/>
|
<location filename="../OptionsPopup.qml" line="80"/>
|
||||||
<source>Advanced options</source>
|
<source>Advanced options</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="96"/>
|
<location filename="../OptionsPopup.qml" line="97"/>
|
||||||
<source>Image customization options</source>
|
<source>Image customization options</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="104"/>
|
<location filename="../OptionsPopup.qml" line="105"/>
|
||||||
<source>for this session only</source>
|
<source>for this session only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="105"/>
|
<location filename="../OptionsPopup.qml" line="106"/>
|
||||||
<source>to always use</source>
|
<source>to always use</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="119"/>
|
<location filename="../OptionsPopup.qml" line="120"/>
|
||||||
<source>Set hostname:</source>
|
<source>Set hostname:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="138"/>
|
<location filename="../OptionsPopup.qml" line="140"/>
|
||||||
<source>Enable SSH</source>
|
<source>Enable SSH</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="160"/>
|
<location filename="../OptionsPopup.qml" line="162"/>
|
||||||
<source>Use password authentication</source>
|
<source>Use password authentication</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="170"/>
|
<location filename="../OptionsPopup.qml" line="172"/>
|
||||||
<source>Allow public-key authentication only</source>
|
<source>Allow public-key authentication only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="188"/>
|
<location filename="../OptionsPopup.qml" line="190"/>
|
||||||
<source>Set authorized_keys for '%1':</source>
|
<source>Set authorized_keys for '%1':</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="261"/>
|
<location filename="../OptionsPopup.qml" line="264"/>
|
||||||
<source>Configure wireless LAN</source>
|
<source>Configure wireless LAN</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="280"/>
|
<location filename="../OptionsPopup.qml" line="283"/>
|
||||||
<source>SSID:</source>
|
<source>SSID:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="234"/>
|
<location filename="../OptionsPopup.qml" line="237"/>
|
||||||
<location filename="../OptionsPopup.qml" line="300"/>
|
<location filename="../OptionsPopup.qml" line="303"/>
|
||||||
<source>Password:</source>
|
<source>Password:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="200"/>
|
<location filename="../OptionsPopup.qml" line="203"/>
|
||||||
<source>Set username and password</source>
|
<source>Set username and password</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="219"/>
|
<location filename="../OptionsPopup.qml" line="222"/>
|
||||||
<source>Username:</source>
|
<source>Username:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="295"/>
|
<location filename="../OptionsPopup.qml" line="298"/>
|
||||||
<source>Hidden SSID</source>
|
<source>Hidden SSID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="316"/>
|
<location filename="../OptionsPopup.qml" line="319"/>
|
||||||
<source>Show password</source>
|
<source>Show password</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="321"/>
|
<location filename="../OptionsPopup.qml" line="324"/>
|
||||||
<source>Wireless LAN country:</source>
|
<source>Wireless LAN country:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="332"/>
|
<location filename="../OptionsPopup.qml" line="335"/>
|
||||||
<source>Set locale settings</source>
|
<source>Set locale settings</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="342"/>
|
<location filename="../OptionsPopup.qml" line="345"/>
|
||||||
<source>Time zone:</source>
|
<source>Time zone:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="352"/>
|
<location filename="../OptionsPopup.qml" line="355"/>
|
||||||
<source>Keyboard layout:</source>
|
<source>Keyboard layout:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="365"/>
|
<location filename="../OptionsPopup.qml" line="368"/>
|
||||||
<source>Persistent settings</source>
|
<source>Persistent settings</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="373"/>
|
<location filename="../OptionsPopup.qml" line="376"/>
|
||||||
<source>Play sound when finished</source>
|
<source>Play sound when finished</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="377"/>
|
<location filename="../OptionsPopup.qml" line="380"/>
|
||||||
<source>Eject media when finished</source>
|
<source>Eject media when finished</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="381"/>
|
<location filename="../OptionsPopup.qml" line="384"/>
|
||||||
<source>Enable telemetry</source>
|
<source>Enable telemetry</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="394"/>
|
<location filename="../OptionsPopup.qml" line="397"/>
|
||||||
<source>SAVE</source>
|
<source>SAVE</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -457,27 +419,32 @@
|
||||||
<context>
|
<context>
|
||||||
<name>UseSavedSettingsPopup</name>
|
<name>UseSavedSettingsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="72"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="73"/>
|
||||||
<source>Warning: advanced settings set</source>
|
<source>Warning: advanced settings set</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="86"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="87"/>
|
||||||
<source>Would you like to apply the image customization settings saved earlier?</source>
|
<source>Would you like to apply the image customization settings saved earlier?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="95"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="96"/>
|
||||||
|
<source>NO</source>
|
||||||
|
<translation></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../UseSavedSettingsPopup.qml" line="106"/>
|
||||||
<source>NO, CLEAR SETTINGS</source>
|
<source>NO, CLEAR SETTINGS</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="105"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="116"/>
|
||||||
<source>YES</source>
|
<source>YES</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="115"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="126"/>
|
||||||
<source>EDIT SETTINGS</source>
|
<source>EDIT SETTINGS</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -513,7 +480,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="147"/>
|
<location filename="../main.qml" line="147"/>
|
||||||
<location filename="../main.qml" line="1038"/>
|
<location filename="../main.qml" line="1041"/>
|
||||||
<source>CHOOSE STORAGE</source>
|
<source>CHOOSE STORAGE</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -534,7 +501,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="221"/>
|
<location filename="../main.qml" line="221"/>
|
||||||
<location filename="../main.qml" line="965"/>
|
<location filename="../main.qml" line="968"/>
|
||||||
<source>Cancelling...</source>
|
<source>Cancelling...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -545,8 +512,8 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="232"/>
|
<location filename="../main.qml" line="232"/>
|
||||||
<location filename="../main.qml" line="988"/>
|
<location filename="../main.qml" line="991"/>
|
||||||
<location filename="../main.qml" line="1057"/>
|
<location filename="../main.qml" line="1060"/>
|
||||||
<source>Finalizing...</source>
|
<source>Finalizing...</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -577,7 +544,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="505"/>
|
<location filename="../main.qml" line="505"/>
|
||||||
<location filename="../main.qml" line="1022"/>
|
<location filename="../main.qml" line="1025"/>
|
||||||
<source>Erase</source>
|
<source>Erase</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -674,7 +641,7 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="968"/>
|
<location filename="../main.qml" line="971"/>
|
||||||
<source>Writing... %1%</source>
|
<source>Writing... %1%</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -684,52 +651,52 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="947"/>
|
<location filename="../main.qml" line="950"/>
|
||||||
<source>Error downloading OS list from Internet</source>
|
<source>Error downloading OS list from Internet</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="991"/>
|
<location filename="../main.qml" line="994"/>
|
||||||
<source>Verifying... %1%</source>
|
<source>Verifying... %1%</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="998"/>
|
<location filename="../main.qml" line="1001"/>
|
||||||
<source>Preparing to write... (%1)</source>
|
<source>Preparing to write... (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1014"/>
|
<location filename="../main.qml" line="1017"/>
|
||||||
<source>Error</source>
|
<source>Error</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1021"/>
|
<location filename="../main.qml" line="1024"/>
|
||||||
<source>Write Successful</source>
|
<source>Write Successful</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1023"/>
|
<location filename="../main.qml" line="1026"/>
|
||||||
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1030"/>
|
<location filename="../main.qml" line="1033"/>
|
||||||
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1098"/>
|
<location filename="../main.qml" line="1101"/>
|
||||||
<source>Error parsing os_list.json</source>
|
<source>Error parsing os_list.json</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1271"/>
|
<location filename="../main.qml" line="1274"/>
|
||||||
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1287"/>
|
<location filename="../main.qml" line="1290"/>
|
||||||
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -33,162 +33,160 @@
|
||||||
<context>
|
<context>
|
||||||
<name>DownloadThread</name>
|
<name>DownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="147"/>
|
<location filename="../downloadthread.cpp" line="166"/>
|
||||||
<source>Error running diskpart: %1</source>
|
<source>Error running diskpart: %1</source>
|
||||||
<translation>Erreur lors de l'exécution de diskpart : %1</translation>
|
<translation>Erreur lors de l'exécution de diskpart : %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="168"/>
|
<location filename="../downloadthread.cpp" line="187"/>
|
||||||
<source>Error removing existing partitions</source>
|
<source>Error removing existing partitions</source>
|
||||||
<translation>Erreur lors de la suppression des partitions existantes</translation>
|
<translation>Erreur lors de la suppression des partitions existantes</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="194"/>
|
<location filename="../downloadthread.cpp" line="213"/>
|
||||||
<source>Authentication cancelled</source>
|
<source>Authentication cancelled</source>
|
||||||
<translation>Authentification annulée</translation>
|
<translation>Authentification annulée</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="197"/>
|
<location filename="../downloadthread.cpp" line="216"/>
|
||||||
<source>Error running authopen to gain access to disk device '%1'</source>
|
<source>Error running authopen to gain access to disk device '%1'</source>
|
||||||
<translation>Erreur lors de l'exécution d'authopen pour accéder au périphérique du stockage '%1'</translation>
|
<translation>Erreur lors de l'exécution d'authopen pour accéder au périphérique du stockage '%1'</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="198"/>
|
<location filename="../downloadthread.cpp" line="217"/>
|
||||||
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="220"/>
|
<location filename="../downloadthread.cpp" line="239"/>
|
||||||
<source>Cannot open storage device '%1'.</source>
|
<source>Cannot open storage device '%1'.</source>
|
||||||
<translation>Impossible d'ouvrir le périphérique de stockage '%1'.</translation>
|
<translation>Impossible d'ouvrir le périphérique de stockage '%1'.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="262"/>
|
<location filename="../downloadthread.cpp" line="281"/>
|
||||||
<source>discarding existing data on drive</source>
|
<source>discarding existing data on drive</source>
|
||||||
<translation>suppression des données existantes sur le disque</translation>
|
<translation>suppression des données existantes sur le disque</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="282"/>
|
<location filename="../downloadthread.cpp" line="301"/>
|
||||||
<source>zeroing out first and last MB of drive</source>
|
<source>zeroing out first and last MB of drive</source>
|
||||||
<translation>mise à zéro du premier et du dernier Mo du disque</translation>
|
<translation>mise à zéro du premier et du dernier Mo du disque</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="288"/>
|
<location filename="../downloadthread.cpp" line="307"/>
|
||||||
<source>Write error while zero'ing out MBR</source>
|
<source>Write error while zero'ing out MBR</source>
|
||||||
<translation>Erreur d'écriture lors du formatage du MBR</translation>
|
<translation>Erreur d'écriture lors du formatage du MBR</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="779"/>
|
<location filename="../downloadthread.cpp" line="813"/>
|
||||||
<source>Error reading from storage.<br>SD card may be broken.</source>
|
<source>Error reading from storage.<br>SD card may be broken.</source>
|
||||||
<translation>Erreur de lecture du stockage.<br>La carte SD est peut-être défectueuse.</translation>
|
<translation>Erreur de lecture du stockage.<br>La carte SD est peut-être défectueuse.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="855"/>
|
|
||||||
<source>Waiting for FAT partition to be mounted</source>
|
<source>Waiting for FAT partition to be mounted</source>
|
||||||
<translation>En attente du montage de la partition FAT</translation>
|
<translation type="vanished">En attente du montage de la partition FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="941"/>
|
|
||||||
<source>Error mounting FAT32 partition</source>
|
<source>Error mounting FAT32 partition</source>
|
||||||
<translation>Erreur lors du montage de la partition FAT32</translation>
|
<translation type="vanished">Erreur lors du montage de la partition FAT32</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="963"/>
|
|
||||||
<source>Operating system did not mount FAT32 partition</source>
|
<source>Operating system did not mount FAT32 partition</source>
|
||||||
<translation>Le système d'exploitation n'a pas monté la partition FAT32</translation>
|
<translation type="vanished">Le système d'exploitation n'a pas monté la partition FAT32</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="996"/>
|
|
||||||
<source>Unable to customize. File '%1' does not exist.</source>
|
<source>Unable to customize. File '%1' does not exist.</source>
|
||||||
<translation>Impossible de personnaliser. Le fichier '%1' n'existe pas.</translation>
|
<translation type="vanished">Impossible de personnaliser. Le fichier '%1' n'existe pas.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1000"/>
|
<location filename="../downloadthread.cpp" line="885"/>
|
||||||
<source>Customizing image</source>
|
<source>Customizing image</source>
|
||||||
<translation>Personnalisation de l'image</translation>
|
<translation>Personnalisation de l'image</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1085"/>
|
|
||||||
<source>Error creating firstrun.sh on FAT partition</source>
|
<source>Error creating firstrun.sh on FAT partition</source>
|
||||||
<translation>Erreur lors de la création de firstrun.sh sur la partition FAT</translation>
|
<translation type="vanished">Erreur lors de la création de firstrun.sh sur la partition FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1037"/>
|
|
||||||
<source>Error writing to config.txt on FAT partition</source>
|
<source>Error writing to config.txt on FAT partition</source>
|
||||||
<translation>Erreur lors de la création de config.txt sur la partition FAT</translation>
|
<translation type="vanished">Erreur lors de la création de config.txt sur la partition FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1102"/>
|
|
||||||
<source>Error creating user-data cloudinit file on FAT partition</source>
|
<source>Error creating user-data cloudinit file on FAT partition</source>
|
||||||
<translation>Erreur lors de la création du fichier user-data cloudinit sur la partition FAT</translation>
|
<translation type="vanished">Erreur lors de la création du fichier user-data cloudinit sur la partition FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1116"/>
|
|
||||||
<source>Error creating network-config cloudinit file on FAT partition</source>
|
<source>Error creating network-config cloudinit file on FAT partition</source>
|
||||||
<translation>Erreur lors de la création du fichier network-config cloudinit sur la partition FAT</translation>
|
<translation type="vanished">Erreur lors de la création du fichier network-config cloudinit sur la partition FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1139"/>
|
|
||||||
<source>Error writing to cmdline.txt on FAT partition</source>
|
<source>Error writing to cmdline.txt on FAT partition</source>
|
||||||
<translation>Erreur lors de l'écriture de cmdline.txt sur la partition FAT</translation>
|
<translation type="vanished">Erreur lors de l'écriture de cmdline.txt sur la partition FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="432"/>
|
<location filename="../downloadthread.cpp" line="451"/>
|
||||||
<source>Access denied error while writing file to disk.</source>
|
<source>Access denied error while writing file to disk.</source>
|
||||||
<translation>Accès refusé lors de l'écriture d'un fichier sur le disque.</translation>
|
<translation>Accès refusé lors de l'écriture d'un fichier sur le disque.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="437"/>
|
<location filename="../downloadthread.cpp" line="456"/>
|
||||||
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="444"/>
|
<location filename="../downloadthread.cpp" line="463"/>
|
||||||
<source>Error writing file to disk</source>
|
<source>Error writing file to disk</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="463"/>
|
<location filename="../downloadthread.cpp" line="482"/>
|
||||||
<source>Error downloading: %1</source>
|
<source>Error downloading: %1</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="686"/>
|
<location filename="../downloadthread.cpp" line="705"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="757"/>
|
||||||
<source>Error writing to storage (while flushing)</source>
|
<source>Error writing to storage (while flushing)</source>
|
||||||
<translation>Erreur d'écriture dans le stockage (lors du formatage)</translation>
|
<translation>Erreur d'écriture dans le stockage (lors du formatage)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="693"/>
|
<location filename="../downloadthread.cpp" line="712"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="764"/>
|
||||||
<source>Error writing to storage (while fsync)</source>
|
<source>Error writing to storage (while fsync)</source>
|
||||||
<translation>Erreur d'écriture dans le stockage (pendant l'exécution de fsync)</translation>
|
<translation>Erreur d'écriture dans le stockage (pendant l'exécution de fsync)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="674"/>
|
<location filename="../downloadthread.cpp" line="693"/>
|
||||||
<source>Download corrupt. Hash does not match</source>
|
<source>Download corrupt. Hash does not match</source>
|
||||||
<translation>Téléchargement corrompu. La signature ne correspond pas</translation>
|
<translation>Téléchargement corrompu. La signature ne correspond pas</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="114"/>
|
<location filename="../downloadthread.cpp" line="118"/>
|
||||||
|
<source>unmounting drive</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../downloadthread.cpp" line="138"/>
|
||||||
<source>opening drive</source>
|
<source>opening drive</source>
|
||||||
<translation>ouverture du disque</translation>
|
<translation>ouverture du disque</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="300"/>
|
<location filename="../downloadthread.cpp" line="319"/>
|
||||||
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
||||||
<translation>Erreur d'écriture lors de la tentative de formatage de la dernière partie de la carte.<br>La carte annonce peut-être une capacité erronée (contrefaçon possible).</translation>
|
<translation>Erreur d'écriture lors de la tentative de formatage de la dernière partie de la carte.<br>La carte annonce peut-être une capacité erronée (contrefaçon possible).</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="389"/>
|
<location filename="../downloadthread.cpp" line="408"/>
|
||||||
<source>starting download</source>
|
<source>starting download</source>
|
||||||
<translation>début du téléchargement</translation>
|
<translation>début du téléchargement</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="719"/>
|
<location filename="../downloadthread.cpp" line="747"/>
|
||||||
<source>Error writing first block (partition table)</source>
|
<source>Error writing first block (partition table)</source>
|
||||||
<translation>Erreur lors de l'écriture du premier bloc (table de partition)</translation>
|
<translation>Erreur lors de l'écriture du premier bloc (table de partition)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="798"/>
|
<location filename="../downloadthread.cpp" line="832"/>
|
||||||
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
||||||
<translation>La vérification de l'écriture à échoué. Le contenu de la carte SD est différent de ce qui y a été écrit.</translation>
|
<translation>La vérification de l'écriture à échoué. Le contenu de la carte SD est différent de ce qui y a été écrit.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -256,27 +254,27 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ImageWriter</name>
|
<name>ImageWriter</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="257"/>
|
<location filename="../imagewriter.cpp" line="248"/>
|
||||||
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
||||||
<translation>La capacité de stockage n'est pas assez grande.<br>Elle doit être d'au moins %1 Go.</translation>
|
<translation>La capacité de stockage n'est pas assez grande.<br>Elle doit être d'au moins %1 Go.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="263"/>
|
<location filename="../imagewriter.cpp" line="254"/>
|
||||||
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
||||||
<translation>Le fichier source n'est pas une image disque valide.<br>La taille du fichier (d'%1 octets) n'est pas un multiple de 512 octets.</translation>
|
<translation>Le fichier source n'est pas une image disque valide.<br>La taille du fichier (d'%1 octets) n'est pas un multiple de 512 octets.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="445"/>
|
<location filename="../imagewriter.cpp" line="442"/>
|
||||||
<source>Downloading and writing image</source>
|
<source>Downloading and writing image</source>
|
||||||
<translation>Téléchargement et écriture de l'image</translation>
|
<translation>Téléchargement et écriture de l'image</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="578"/>
|
<location filename="../imagewriter.cpp" line="575"/>
|
||||||
<source>Select image</source>
|
<source>Select image</source>
|
||||||
<translation>Sélectionner l'image</translation>
|
<translation>Sélectionner l'image</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="979"/>
|
<location filename="../imagewriter.cpp" line="864"/>
|
||||||
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
||||||
<translation>Voulez-vous pré-remplir le mot de passe Wi-Fi à partir du trousseau du système ?</translation>
|
<translation>Voulez-vous pré-remplir le mot de passe Wi-Fi à partir du trousseau du système ?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -320,128 +318,128 @@
|
||||||
<context>
|
<context>
|
||||||
<name>OptionsPopup</name>
|
<name>OptionsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="79"/>
|
<location filename="../OptionsPopup.qml" line="80"/>
|
||||||
<source>Advanced options</source>
|
<source>Advanced options</source>
|
||||||
<translation>Réglages avancés</translation>
|
<translation>Réglages avancés</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="96"/>
|
<location filename="../OptionsPopup.qml" line="97"/>
|
||||||
<source>Image customization options</source>
|
<source>Image customization options</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="104"/>
|
<location filename="../OptionsPopup.qml" line="105"/>
|
||||||
<source>for this session only</source>
|
<source>for this session only</source>
|
||||||
<translation>pour cette session uniquement</translation>
|
<translation>pour cette session uniquement</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="105"/>
|
<location filename="../OptionsPopup.qml" line="106"/>
|
||||||
<source>to always use</source>
|
<source>to always use</source>
|
||||||
<translation>pour toutes les sessions</translation>
|
<translation>pour toutes les sessions</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="119"/>
|
<location filename="../OptionsPopup.qml" line="120"/>
|
||||||
<source>Set hostname:</source>
|
<source>Set hostname:</source>
|
||||||
<translation>Nom d'hôte</translation>
|
<translation>Nom d'hôte</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="138"/>
|
<location filename="../OptionsPopup.qml" line="140"/>
|
||||||
<source>Enable SSH</source>
|
<source>Enable SSH</source>
|
||||||
<translation>Activer SSH</translation>
|
<translation>Activer SSH</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="160"/>
|
<location filename="../OptionsPopup.qml" line="162"/>
|
||||||
<source>Use password authentication</source>
|
<source>Use password authentication</source>
|
||||||
<translation>Utiliser un mot de passe pour l'authentification</translation>
|
<translation>Utiliser un mot de passe pour l'authentification</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="170"/>
|
<location filename="../OptionsPopup.qml" line="172"/>
|
||||||
<source>Allow public-key authentication only</source>
|
<source>Allow public-key authentication only</source>
|
||||||
<translation>Authentification via clef publique</translation>
|
<translation>Authentification via clef publique</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="188"/>
|
<location filename="../OptionsPopup.qml" line="190"/>
|
||||||
<source>Set authorized_keys for '%1':</source>
|
<source>Set authorized_keys for '%1':</source>
|
||||||
<translation>Définir authorized_keys pour '%1' :</translation>
|
<translation>Définir authorized_keys pour '%1' :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="261"/>
|
<location filename="../OptionsPopup.qml" line="264"/>
|
||||||
<source>Configure wireless LAN</source>
|
<source>Configure wireless LAN</source>
|
||||||
<translation>Configurer le Wi-Fi</translation>
|
<translation>Configurer le Wi-Fi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="280"/>
|
<location filename="../OptionsPopup.qml" line="283"/>
|
||||||
<source>SSID:</source>
|
<source>SSID:</source>
|
||||||
<translation>SSID :</translation>
|
<translation>SSID :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="234"/>
|
<location filename="../OptionsPopup.qml" line="237"/>
|
||||||
<location filename="../OptionsPopup.qml" line="300"/>
|
<location filename="../OptionsPopup.qml" line="303"/>
|
||||||
<source>Password:</source>
|
<source>Password:</source>
|
||||||
<translation>Mot de passe :</translation>
|
<translation>Mot de passe :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="200"/>
|
<location filename="../OptionsPopup.qml" line="203"/>
|
||||||
<source>Set username and password</source>
|
<source>Set username and password</source>
|
||||||
<translation>Définir nom d'utilisateur et mot de passe</translation>
|
<translation>Définir nom d'utilisateur et mot de passe</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="219"/>
|
<location filename="../OptionsPopup.qml" line="222"/>
|
||||||
<source>Username:</source>
|
<source>Username:</source>
|
||||||
<translation>Nom d'utilisateur :</translation>
|
<translation>Nom d'utilisateur :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="295"/>
|
<location filename="../OptionsPopup.qml" line="298"/>
|
||||||
<source>Hidden SSID</source>
|
<source>Hidden SSID</source>
|
||||||
<translation>SSID caché</translation>
|
<translation>SSID caché</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="316"/>
|
<location filename="../OptionsPopup.qml" line="319"/>
|
||||||
<source>Show password</source>
|
<source>Show password</source>
|
||||||
<translation>Afficher le mot de passe</translation>
|
<translation>Afficher le mot de passe</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="321"/>
|
<location filename="../OptionsPopup.qml" line="324"/>
|
||||||
<source>Wireless LAN country:</source>
|
<source>Wireless LAN country:</source>
|
||||||
<translation>Pays Wi-Fi :</translation>
|
<translation>Pays Wi-Fi :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="332"/>
|
<location filename="../OptionsPopup.qml" line="335"/>
|
||||||
<source>Set locale settings</source>
|
<source>Set locale settings</source>
|
||||||
<translation>Définir les réglages locaux</translation>
|
<translation>Définir les réglages locaux</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="342"/>
|
<location filename="../OptionsPopup.qml" line="345"/>
|
||||||
<source>Time zone:</source>
|
<source>Time zone:</source>
|
||||||
<translation>Fuseau horaire :</translation>
|
<translation>Fuseau horaire :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="352"/>
|
<location filename="../OptionsPopup.qml" line="355"/>
|
||||||
<source>Keyboard layout:</source>
|
<source>Keyboard layout:</source>
|
||||||
<translation>Type de clavier :</translation>
|
<translation>Type de clavier :</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="365"/>
|
<location filename="../OptionsPopup.qml" line="368"/>
|
||||||
<source>Persistent settings</source>
|
<source>Persistent settings</source>
|
||||||
<translation>Réglages permanents</translation>
|
<translation>Réglages permanents</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="373"/>
|
<location filename="../OptionsPopup.qml" line="376"/>
|
||||||
<source>Play sound when finished</source>
|
<source>Play sound when finished</source>
|
||||||
<translation>Jouer un son quand terminé</translation>
|
<translation>Jouer un son quand terminé</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="377"/>
|
<location filename="../OptionsPopup.qml" line="380"/>
|
||||||
<source>Eject media when finished</source>
|
<source>Eject media when finished</source>
|
||||||
<translation>Éjecter le média quand terminé</translation>
|
<translation>Éjecter le média quand terminé</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="381"/>
|
<location filename="../OptionsPopup.qml" line="384"/>
|
||||||
<source>Enable telemetry</source>
|
<source>Enable telemetry</source>
|
||||||
<translation>Activer la télémétrie</translation>
|
<translation>Activer la télémétrie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="394"/>
|
<location filename="../OptionsPopup.qml" line="397"/>
|
||||||
<source>SAVE</source>
|
<source>SAVE</source>
|
||||||
<translation>ENREGISTRER</translation>
|
<translation>ENREGISTRER</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -457,27 +455,32 @@
|
||||||
<context>
|
<context>
|
||||||
<name>UseSavedSettingsPopup</name>
|
<name>UseSavedSettingsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="72"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="73"/>
|
||||||
<source>Warning: advanced settings set</source>
|
<source>Warning: advanced settings set</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="86"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="87"/>
|
||||||
<source>Would you like to apply the image customization settings saved earlier?</source>
|
<source>Would you like to apply the image customization settings saved earlier?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="95"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="96"/>
|
||||||
|
<source>NO</source>
|
||||||
|
<translation>NON</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../UseSavedSettingsPopup.qml" line="106"/>
|
||||||
<source>NO, CLEAR SETTINGS</source>
|
<source>NO, CLEAR SETTINGS</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="105"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="116"/>
|
||||||
<source>YES</source>
|
<source>YES</source>
|
||||||
<translation>OUI</translation>
|
<translation>OUI</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="115"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="126"/>
|
||||||
<source>EDIT SETTINGS</source>
|
<source>EDIT SETTINGS</source>
|
||||||
<translation type="unfinished">MODIFIER RÉGLAGES</translation>
|
<translation type="unfinished">MODIFIER RÉGLAGES</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -513,7 +516,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="147"/>
|
<location filename="../main.qml" line="147"/>
|
||||||
<location filename="../main.qml" line="1038"/>
|
<location filename="../main.qml" line="1041"/>
|
||||||
<source>CHOOSE STORAGE</source>
|
<source>CHOOSE STORAGE</source>
|
||||||
<translation>CHOISIR LE STOCKAGE</translation>
|
<translation>CHOISIR LE STOCKAGE</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -538,7 +541,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="221"/>
|
<location filename="../main.qml" line="221"/>
|
||||||
<location filename="../main.qml" line="965"/>
|
<location filename="../main.qml" line="968"/>
|
||||||
<source>Cancelling...</source>
|
<source>Cancelling...</source>
|
||||||
<translation>Annulation...</translation>
|
<translation>Annulation...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -549,14 +552,14 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="232"/>
|
<location filename="../main.qml" line="232"/>
|
||||||
<location filename="../main.qml" line="988"/>
|
<location filename="../main.qml" line="991"/>
|
||||||
<location filename="../main.qml" line="1057"/>
|
<location filename="../main.qml" line="1060"/>
|
||||||
<source>Finalizing...</source>
|
<source>Finalizing...</source>
|
||||||
<translation>Finalisation...</translation>
|
<translation>Finalisation...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="505"/>
|
<location filename="../main.qml" line="505"/>
|
||||||
<location filename="../main.qml" line="1022"/>
|
<location filename="../main.qml" line="1025"/>
|
||||||
<source>Erase</source>
|
<source>Erase</source>
|
||||||
<translation>Effacer</translation>
|
<translation>Effacer</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -673,7 +676,7 @@
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="998"/>
|
<location filename="../main.qml" line="1001"/>
|
||||||
<source>Preparing to write... (%1)</source>
|
<source>Preparing to write... (%1)</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -682,7 +685,7 @@
|
||||||
<translation type="vanished"><b>%1</b> a bien été écrit sur <b>%2</b></translation>
|
<translation type="vanished"><b>%1</b> a bien été écrit sur <b>%2</b></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1287"/>
|
<location filename="../main.qml" line="1290"/>
|
||||||
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -692,7 +695,7 @@
|
||||||
<translation>Attention</translation>
|
<translation>Attention</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="968"/>
|
<location filename="../main.qml" line="971"/>
|
||||||
<source>Writing... %1%</source>
|
<source>Writing... %1%</source>
|
||||||
<translation>Écriture... %1%</translation>
|
<translation>Écriture... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -702,42 +705,42 @@
|
||||||
<translation>Toutes les données sur le périphérique de stockage '%1' vont être supprimées.<br>Voulez-vous vraiment continuer ?</translation>
|
<translation>Toutes les données sur le périphérique de stockage '%1' vont être supprimées.<br>Voulez-vous vraiment continuer ?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="947"/>
|
<location filename="../main.qml" line="950"/>
|
||||||
<source>Error downloading OS list from Internet</source>
|
<source>Error downloading OS list from Internet</source>
|
||||||
<translation>Erreur lors du téléchargement de la liste des systèmes d'exploitation à partir d'Internet</translation>
|
<translation>Erreur lors du téléchargement de la liste des systèmes d'exploitation à partir d'Internet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="991"/>
|
<location filename="../main.qml" line="994"/>
|
||||||
<source>Verifying... %1%</source>
|
<source>Verifying... %1%</source>
|
||||||
<translation>Vérification... %1%</translation>
|
<translation>Vérification... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1014"/>
|
<location filename="../main.qml" line="1017"/>
|
||||||
<source>Error</source>
|
<source>Error</source>
|
||||||
<translation>Erreur</translation>
|
<translation>Erreur</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1021"/>
|
<location filename="../main.qml" line="1024"/>
|
||||||
<source>Write Successful</source>
|
<source>Write Successful</source>
|
||||||
<translation>Écriture réussie</translation>
|
<translation>Écriture réussie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1023"/>
|
<location filename="../main.qml" line="1026"/>
|
||||||
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> a bien été effacé<br><br>Vous pouvez retirer la carte SD du lecteur</translation>
|
<translation><b>%1</b> a bien été effacé<br><br>Vous pouvez retirer la carte SD du lecteur</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1030"/>
|
<location filename="../main.qml" line="1033"/>
|
||||||
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> a bien été écrit sur <b>%2</b><br><br>Vous pouvez retirer la carte SD du lecteur</translation>
|
<translation><b>%1</b> a bien été écrit sur <b>%2</b><br><br>Vous pouvez retirer la carte SD du lecteur</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1098"/>
|
<location filename="../main.qml" line="1101"/>
|
||||||
<source>Error parsing os_list.json</source>
|
<source>Error parsing os_list.json</source>
|
||||||
<translation>Erreur de lecture du fichier os_list.json</translation>
|
<translation>Erreur de lecture du fichier os_list.json</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1271"/>
|
<location filename="../main.qml" line="1274"/>
|
||||||
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
||||||
<translation>Connecter d'abord une clé USB contenant les images.<br>Les images doivent se trouver dans le dossier racine de la clé USB.</translation>
|
<translation>Connecter d'abord une clé USB contenant les images.<br>Les images doivent se trouver dans le dossier racine de la clé USB.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -33,163 +33,161 @@
|
||||||
<context>
|
<context>
|
||||||
<name>DownloadThread</name>
|
<name>DownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="147"/>
|
<location filename="../downloadthread.cpp" line="166"/>
|
||||||
<source>Error running diskpart: %1</source>
|
<source>Error running diskpart: %1</source>
|
||||||
<translation>Errore esecuzione diskpart: %1</translation>
|
<translation>Errore esecuzione diskpart: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="168"/>
|
<location filename="../downloadthread.cpp" line="187"/>
|
||||||
<source>Error removing existing partitions</source>
|
<source>Error removing existing partitions</source>
|
||||||
<translation>Errore rimozione partizioni esistenti</translation>
|
<translation>Errore rimozione partizioni esistenti</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="194"/>
|
<location filename="../downloadthread.cpp" line="213"/>
|
||||||
<source>Authentication cancelled</source>
|
<source>Authentication cancelled</source>
|
||||||
<translation>Autenticazione annullata</translation>
|
<translation>Autenticazione annullata</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="197"/>
|
<location filename="../downloadthread.cpp" line="216"/>
|
||||||
<source>Error running authopen to gain access to disk device '%1'</source>
|
<source>Error running authopen to gain access to disk device '%1'</source>
|
||||||
<translation>Errore esecuzione auhopen per ottenere accesso al dispositivo disco %1</translation>
|
<translation>Errore esecuzione auhopen per ottenere accesso al dispositivo disco %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="198"/>
|
<location filename="../downloadthread.cpp" line="217"/>
|
||||||
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
||||||
<translation>Verifica se a 'Raspberry Pi Imager' è consentito l'accesso a 'volumi rimovibili' nelle impostazioni privacy (in 'file e cartelle' o in alternativa concedi 'accesso completo al disco').</translation>
|
<translation>Verifica se a 'Raspberry Pi Imager' è consentito l'accesso a 'volumi rimovibili' nelle impostazioni privacy (in 'file e cartelle' o in alternativa concedi 'accesso completo al disco').</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="220"/>
|
<location filename="../downloadthread.cpp" line="239"/>
|
||||||
<source>Cannot open storage device '%1'.</source>
|
<source>Cannot open storage device '%1'.</source>
|
||||||
<translation>Impossibile aprire dispositivo storage '%1'.</translation>
|
<translation>Impossibile aprire dispositivo storage '%1'.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="262"/>
|
<location filename="../downloadthread.cpp" line="281"/>
|
||||||
<source>discarding existing data on drive</source>
|
<source>discarding existing data on drive</source>
|
||||||
<translation>elimina i dati esistenti nell'unità</translation>
|
<translation>elimina i dati esistenti nell'unità</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="282"/>
|
<location filename="../downloadthread.cpp" line="301"/>
|
||||||
<source>zeroing out first and last MB of drive</source>
|
<source>zeroing out first and last MB of drive</source>
|
||||||
<translation>azzera il primo e l'ultimo MB dell'unità</translation>
|
<translation>azzera il primo e l'ultimo MB dell'unità</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="288"/>
|
<location filename="../downloadthread.cpp" line="307"/>
|
||||||
<source>Write error while zero'ing out MBR</source>
|
<source>Write error while zero'ing out MBR</source>
|
||||||
<translation>Errore scrittura durante azzeramento MBR</translation>
|
<translation>Errore scrittura durante azzeramento MBR</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="779"/>
|
<location filename="../downloadthread.cpp" line="813"/>
|
||||||
<source>Error reading from storage.<br>SD card may be broken.</source>
|
<source>Error reading from storage.<br>SD card may be broken.</source>
|
||||||
<translation>Errore lettura dallo storage.<br>La scheda SD potrebbe essere danneggiata.</translation>
|
<translation>Errore lettura dallo storage.<br>La scheda SD potrebbe essere danneggiata.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="855"/>
|
|
||||||
<source>Waiting for FAT partition to be mounted</source>
|
<source>Waiting for FAT partition to be mounted</source>
|
||||||
<translation>Attesa montaggio partizione FAT</translation>
|
<translation type="vanished">Attesa montaggio partizione FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="941"/>
|
|
||||||
<source>Error mounting FAT32 partition</source>
|
<source>Error mounting FAT32 partition</source>
|
||||||
<translation>Errore montaggio partizione FAT32</translation>
|
<translation type="vanished">Errore montaggio partizione FAT32</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="963"/>
|
|
||||||
<source>Operating system did not mount FAT32 partition</source>
|
<source>Operating system did not mount FAT32 partition</source>
|
||||||
<translation>Il sistema operativo non ha montato la partizione FAT32</translation>
|
<translation type="vanished">Il sistema operativo non ha montato la partizione FAT32</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="996"/>
|
|
||||||
<source>Unable to customize. File '%1' does not exist.</source>
|
<source>Unable to customize. File '%1' does not exist.</source>
|
||||||
<translation>Impossibile personalizzare. Il file '%1' non esiste.</translation>
|
<translation type="vanished">Impossibile personalizzare. Il file '%1' non esiste.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1000"/>
|
<location filename="../downloadthread.cpp" line="885"/>
|
||||||
<source>Customizing image</source>
|
<source>Customizing image</source>
|
||||||
<translation>Personalizza immagine</translation>
|
<translation>Personalizza immagine</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1085"/>
|
|
||||||
<source>Error creating firstrun.sh on FAT partition</source>
|
<source>Error creating firstrun.sh on FAT partition</source>
|
||||||
<translation>Errore creazione firstrun.sh nella partizione FAT</translation>
|
<translation type="vanished">Errore creazione firstrun.sh nella partizione FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1037"/>
|
|
||||||
<source>Error writing to config.txt on FAT partition</source>
|
<source>Error writing to config.txt on FAT partition</source>
|
||||||
<translation>Errore scrittura in config.txt nella partizione FAT</translation>
|
<translation type="vanished">Errore scrittura in config.txt nella partizione FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1102"/>
|
|
||||||
<source>Error creating user-data cloudinit file on FAT partition</source>
|
<source>Error creating user-data cloudinit file on FAT partition</source>
|
||||||
<translation>Errore nel creare il file cloudinit dei dati utente nella partizione FAT</translation>
|
<translation type="vanished">Errore nel creare il file cloudinit dei dati utente nella partizione FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1116"/>
|
|
||||||
<source>Error creating network-config cloudinit file on FAT partition</source>
|
<source>Error creating network-config cloudinit file on FAT partition</source>
|
||||||
<translation>Errore durante la creazione del file network-config cloudinit nella partizione FAT</translation>
|
<translation type="vanished">Errore durante la creazione del file network-config cloudinit nella partizione FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1139"/>
|
|
||||||
<source>Error writing to cmdline.txt on FAT partition</source>
|
<source>Error writing to cmdline.txt on FAT partition</source>
|
||||||
<translation>Errore scrittura in cmdline.txt nella partizione FAT</translation>
|
<translation type="vanished">Errore scrittura in cmdline.txt nella partizione FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="432"/>
|
<location filename="../downloadthread.cpp" line="451"/>
|
||||||
<source>Access denied error while writing file to disk.</source>
|
<source>Access denied error while writing file to disk.</source>
|
||||||
<translation>Errore accesso negato durante la scrittura del file su disco.</translation>
|
<translation>Errore accesso negato durante la scrittura del file su disco.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="437"/>
|
<location filename="../downloadthread.cpp" line="456"/>
|
||||||
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
||||||
<translation>Sembra sia abilitato l'accesso controllato alle cartelle.
|
<translation>Sembra sia abilitato l'accesso controllato alle cartelle.
|
||||||
Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all'elenco delle app consentite e riprova.</translation>
|
Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all'elenco delle app consentite e riprova.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="444"/>
|
<location filename="../downloadthread.cpp" line="463"/>
|
||||||
<source>Error writing file to disk</source>
|
<source>Error writing file to disk</source>
|
||||||
<translation>Errore scrittura file su disco</translation>
|
<translation>Errore scrittura file su disco</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="463"/>
|
<location filename="../downloadthread.cpp" line="482"/>
|
||||||
<source>Error downloading: %1</source>
|
<source>Error downloading: %1</source>
|
||||||
<translation>Errore download: %1</translation>
|
<translation>Errore download: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="686"/>
|
<location filename="../downloadthread.cpp" line="705"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="757"/>
|
||||||
<source>Error writing to storage (while flushing)</source>
|
<source>Error writing to storage (while flushing)</source>
|
||||||
<translation>Errore scrittura nello storage (durante flushing)</translation>
|
<translation>Errore scrittura nello storage (durante flushing)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="693"/>
|
<location filename="../downloadthread.cpp" line="712"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="764"/>
|
||||||
<source>Error writing to storage (while fsync)</source>
|
<source>Error writing to storage (while fsync)</source>
|
||||||
<translation>Errore scrittura nello storage (durante fsync)</translation>
|
<translation>Errore scrittura nello storage (durante fsync)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="674"/>
|
<location filename="../downloadthread.cpp" line="693"/>
|
||||||
<source>Download corrupt. Hash does not match</source>
|
<source>Download corrupt. Hash does not match</source>
|
||||||
<translation>Download corrotto.<br>L'hash non corrisponde</translation>
|
<translation>Download corrotto.<br>L'hash non corrisponde</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="114"/>
|
<location filename="../downloadthread.cpp" line="118"/>
|
||||||
|
<source>unmounting drive</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../downloadthread.cpp" line="138"/>
|
||||||
<source>opening drive</source>
|
<source>opening drive</source>
|
||||||
<translation>apertura unità</translation>
|
<translation>apertura unità</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="300"/>
|
<location filename="../downloadthread.cpp" line="319"/>
|
||||||
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
||||||
<translation>Errore di scrittura durante il tentativo di azzerare l'ultima parte della scheda.<br>La scheda potrebbe riportare una capacità maggiore di quella reale (possibile contraffazione).</translation>
|
<translation>Errore di scrittura durante il tentativo di azzerare l'ultima parte della scheda.<br>La scheda potrebbe riportare una capacità maggiore di quella reale (possibile contraffazione).</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="389"/>
|
<location filename="../downloadthread.cpp" line="408"/>
|
||||||
<source>starting download</source>
|
<source>starting download</source>
|
||||||
<translation>avvio download</translation>
|
<translation>avvio download</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="719"/>
|
<location filename="../downloadthread.cpp" line="747"/>
|
||||||
<source>Error writing first block (partition table)</source>
|
<source>Error writing first block (partition table)</source>
|
||||||
<translation>Errore scrittura primo blocco (tabella partizione)</translation>
|
<translation>Errore scrittura primo blocco (tabella partizione)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="798"/>
|
<location filename="../downloadthread.cpp" line="832"/>
|
||||||
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
||||||
<translation>Verifica scrittura fallita.<br>Il contenuto della SD è differente da quello che vi è stato scritto.</translation>
|
<translation>Verifica scrittura fallita.<br>Il contenuto della SD è differente da quello che vi è stato scritto.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -257,27 +255,27 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
<context>
|
<context>
|
||||||
<name>ImageWriter</name>
|
<name>ImageWriter</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="257"/>
|
<location filename="../imagewriter.cpp" line="248"/>
|
||||||
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
||||||
<translation>La capacità dello storage non è sufficiente.<br>Sono necessari almeno %1 GB.</translation>
|
<translation>La capacità dello storage non è sufficiente.<br>Sono necessari almeno %1 GB.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="263"/>
|
<location filename="../imagewriter.cpp" line="254"/>
|
||||||
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
||||||
<translation>Il file sorgente non è un'immagine disco valida.<br>La dimensione file %1 non è un multiplo di 512 byte.</translation>
|
<translation>Il file sorgente non è un'immagine disco valida.<br>La dimensione file %1 non è un multiplo di 512 byte.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="445"/>
|
<location filename="../imagewriter.cpp" line="442"/>
|
||||||
<source>Downloading and writing image</source>
|
<source>Downloading and writing image</source>
|
||||||
<translation>Download e scrittura file immagine</translation>
|
<translation>Download e scrittura file immagine</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="578"/>
|
<location filename="../imagewriter.cpp" line="575"/>
|
||||||
<source>Select image</source>
|
<source>Select image</source>
|
||||||
<translation>Seleziona file immagine</translation>
|
<translation>Seleziona file immagine</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="979"/>
|
<location filename="../imagewriter.cpp" line="864"/>
|
||||||
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
||||||
<translation>Vuoi precompilare la password WiFi usando il portachiavi di sistema?</translation>
|
<translation>Vuoi precompilare la password WiFi usando il portachiavi di sistema?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -321,22 +319,22 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
<context>
|
<context>
|
||||||
<name>OptionsPopup</name>
|
<name>OptionsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="79"/>
|
<location filename="../OptionsPopup.qml" line="80"/>
|
||||||
<source>Advanced options</source>
|
<source>Advanced options</source>
|
||||||
<translation>Opzioni avanzate</translation>
|
<translation>Opzioni avanzate</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="96"/>
|
<location filename="../OptionsPopup.qml" line="97"/>
|
||||||
<source>Image customization options</source>
|
<source>Image customization options</source>
|
||||||
<translation>Opzioni personalizzazione immagine</translation>
|
<translation>Opzioni personalizzazione immagine</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="104"/>
|
<location filename="../OptionsPopup.qml" line="105"/>
|
||||||
<source>for this session only</source>
|
<source>for this session only</source>
|
||||||
<translation>solo per questa sessione</translation>
|
<translation>solo per questa sessione</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="105"/>
|
<location filename="../OptionsPopup.qml" line="106"/>
|
||||||
<source>to always use</source>
|
<source>to always use</source>
|
||||||
<translation>da usare sempre</translation>
|
<translation>da usare sempre</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -345,17 +343,17 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
<translation type="vanished">Disabilita overscan</translation>
|
<translation type="vanished">Disabilita overscan</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="119"/>
|
<location filename="../OptionsPopup.qml" line="120"/>
|
||||||
<source>Set hostname:</source>
|
<source>Set hostname:</source>
|
||||||
<translation>Imposta nome host:</translation>
|
<translation>Imposta nome host:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="138"/>
|
<location filename="../OptionsPopup.qml" line="140"/>
|
||||||
<source>Enable SSH</source>
|
<source>Enable SSH</source>
|
||||||
<translation>Abilita SSH</translation>
|
<translation>Abilita SSH</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="160"/>
|
<location filename="../OptionsPopup.qml" line="162"/>
|
||||||
<source>Use password authentication</source>
|
<source>Use password authentication</source>
|
||||||
<translation>Usa password autenticazione</translation>
|
<translation>Usa password autenticazione</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -364,7 +362,7 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
<translation type="vanished">Imposta password utente 'pi':</translation>
|
<translation type="vanished">Imposta password utente 'pi':</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="170"/>
|
<location filename="../OptionsPopup.qml" line="172"/>
|
||||||
<source>Allow public-key authentication only</source>
|
<source>Allow public-key authentication only</source>
|
||||||
<translation>Permetti solo autenticazione con chiave pubblica</translation>
|
<translation>Permetti solo autenticazione con chiave pubblica</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -373,63 +371,63 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
<translation type="vanished">Imposta authorized_key per 'pi':</translation>
|
<translation type="vanished">Imposta authorized_key per 'pi':</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="188"/>
|
<location filename="../OptionsPopup.qml" line="190"/>
|
||||||
<source>Set authorized_keys for '%1':</source>
|
<source>Set authorized_keys for '%1':</source>
|
||||||
<translation>Imposta authorized_keys per '%1':</translation>
|
<translation>Imposta authorized_keys per '%1':</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="261"/>
|
<location filename="../OptionsPopup.qml" line="264"/>
|
||||||
<source>Configure wireless LAN</source>
|
<source>Configure wireless LAN</source>
|
||||||
<translation>Configura WiFi</translation>
|
<translation>Configura WiFi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="280"/>
|
<location filename="../OptionsPopup.qml" line="283"/>
|
||||||
<source>SSID:</source>
|
<source>SSID:</source>
|
||||||
<translation>SSID:</translation>
|
<translation>SSID:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="234"/>
|
<location filename="../OptionsPopup.qml" line="237"/>
|
||||||
<location filename="../OptionsPopup.qml" line="300"/>
|
<location filename="../OptionsPopup.qml" line="303"/>
|
||||||
<source>Password:</source>
|
<source>Password:</source>
|
||||||
<translation>Password:</translation>
|
<translation>Password:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="200"/>
|
<location filename="../OptionsPopup.qml" line="203"/>
|
||||||
<source>Set username and password</source>
|
<source>Set username and password</source>
|
||||||
<translation>Imposta nome utente e password</translation>
|
<translation>Imposta nome utente e password</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="219"/>
|
<location filename="../OptionsPopup.qml" line="222"/>
|
||||||
<source>Username:</source>
|
<source>Username:</source>
|
||||||
<translation>Nome utente:</translation>
|
<translation>Nome utente:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="295"/>
|
<location filename="../OptionsPopup.qml" line="298"/>
|
||||||
<source>Hidden SSID</source>
|
<source>Hidden SSID</source>
|
||||||
<translation>SSID nascosto</translation>
|
<translation>SSID nascosto</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="316"/>
|
<location filename="../OptionsPopup.qml" line="319"/>
|
||||||
<source>Show password</source>
|
<source>Show password</source>
|
||||||
<translation>Visualizza password</translation>
|
<translation>Visualizza password</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="321"/>
|
<location filename="../OptionsPopup.qml" line="324"/>
|
||||||
<source>Wireless LAN country:</source>
|
<source>Wireless LAN country:</source>
|
||||||
<translation>Nazione WiFi:</translation>
|
<translation>Nazione WiFi:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="332"/>
|
<location filename="../OptionsPopup.qml" line="335"/>
|
||||||
<source>Set locale settings</source>
|
<source>Set locale settings</source>
|
||||||
<translation>Imposta configurazioni locali</translation>
|
<translation>Imposta configurazioni locali</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="342"/>
|
<location filename="../OptionsPopup.qml" line="345"/>
|
||||||
<source>Time zone:</source>
|
<source>Time zone:</source>
|
||||||
<translation>Fuso orario:</translation>
|
<translation>Fuso orario:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="352"/>
|
<location filename="../OptionsPopup.qml" line="355"/>
|
||||||
<source>Keyboard layout:</source>
|
<source>Keyboard layout:</source>
|
||||||
<translation>Layout tastiera:</translation>
|
<translation>Layout tastiera:</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -438,27 +436,27 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
<translation type="vanished">Salta procedura prima impostazione</translation>
|
<translation type="vanished">Salta procedura prima impostazione</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="365"/>
|
<location filename="../OptionsPopup.qml" line="368"/>
|
||||||
<source>Persistent settings</source>
|
<source>Persistent settings</source>
|
||||||
<translation>Impostazioni persistenti</translation>
|
<translation>Impostazioni persistenti</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="373"/>
|
<location filename="../OptionsPopup.qml" line="376"/>
|
||||||
<source>Play sound when finished</source>
|
<source>Play sound when finished</source>
|
||||||
<translation>Riproduci suono quando completato</translation>
|
<translation>Riproduci suono quando completato</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="377"/>
|
<location filename="../OptionsPopup.qml" line="380"/>
|
||||||
<source>Eject media when finished</source>
|
<source>Eject media when finished</source>
|
||||||
<translation>Espelli media quando completato</translation>
|
<translation>Espelli media quando completato</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="381"/>
|
<location filename="../OptionsPopup.qml" line="384"/>
|
||||||
<source>Enable telemetry</source>
|
<source>Enable telemetry</source>
|
||||||
<translation>Abilita telemetria</translation>
|
<translation>Abilita telemetria</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="394"/>
|
<location filename="../OptionsPopup.qml" line="397"/>
|
||||||
<source>SAVE</source>
|
<source>SAVE</source>
|
||||||
<translation>SALVA</translation>
|
<translation>SALVA</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -474,27 +472,32 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
<context>
|
<context>
|
||||||
<name>UseSavedSettingsPopup</name>
|
<name>UseSavedSettingsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="72"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="73"/>
|
||||||
<source>Warning: advanced settings set</source>
|
<source>Warning: advanced settings set</source>
|
||||||
<translation>Attenzione: impostazioni avanzate impostate</translation>
|
<translation>Attenzione: impostazioni avanzate impostate</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="86"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="87"/>
|
||||||
<source>Would you like to apply the image customization settings saved earlier?</source>
|
<source>Would you like to apply the image customization settings saved earlier?</source>
|
||||||
<translation>Vuoi applicare le impostazioni di personalizzazione dell'immagine salvate in precedenza?</translation>
|
<translation>Vuoi applicare le impostazioni di personalizzazione dell'immagine salvate in precedenza?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="95"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="96"/>
|
||||||
|
<source>NO</source>
|
||||||
|
<translation>NO</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../UseSavedSettingsPopup.qml" line="106"/>
|
||||||
<source>NO, CLEAR SETTINGS</source>
|
<source>NO, CLEAR SETTINGS</source>
|
||||||
<translation>NO, AZZERA IMPOSTAZIONI</translation>
|
<translation>NO, AZZERA IMPOSTAZIONI</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="105"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="116"/>
|
||||||
<source>YES</source>
|
<source>YES</source>
|
||||||
<translation>SI'</translation>
|
<translation>SI'</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="115"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="126"/>
|
||||||
<source>EDIT SETTINGS</source>
|
<source>EDIT SETTINGS</source>
|
||||||
<translation>MODIFICA IMPOSTAZIONI</translation>
|
<translation>MODIFICA IMPOSTAZIONI</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -530,7 +533,7 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="147"/>
|
<location filename="../main.qml" line="147"/>
|
||||||
<location filename="../main.qml" line="1038"/>
|
<location filename="../main.qml" line="1041"/>
|
||||||
<source>CHOOSE STORAGE</source>
|
<source>CHOOSE STORAGE</source>
|
||||||
<translation>SCEGLI SCHEDA SD</translation>
|
<translation>SCEGLI SCHEDA SD</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -555,7 +558,7 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="221"/>
|
<location filename="../main.qml" line="221"/>
|
||||||
<location filename="../main.qml" line="965"/>
|
<location filename="../main.qml" line="968"/>
|
||||||
<source>Cancelling...</source>
|
<source>Cancelling...</source>
|
||||||
<translation>Annullamento...</translation>
|
<translation>Annullamento...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -566,14 +569,14 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="232"/>
|
<location filename="../main.qml" line="232"/>
|
||||||
<location filename="../main.qml" line="988"/>
|
<location filename="../main.qml" line="991"/>
|
||||||
<location filename="../main.qml" line="1057"/>
|
<location filename="../main.qml" line="1060"/>
|
||||||
<source>Finalizing...</source>
|
<source>Finalizing...</source>
|
||||||
<translation>Finalizzazione...</translation>
|
<translation>Finalizzazione...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="505"/>
|
<location filename="../main.qml" line="505"/>
|
||||||
<location filename="../main.qml" line="1022"/>
|
<location filename="../main.qml" line="1025"/>
|
||||||
<source>Erase</source>
|
<source>Erase</source>
|
||||||
<translation>Cancella</translation>
|
<translation>Cancella</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -695,7 +698,7 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
<translation>È disponibile una nuova versione di Imager.<br>Vuoi visitare il sito web per scaricare la nuova versione?</translation>
|
<translation>È disponibile una nuova versione di Imager.<br>Vuoi visitare il sito web per scaricare la nuova versione?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="968"/>
|
<location filename="../main.qml" line="971"/>
|
||||||
<source>Writing... %1%</source>
|
<source>Writing... %1%</source>
|
||||||
<translation>Scrittura...%1</translation>
|
<translation>Scrittura...%1</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -705,32 +708,32 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
<translation>Tutti i dati esistenti in '%1' verranno eliminati.<br>Sei sicuro di voler continuare?</translation>
|
<translation>Tutti i dati esistenti in '%1' verranno eliminati.<br>Sei sicuro di voler continuare?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="947"/>
|
<location filename="../main.qml" line="950"/>
|
||||||
<source>Error downloading OS list from Internet</source>
|
<source>Error downloading OS list from Internet</source>
|
||||||
<translation>Errore durante download elenco SO da internet</translation>
|
<translation>Errore durante download elenco SO da internet</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="991"/>
|
<location filename="../main.qml" line="994"/>
|
||||||
<source>Verifying... %1%</source>
|
<source>Verifying... %1%</source>
|
||||||
<translation>Verifica...%1</translation>
|
<translation>Verifica...%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="998"/>
|
<location filename="../main.qml" line="1001"/>
|
||||||
<source>Preparing to write... (%1)</source>
|
<source>Preparing to write... (%1)</source>
|
||||||
<translation>Preparazione scrittura... (%1)</translation>
|
<translation>Preparazione scrittura... (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1014"/>
|
<location filename="../main.qml" line="1017"/>
|
||||||
<source>Error</source>
|
<source>Error</source>
|
||||||
<translation>Errore</translation>
|
<translation>Errore</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1021"/>
|
<location filename="../main.qml" line="1024"/>
|
||||||
<source>Write Successful</source>
|
<source>Write Successful</source>
|
||||||
<translation>Scrittura completata senza errori</translation>
|
<translation>Scrittura completata senza errori</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1023"/>
|
<location filename="../main.qml" line="1026"/>
|
||||||
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation>Azzeramento di <b>%1</b> completato<br><br>Ora puoi rimuovere la scheda SD dal lettore</translation>
|
<translation>Azzeramento di <b>%1</b> completato<br><br>Ora puoi rimuovere la scheda SD dal lettore</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -739,22 +742,22 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos
|
||||||
<translation type="vanished">Scrittura di <b>%1</b> in <b>%2</b>completata</translation>
|
<translation type="vanished">Scrittura di <b>%1</b> in <b>%2</b>completata</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1030"/>
|
<location filename="../main.qml" line="1033"/>
|
||||||
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation>Scrittura di <b>%1</b> in <b>%2</b>completata<br><br>Ora puoi rimuovere la scheda SD dal lettore</translation>
|
<translation>Scrittura di <b>%1</b> in <b>%2</b>completata<br><br>Ora puoi rimuovere la scheda SD dal lettore</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1098"/>
|
<location filename="../main.qml" line="1101"/>
|
||||||
<source>Error parsing os_list.json</source>
|
<source>Error parsing os_list.json</source>
|
||||||
<translation>Errore durante analisi file os_list.json</translation>
|
<translation>Errore durante analisi file os_list.json</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1271"/>
|
<location filename="../main.qml" line="1274"/>
|
||||||
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
||||||
<translation>Prima collega una chiavetta USB contenente il file immagine.<br>Il file immagine deve essere presente nella cartella principale della chiavetta USB.</translation>
|
<translation>Prima collega una chiavetta USB contenente il file immagine.<br>Il file immagine deve essere presente nella cartella principale della chiavetta USB.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1287"/>
|
<location filename="../main.qml" line="1290"/>
|
||||||
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
||||||
<translation>La scheda SD è protetta da scrittura.<br>Sposta verso l'alto l'interruttore LOCK sul lato sinistro della scheda SD e riprova.</translation>
|
<translation>La scheda SD è protetta da scrittura.<br>Sposta verso l'alto l'interruttore LOCK sul lato sinistro della scheda SD e riprova.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -33,162 +33,160 @@
|
||||||
<context>
|
<context>
|
||||||
<name>DownloadThread</name>
|
<name>DownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="147"/>
|
<location filename="../downloadthread.cpp" line="166"/>
|
||||||
<source>Error running diskpart: %1</source>
|
<source>Error running diskpart: %1</source>
|
||||||
<translation>diskpartの実行に失敗しました: %1</translation>
|
<translation>diskpartの実行に失敗しました: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="168"/>
|
<location filename="../downloadthread.cpp" line="187"/>
|
||||||
<source>Error removing existing partitions</source>
|
<source>Error removing existing partitions</source>
|
||||||
<translation>既に有るパーティションを削除する際にエラーが発生しました。</translation>
|
<translation>既に有るパーティションを削除する際にエラーが発生しました。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="194"/>
|
<location filename="../downloadthread.cpp" line="213"/>
|
||||||
<source>Authentication cancelled</source>
|
<source>Authentication cancelled</source>
|
||||||
<translation>認証がキャンセルされました</translation>
|
<translation>認証がキャンセルされました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="197"/>
|
<location filename="../downloadthread.cpp" line="216"/>
|
||||||
<source>Error running authopen to gain access to disk device '%1'</source>
|
<source>Error running authopen to gain access to disk device '%1'</source>
|
||||||
<translation>ディスク%1にアクセスするための権限を取得するためにauthopenを実行するのに失敗しました</translation>
|
<translation>ディスク%1にアクセスするための権限を取得するためにauthopenを実行するのに失敗しました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="198"/>
|
<location filename="../downloadthread.cpp" line="217"/>
|
||||||
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
||||||
<translation type="unfinished">Raspberry Pi Imagerがリムーバブルボリュームへアクセスすることがプライバシー設定(「ファイルとフォルダー」の中、またはディスクへのすべてのアクセス権限を付与する)で許可されているかを確認してください。</translation>
|
<translation type="unfinished">Raspberry Pi Imagerがリムーバブルボリュームへアクセスすることがプライバシー設定(「ファイルとフォルダー」の中、またはディスクへのすべてのアクセス権限を付与する)で許可されているかを確認してください。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="220"/>
|
<location filename="../downloadthread.cpp" line="239"/>
|
||||||
<source>Cannot open storage device '%1'.</source>
|
<source>Cannot open storage device '%1'.</source>
|
||||||
<translation>ストレージを開けませんでした。</translation>
|
<translation>ストレージを開けませんでした。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="262"/>
|
<location filename="../downloadthread.cpp" line="281"/>
|
||||||
<source>discarding existing data on drive</source>
|
<source>discarding existing data on drive</source>
|
||||||
<translation>ドライブの現存するすべてのデータを破棄します</translation>
|
<translation>ドライブの現存するすべてのデータを破棄します</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="282"/>
|
<location filename="../downloadthread.cpp" line="301"/>
|
||||||
<source>zeroing out first and last MB of drive</source>
|
<source>zeroing out first and last MB of drive</source>
|
||||||
<translation>ドライブの最初と最後のMBを削除しています</translation>
|
<translation>ドライブの最初と最後のMBを削除しています</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="288"/>
|
<location filename="../downloadthread.cpp" line="307"/>
|
||||||
<source>Write error while zero'ing out MBR</source>
|
<source>Write error while zero'ing out MBR</source>
|
||||||
<translation>MBRを削除している際にエラーが発生しました。</translation>
|
<translation>MBRを削除している際にエラーが発生しました。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="779"/>
|
<location filename="../downloadthread.cpp" line="813"/>
|
||||||
<source>Error reading from storage.<br>SD card may be broken.</source>
|
<source>Error reading from storage.<br>SD card may be broken.</source>
|
||||||
<translation>ストレージを読むのに失敗しました。SDカードが壊れている可能性があります。</translation>
|
<translation>ストレージを読むのに失敗しました。SDカードが壊れている可能性があります。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="855"/>
|
|
||||||
<source>Waiting for FAT partition to be mounted</source>
|
<source>Waiting for FAT partition to be mounted</source>
|
||||||
<translation>FATパーティションがマウントされるのを待っています</translation>
|
<translation type="vanished">FATパーティションがマウントされるのを待っています</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="941"/>
|
|
||||||
<source>Error mounting FAT32 partition</source>
|
<source>Error mounting FAT32 partition</source>
|
||||||
<translation>FAT32パーティションをマウントする際にエラーが発生しました。</translation>
|
<translation type="vanished">FAT32パーティションをマウントする際にエラーが発生しました。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="963"/>
|
|
||||||
<source>Operating system did not mount FAT32 partition</source>
|
<source>Operating system did not mount FAT32 partition</source>
|
||||||
<translation>OSがFAT32パーティションをマウントしませんでした。</translation>
|
<translation type="vanished">OSがFAT32パーティションをマウントしませんでした。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="996"/>
|
|
||||||
<source>Unable to customize. File '%1' does not exist.</source>
|
<source>Unable to customize. File '%1' does not exist.</source>
|
||||||
<translation>カスタマイズできません。%1が存在しません。</translation>
|
<translation type="vanished">カスタマイズできません。%1が存在しません。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1000"/>
|
<location filename="../downloadthread.cpp" line="885"/>
|
||||||
<source>Customizing image</source>
|
<source>Customizing image</source>
|
||||||
<translation>イメージをカスタマイズしています</translation>
|
<translation>イメージをカスタマイズしています</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1085"/>
|
|
||||||
<source>Error creating firstrun.sh on FAT partition</source>
|
<source>Error creating firstrun.sh on FAT partition</source>
|
||||||
<translation>FATパーティションにfirstrun.shを作成する際にエラーが発生しました</translation>
|
<translation type="vanished">FATパーティションにfirstrun.shを作成する際にエラーが発生しました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1037"/>
|
|
||||||
<source>Error writing to config.txt on FAT partition</source>
|
<source>Error writing to config.txt on FAT partition</source>
|
||||||
<translation>FATパーティションにconfig.txtを書き込むときにエラーが発生しました</translation>
|
<translation type="vanished">FATパーティションにconfig.txtを書き込むときにエラーが発生しました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1102"/>
|
|
||||||
<source>Error creating user-data cloudinit file on FAT partition</source>
|
<source>Error creating user-data cloudinit file on FAT partition</source>
|
||||||
<translation>FATパーティションにCloud-initのuser-dataファイル名前を作成するときにエラーが発生しました</translation>
|
<translation type="vanished">FATパーティションにCloud-initのuser-dataファイル名前を作成するときにエラーが発生しました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1116"/>
|
|
||||||
<source>Error creating network-config cloudinit file on FAT partition</source>
|
<source>Error creating network-config cloudinit file on FAT partition</source>
|
||||||
<translation>FATパーティションにCloud-initのnetwork-configファイルを作成するときにエラーが発生しました</translation>
|
<translation type="vanished">FATパーティションにCloud-initのnetwork-configファイルを作成するときにエラーが発生しました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1139"/>
|
|
||||||
<source>Error writing to cmdline.txt on FAT partition</source>
|
<source>Error writing to cmdline.txt on FAT partition</source>
|
||||||
<translation>FATパーティションにcmdline.txtを書き込む際にエラーが発生しました</translation>
|
<translation type="vanished">FATパーティションにcmdline.txtを書き込む際にエラーが発生しました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="432"/>
|
<location filename="../downloadthread.cpp" line="451"/>
|
||||||
<source>Access denied error while writing file to disk.</source>
|
<source>Access denied error while writing file to disk.</source>
|
||||||
<translation>ディスクにファイルを書き込む際にアクセスが拒否されました。</translation>
|
<translation>ディスクにファイルを書き込む際にアクセスが拒否されました。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="437"/>
|
<location filename="../downloadthread.cpp" line="456"/>
|
||||||
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
||||||
<translation>フォルダーへのアクセスが制限されています。許可されたアプリにrpi-imager.exeとfat32format.exeを入れてもう一度お試しください。</translation>
|
<translation>フォルダーへのアクセスが制限されています。許可されたアプリにrpi-imager.exeとfat32format.exeを入れてもう一度お試しください。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="444"/>
|
<location filename="../downloadthread.cpp" line="463"/>
|
||||||
<source>Error writing file to disk</source>
|
<source>Error writing file to disk</source>
|
||||||
<translation>ファイルをディスクに書き込んでいる際にエラーが発生しました</translation>
|
<translation>ファイルをディスクに書き込んでいる際にエラーが発生しました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="463"/>
|
<location filename="../downloadthread.cpp" line="482"/>
|
||||||
<source>Error downloading: %1</source>
|
<source>Error downloading: %1</source>
|
||||||
<translation>%1をダウンロードする際エラーが発生しました</translation>
|
<translation>%1をダウンロードする際エラーが発生しました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="686"/>
|
<location filename="../downloadthread.cpp" line="705"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="757"/>
|
||||||
<source>Error writing to storage (while flushing)</source>
|
<source>Error writing to storage (while flushing)</source>
|
||||||
<translation>ストレージへの書き込み中にエラーが発生しました (フラッシング中)</translation>
|
<translation>ストレージへの書き込み中にエラーが発生しました (フラッシング中)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="693"/>
|
<location filename="../downloadthread.cpp" line="712"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="764"/>
|
||||||
<source>Error writing to storage (while fsync)</source>
|
<source>Error writing to storage (while fsync)</source>
|
||||||
<translation>ストレージへの書き込み中にエラーが発生しました(fsync中)</translation>
|
<translation>ストレージへの書き込み中にエラーが発生しました(fsync中)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="674"/>
|
<location filename="../downloadthread.cpp" line="693"/>
|
||||||
<source>Download corrupt. Hash does not match</source>
|
<source>Download corrupt. Hash does not match</source>
|
||||||
<translation>ダウンロードに失敗しました。ハッシュ値が一致していません。</translation>
|
<translation>ダウンロードに失敗しました。ハッシュ値が一致していません。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="114"/>
|
<location filename="../downloadthread.cpp" line="118"/>
|
||||||
|
<source>unmounting drive</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../downloadthread.cpp" line="138"/>
|
||||||
<source>opening drive</source>
|
<source>opening drive</source>
|
||||||
<translation>デバイスを開いています</translation>
|
<translation>デバイスを開いています</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="300"/>
|
<location filename="../downloadthread.cpp" line="319"/>
|
||||||
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
||||||
<translation>カードの最後のパートを0で書き込む際書き込みエラーが発生しました。カードが示している容量と実際のカードの容量が違う可能性があります。</translation>
|
<translation>カードの最後のパートを0で書き込む際書き込みエラーが発生しました。カードが示している容量と実際のカードの容量が違う可能性があります。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="389"/>
|
<location filename="../downloadthread.cpp" line="408"/>
|
||||||
<source>starting download</source>
|
<source>starting download</source>
|
||||||
<translation>ダウンロードを開始中</translation>
|
<translation>ダウンロードを開始中</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="719"/>
|
<location filename="../downloadthread.cpp" line="747"/>
|
||||||
<source>Error writing first block (partition table)</source>
|
<source>Error writing first block (partition table)</source>
|
||||||
<translation>最初のブロック(パーティションテーブル)を書き込み中にエラーが発生しました</translation>
|
<translation>最初のブロック(パーティションテーブル)を書き込み中にエラーが発生しました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="798"/>
|
<location filename="../downloadthread.cpp" line="832"/>
|
||||||
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
||||||
<translation>確認中にエラーが発生しました。書き込んだはずのデータが実際にSDカードに記録されたデータと一致していません。</translation>
|
<translation>確認中にエラーが発生しました。書き込んだはずのデータが実際にSDカードに記録されたデータと一致していません。</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -256,27 +254,27 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ImageWriter</name>
|
<name>ImageWriter</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="257"/>
|
<location filename="../imagewriter.cpp" line="248"/>
|
||||||
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
||||||
<translation>ストレージの容量が足りません。少なくとも%1GBは必要です。</translation>
|
<translation>ストレージの容量が足りません。少なくとも%1GBは必要です。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="263"/>
|
<location filename="../imagewriter.cpp" line="254"/>
|
||||||
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
||||||
<translation>入力されたファイルは適切なディスクイメージファイルではありません。ファイルサイズの%1は512バイトの倍数ではありません。</translation>
|
<translation>入力されたファイルは適切なディスクイメージファイルではありません。ファイルサイズの%1は512バイトの倍数ではありません。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="445"/>
|
<location filename="../imagewriter.cpp" line="442"/>
|
||||||
<source>Downloading and writing image</source>
|
<source>Downloading and writing image</source>
|
||||||
<translation>イメージをダウンロードして書き込んでいます</translation>
|
<translation>イメージをダウンロードして書き込んでいます</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="578"/>
|
<location filename="../imagewriter.cpp" line="575"/>
|
||||||
<source>Select image</source>
|
<source>Select image</source>
|
||||||
<translation>イメージを選ぶ</translation>
|
<translation>イメージを選ぶ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="979"/>
|
<location filename="../imagewriter.cpp" line="864"/>
|
||||||
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
||||||
<translation>Wifiのパスワードをシステムのキーチェーンから読み取って設定しますか?</translation>
|
<translation>Wifiのパスワードをシステムのキーチェーンから読み取って設定しますか?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -320,22 +318,22 @@
|
||||||
<context>
|
<context>
|
||||||
<name>OptionsPopup</name>
|
<name>OptionsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="79"/>
|
<location filename="../OptionsPopup.qml" line="80"/>
|
||||||
<source>Advanced options</source>
|
<source>Advanced options</source>
|
||||||
<translation>詳細な設定</translation>
|
<translation>詳細な設定</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="96"/>
|
<location filename="../OptionsPopup.qml" line="97"/>
|
||||||
<source>Image customization options</source>
|
<source>Image customization options</source>
|
||||||
<translation>カスタマイズオプション</translation>
|
<translation>カスタマイズオプション</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="104"/>
|
<location filename="../OptionsPopup.qml" line="105"/>
|
||||||
<source>for this session only</source>
|
<source>for this session only</source>
|
||||||
<translation>このセッションでのみ有効にする</translation>
|
<translation>このセッションでのみ有効にする</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="105"/>
|
<location filename="../OptionsPopup.qml" line="106"/>
|
||||||
<source>to always use</source>
|
<source>to always use</source>
|
||||||
<translation>いつも使う設定にする</translation>
|
<translation>いつも使う設定にする</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -344,83 +342,83 @@
|
||||||
<translation type="vanished">オーバースキャンを無効化する</translation>
|
<translation type="vanished">オーバースキャンを無効化する</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="119"/>
|
<location filename="../OptionsPopup.qml" line="120"/>
|
||||||
<source>Set hostname:</source>
|
<source>Set hostname:</source>
|
||||||
<translation>ホスト名:</translation>
|
<translation>ホスト名:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="138"/>
|
<location filename="../OptionsPopup.qml" line="140"/>
|
||||||
<source>Enable SSH</source>
|
<source>Enable SSH</source>
|
||||||
<translation>SSHを有効化する</translation>
|
<translation>SSHを有効化する</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="160"/>
|
<location filename="../OptionsPopup.qml" line="162"/>
|
||||||
<source>Use password authentication</source>
|
<source>Use password authentication</source>
|
||||||
<translation>パスワード認証を使う</translation>
|
<translation>パスワード認証を使う</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="170"/>
|
<location filename="../OptionsPopup.qml" line="172"/>
|
||||||
<source>Allow public-key authentication only</source>
|
<source>Allow public-key authentication only</source>
|
||||||
<translation>公開鍵認証のみを許可する</translation>
|
<translation>公開鍵認証のみを許可する</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="188"/>
|
<location filename="../OptionsPopup.qml" line="190"/>
|
||||||
<source>Set authorized_keys for '%1':</source>
|
<source>Set authorized_keys for '%1':</source>
|
||||||
<translation>ユーザー%1のためのauthorized_keys</translation>
|
<translation>ユーザー%1のためのauthorized_keys</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="261"/>
|
<location filename="../OptionsPopup.qml" line="264"/>
|
||||||
<source>Configure wireless LAN</source>
|
<source>Configure wireless LAN</source>
|
||||||
<translation>Wi-Fiを設定する</translation>
|
<translation>Wi-Fiを設定する</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="280"/>
|
<location filename="../OptionsPopup.qml" line="283"/>
|
||||||
<source>SSID:</source>
|
<source>SSID:</source>
|
||||||
<translation>SSID:</translation>
|
<translation>SSID:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="234"/>
|
<location filename="../OptionsPopup.qml" line="237"/>
|
||||||
<location filename="../OptionsPopup.qml" line="300"/>
|
<location filename="../OptionsPopup.qml" line="303"/>
|
||||||
<source>Password:</source>
|
<source>Password:</source>
|
||||||
<translation>パスワード:</translation>
|
<translation>パスワード:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="200"/>
|
<location filename="../OptionsPopup.qml" line="203"/>
|
||||||
<source>Set username and password</source>
|
<source>Set username and password</source>
|
||||||
<translation>ユーザー名とパスワードを設定する</translation>
|
<translation>ユーザー名とパスワードを設定する</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="219"/>
|
<location filename="../OptionsPopup.qml" line="222"/>
|
||||||
<source>Username:</source>
|
<source>Username:</source>
|
||||||
<translation>ユーザー名</translation>
|
<translation>ユーザー名</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="295"/>
|
<location filename="../OptionsPopup.qml" line="298"/>
|
||||||
<source>Hidden SSID</source>
|
<source>Hidden SSID</source>
|
||||||
<translation>ステルスSSID</translation>
|
<translation>ステルスSSID</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="316"/>
|
<location filename="../OptionsPopup.qml" line="319"/>
|
||||||
<source>Show password</source>
|
<source>Show password</source>
|
||||||
<translation>パスワードを見る</translation>
|
<translation>パスワードを見る</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="321"/>
|
<location filename="../OptionsPopup.qml" line="324"/>
|
||||||
<source>Wireless LAN country:</source>
|
<source>Wireless LAN country:</source>
|
||||||
<translation>Wifiを使う国:</translation>
|
<translation>Wifiを使う国:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="332"/>
|
<location filename="../OptionsPopup.qml" line="335"/>
|
||||||
<source>Set locale settings</source>
|
<source>Set locale settings</source>
|
||||||
<translation>ロケール設定をする</translation>
|
<translation>ロケール設定をする</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="342"/>
|
<location filename="../OptionsPopup.qml" line="345"/>
|
||||||
<source>Time zone:</source>
|
<source>Time zone:</source>
|
||||||
<translation>タイムゾーン:</translation>
|
<translation>タイムゾーン:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="352"/>
|
<location filename="../OptionsPopup.qml" line="355"/>
|
||||||
<source>Keyboard layout:</source>
|
<source>Keyboard layout:</source>
|
||||||
<translation>キーボードレイアウト:</translation>
|
<translation>キーボードレイアウト:</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -429,27 +427,27 @@
|
||||||
<translation type="vanished">最初のセットアップウィザートをスキップする</translation>
|
<translation type="vanished">最初のセットアップウィザートをスキップする</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="365"/>
|
<location filename="../OptionsPopup.qml" line="368"/>
|
||||||
<source>Persistent settings</source>
|
<source>Persistent settings</source>
|
||||||
<translation>永続的な設定</translation>
|
<translation>永続的な設定</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="373"/>
|
<location filename="../OptionsPopup.qml" line="376"/>
|
||||||
<source>Play sound when finished</source>
|
<source>Play sound when finished</source>
|
||||||
<translation>終わったときに音を鳴らす</translation>
|
<translation>終わったときに音を鳴らす</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="377"/>
|
<location filename="../OptionsPopup.qml" line="380"/>
|
||||||
<source>Eject media when finished</source>
|
<source>Eject media when finished</source>
|
||||||
<translation>終わったときにメディアを取り出す</translation>
|
<translation>終わったときにメディアを取り出す</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="381"/>
|
<location filename="../OptionsPopup.qml" line="384"/>
|
||||||
<source>Enable telemetry</source>
|
<source>Enable telemetry</source>
|
||||||
<translation type="unfinished">テレメトリーを有効化する</translation>
|
<translation type="unfinished">テレメトリーを有効化する</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="394"/>
|
<location filename="../OptionsPopup.qml" line="397"/>
|
||||||
<source>SAVE</source>
|
<source>SAVE</source>
|
||||||
<translation>保存</translation>
|
<translation>保存</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -465,27 +463,32 @@
|
||||||
<context>
|
<context>
|
||||||
<name>UseSavedSettingsPopup</name>
|
<name>UseSavedSettingsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="72"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="73"/>
|
||||||
<source>Warning: advanced settings set</source>
|
<source>Warning: advanced settings set</source>
|
||||||
<translation>警告: 詳細な設定が設定されています</translation>
|
<translation>警告: 詳細な設定が設定されています</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="86"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="87"/>
|
||||||
<source>Would you like to apply the image customization settings saved earlier?</source>
|
<source>Would you like to apply the image customization settings saved earlier?</source>
|
||||||
<translation>カスタマイズを適用しますか?</translation>
|
<translation>カスタマイズを適用しますか?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="95"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="96"/>
|
||||||
|
<source>NO</source>
|
||||||
|
<translation type="unfinished">いいえ</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../UseSavedSettingsPopup.qml" line="106"/>
|
||||||
<source>NO, CLEAR SETTINGS</source>
|
<source>NO, CLEAR SETTINGS</source>
|
||||||
<translation>いいえ、設定をクリアする</translation>
|
<translation>いいえ、設定をクリアする</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="105"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="116"/>
|
||||||
<source>YES</source>
|
<source>YES</source>
|
||||||
<translation>はい</translation>
|
<translation>はい</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="115"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="126"/>
|
||||||
<source>EDIT SETTINGS</source>
|
<source>EDIT SETTINGS</source>
|
||||||
<translation>設定を編集する</translation>
|
<translation>設定を編集する</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -521,7 +524,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="147"/>
|
<location filename="../main.qml" line="147"/>
|
||||||
<location filename="../main.qml" line="1038"/>
|
<location filename="../main.qml" line="1041"/>
|
||||||
<source>CHOOSE STORAGE</source>
|
<source>CHOOSE STORAGE</source>
|
||||||
<translation>ストレージを選ぶ</translation>
|
<translation>ストレージを選ぶ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -542,7 +545,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="221"/>
|
<location filename="../main.qml" line="221"/>
|
||||||
<location filename="../main.qml" line="965"/>
|
<location filename="../main.qml" line="968"/>
|
||||||
<source>Cancelling...</source>
|
<source>Cancelling...</source>
|
||||||
<translation>キャンセル中です...</translation>
|
<translation>キャンセル中です...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -553,8 +556,8 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="232"/>
|
<location filename="../main.qml" line="232"/>
|
||||||
<location filename="../main.qml" line="988"/>
|
<location filename="../main.qml" line="991"/>
|
||||||
<location filename="../main.qml" line="1057"/>
|
<location filename="../main.qml" line="1060"/>
|
||||||
<source>Finalizing...</source>
|
<source>Finalizing...</source>
|
||||||
<translation>最終処理をしています...</translation>
|
<translation>最終処理をしています...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -585,7 +588,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="505"/>
|
<location filename="../main.qml" line="505"/>
|
||||||
<location filename="../main.qml" line="1022"/>
|
<location filename="../main.qml" line="1025"/>
|
||||||
<source>Erase</source>
|
<source>Erase</source>
|
||||||
<translation>削除</translation>
|
<translation>削除</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -682,7 +685,7 @@
|
||||||
<translation>新しいバージョンのImagerがあります。<br>ダウンロードするためにウェブサイトに行きますか?</translation>
|
<translation>新しいバージョンのImagerがあります。<br>ダウンロードするためにウェブサイトに行きますか?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="968"/>
|
<location filename="../main.qml" line="971"/>
|
||||||
<source>Writing... %1%</source>
|
<source>Writing... %1%</source>
|
||||||
<translation>書き込み中... %1%</translation>
|
<translation>書き込み中... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -692,32 +695,32 @@
|
||||||
<translation>%1に存在するすべてのデータは完全に削除されます。本当に続けますか?</translation>
|
<translation>%1に存在するすべてのデータは完全に削除されます。本当に続けますか?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="947"/>
|
<location filename="../main.qml" line="950"/>
|
||||||
<source>Error downloading OS list from Internet</source>
|
<source>Error downloading OS list from Internet</source>
|
||||||
<translation>OSのリストをダウンロードする際にエラーが発生しました。</translation>
|
<translation>OSのリストをダウンロードする際にエラーが発生しました。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="991"/>
|
<location filename="../main.qml" line="994"/>
|
||||||
<source>Verifying... %1%</source>
|
<source>Verifying... %1%</source>
|
||||||
<translation>確認中... %1%</translation>
|
<translation>確認中... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="998"/>
|
<location filename="../main.qml" line="1001"/>
|
||||||
<source>Preparing to write... (%1)</source>
|
<source>Preparing to write... (%1)</source>
|
||||||
<translation>書き込み準備中... (%1)</translation>
|
<translation>書き込み準備中... (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1014"/>
|
<location filename="../main.qml" line="1017"/>
|
||||||
<source>Error</source>
|
<source>Error</source>
|
||||||
<translation>エラー</translation>
|
<translation>エラー</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1021"/>
|
<location filename="../main.qml" line="1024"/>
|
||||||
<source>Write Successful</source>
|
<source>Write Successful</source>
|
||||||
<translation>書き込みが正常に終了しました</translation>
|
<translation>書き込みが正常に終了しました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1023"/>
|
<location filename="../main.qml" line="1026"/>
|
||||||
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b%gt;%1</b> は削除されました。<br><bt>SDカードをSDカードリーダーから取り出しても良いです。</translation>
|
<translation><b%gt;%1</b> は削除されました。<br><bt>SDカードをSDカードリーダーから取り出しても良いです。</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -726,22 +729,22 @@
|
||||||
<translation type="vanished"><b>%1</b> は<b>%2</b>に書き込まれました。</translation>
|
<translation type="vanished"><b>%1</b> は<b>%2</b>に書き込まれました。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1030"/>
|
<location filename="../main.qml" line="1033"/>
|
||||||
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> は<b>%2</b>に書き込まれました。<br><br>SDカードをSDカードリーダーから取り出しても良いです。</translation>
|
<translation><b>%1</b> は<b>%2</b>に書き込まれました。<br><br>SDカードをSDカードリーダーから取り出しても良いです。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1098"/>
|
<location filename="../main.qml" line="1101"/>
|
||||||
<source>Error parsing os_list.json</source>
|
<source>Error parsing os_list.json</source>
|
||||||
<translation>os_list.jsonの処理中にエラーが発生しました</translation>
|
<translation>os_list.jsonの処理中にエラーが発生しました</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1271"/>
|
<location filename="../main.qml" line="1274"/>
|
||||||
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
||||||
<translation>最初にイメージファイルがあるUSBメモリを接続してください。<br>イメージファイルはUSBメモリの一番上(ルートフォルダー)に入れてください。</translation>
|
<translation>最初にイメージファイルがあるUSBメモリを接続してください。<br>イメージファイルはUSBメモリの一番上(ルートフォルダー)に入れてください。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1287"/>
|
<location filename="../main.qml" line="1290"/>
|
||||||
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
||||||
<translation>SDカードは書き込みが制限されています。<br>カードの左上にあるロックスイッチを上げてロックを解除し、もう一度お試しください。</translation>
|
<translation>SDカードは書き込みが制限されています。<br>カードの左上にあるロックスイッチを上げてロックを解除し、もう一度お試しください。</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -33,162 +33,160 @@
|
||||||
<context>
|
<context>
|
||||||
<name>DownloadThread</name>
|
<name>DownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="147"/>
|
<location filename="../downloadthread.cpp" line="166"/>
|
||||||
<source>Error running diskpart: %1</source>
|
<source>Error running diskpart: %1</source>
|
||||||
<translation>디스크 파트를 실행하는 동안 오류 발생 : %1</translation>
|
<translation>디스크 파트를 실행하는 동안 오류 발생 : %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="168"/>
|
<location filename="../downloadthread.cpp" line="187"/>
|
||||||
<source>Error removing existing partitions</source>
|
<source>Error removing existing partitions</source>
|
||||||
<translation>기존 파티션 제거 오류</translation>
|
<translation>기존 파티션 제거 오류</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="194"/>
|
<location filename="../downloadthread.cpp" line="213"/>
|
||||||
<source>Authentication cancelled</source>
|
<source>Authentication cancelled</source>
|
||||||
<translation>인증 취소됨</translation>
|
<translation>인증 취소됨</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="197"/>
|
<location filename="../downloadthread.cpp" line="216"/>
|
||||||
<source>Error running authopen to gain access to disk device '%1'</source>
|
<source>Error running authopen to gain access to disk device '%1'</source>
|
||||||
<translation>디스크 디바이스에 대한 액세스 권한을 얻기 위해 authopen을 실행하는 중 오류 발생 '%1'</translation>
|
<translation>디스크 디바이스에 대한 액세스 권한을 얻기 위해 authopen을 실행하는 중 오류 발생 '%1'</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="198"/>
|
<location filename="../downloadthread.cpp" line="217"/>
|
||||||
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
||||||
<translation>'Raspberry Pi Imager'가 개인 정보 설정('파일 및 폴더'에서 또는 '전체 디스크 액세스'를 부여)에서 '제거 가능한 볼륨'에 액세스할 수 있는지 확인하세요.</translation>
|
<translation>'Raspberry Pi Imager'가 개인 정보 설정('파일 및 폴더'에서 또는 '전체 디스크 액세스'를 부여)에서 '제거 가능한 볼륨'에 액세스할 수 있는지 확인하세요.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="220"/>
|
<location filename="../downloadthread.cpp" line="239"/>
|
||||||
<source>Cannot open storage device '%1'.</source>
|
<source>Cannot open storage device '%1'.</source>
|
||||||
<translation>저장 장치를 열 수 없습니다 '%1'.</translation>
|
<translation>저장 장치를 열 수 없습니다 '%1'.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="262"/>
|
<location filename="../downloadthread.cpp" line="281"/>
|
||||||
<source>discarding existing data on drive</source>
|
<source>discarding existing data on drive</source>
|
||||||
<translation>드라이브의 기존 데이터 삭제</translation>
|
<translation>드라이브의 기존 데이터 삭제</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="282"/>
|
<location filename="../downloadthread.cpp" line="301"/>
|
||||||
<source>zeroing out first and last MB of drive</source>
|
<source>zeroing out first and last MB of drive</source>
|
||||||
<translation>드라이브의 처음과 마지막 MB를 비웁니다.</translation>
|
<translation>드라이브의 처음과 마지막 MB를 비웁니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="288"/>
|
<location filename="../downloadthread.cpp" line="307"/>
|
||||||
<source>Write error while zero'ing out MBR</source>
|
<source>Write error while zero'ing out MBR</source>
|
||||||
<translation>MBR을 zero'ing out 하는 동안 쓰기 오류 발생 </translation>
|
<translation>MBR을 zero'ing out 하는 동안 쓰기 오류 발생 </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="779"/>
|
<location filename="../downloadthread.cpp" line="813"/>
|
||||||
<source>Error reading from storage.<br>SD card may be broken.</source>
|
<source>Error reading from storage.<br>SD card may be broken.</source>
|
||||||
<translation>저장소에서 읽는 동안 오류가 발생했습니다.<br>SD 카드가 고장 났을 수 있습니다.</translation>
|
<translation>저장소에서 읽는 동안 오류가 발생했습니다.<br>SD 카드가 고장 났을 수 있습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="855"/>
|
|
||||||
<source>Waiting for FAT partition to be mounted</source>
|
<source>Waiting for FAT partition to be mounted</source>
|
||||||
<translation>FAT 파티션이 마운트되기를 기다리는 중</translation>
|
<translation type="vanished">FAT 파티션이 마운트되기를 기다리는 중</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="941"/>
|
|
||||||
<source>Error mounting FAT32 partition</source>
|
<source>Error mounting FAT32 partition</source>
|
||||||
<translation>FAT32 파티션 마운트 오류</translation>
|
<translation type="vanished">FAT32 파티션 마운트 오류</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="963"/>
|
|
||||||
<source>Operating system did not mount FAT32 partition</source>
|
<source>Operating system did not mount FAT32 partition</source>
|
||||||
<translation>운영 체제 FAT32 파티션이 마운트되지 않았습니다.</translation>
|
<translation type="vanished">운영 체제 FAT32 파티션이 마운트되지 않았습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="996"/>
|
|
||||||
<source>Unable to customize. File '%1' does not exist.</source>
|
<source>Unable to customize. File '%1' does not exist.</source>
|
||||||
<translation>지정할 수 없습니다. 파일이 '%1' 존재하지 않습니다.</translation>
|
<translation type="vanished">지정할 수 없습니다. 파일이 '%1' 존재하지 않습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1000"/>
|
<location filename="../downloadthread.cpp" line="885"/>
|
||||||
<source>Customizing image</source>
|
<source>Customizing image</source>
|
||||||
<translation>이미지 사용자 정의</translation>
|
<translation>이미지 사용자 정의</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1085"/>
|
|
||||||
<source>Error creating firstrun.sh on FAT partition</source>
|
<source>Error creating firstrun.sh on FAT partition</source>
|
||||||
<translation>FAT 파티션에 firstrun.sh을 만드는 동안 오류 발생</translation>
|
<translation type="vanished">FAT 파티션에 firstrun.sh을 만드는 동안 오류 발생</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1037"/>
|
|
||||||
<source>Error writing to config.txt on FAT partition</source>
|
<source>Error writing to config.txt on FAT partition</source>
|
||||||
<translation>FAT 파티션에 config.txt 쓰던 중 오류 발생</translation>
|
<translation type="vanished">FAT 파티션에 config.txt 쓰던 중 오류 발생</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1102"/>
|
|
||||||
<source>Error creating user-data cloudinit file on FAT partition</source>
|
<source>Error creating user-data cloudinit file on FAT partition</source>
|
||||||
<translation>FAT 파티션에 사용자 데이터 cloudinit 파일을 만드는 중 오류 발생</translation>
|
<translation type="vanished">FAT 파티션에 사용자 데이터 cloudinit 파일을 만드는 중 오류 발생</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1116"/>
|
|
||||||
<source>Error creating network-config cloudinit file on FAT partition</source>
|
<source>Error creating network-config cloudinit file on FAT partition</source>
|
||||||
<translation>FAT 파티션에 네트워크 구성 cloudinit 파일을 생성하는 중 오류 발생</translation>
|
<translation type="vanished">FAT 파티션에 네트워크 구성 cloudinit 파일을 생성하는 중 오류 발생</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1139"/>
|
|
||||||
<source>Error writing to cmdline.txt on FAT partition</source>
|
<source>Error writing to cmdline.txt on FAT partition</source>
|
||||||
<translation>FAT 파티션에 cmdline.txt 쓰던 중 오류 발생</translation>
|
<translation type="vanished">FAT 파티션에 cmdline.txt 쓰던 중 오류 발생</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="432"/>
|
<location filename="../downloadthread.cpp" line="451"/>
|
||||||
<source>Access denied error while writing file to disk.</source>
|
<source>Access denied error while writing file to disk.</source>
|
||||||
<translation>디스크에 파일을 쓰는 동안 액세스 거부 오류가 발생했습니다.</translation>
|
<translation>디스크에 파일을 쓰는 동안 액세스 거부 오류가 발생했습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="437"/>
|
<location filename="../downloadthread.cpp" line="456"/>
|
||||||
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
||||||
<translation>제어된 폴더 액세스가 설정된 것 같습니다. rpi-imager.exe 및 fat32format.exe를 허용된 앱 리스트에서 추가하고 다시 시도하십시오.</translation>
|
<translation>제어된 폴더 액세스가 설정된 것 같습니다. rpi-imager.exe 및 fat32format.exe를 허용된 앱 리스트에서 추가하고 다시 시도하십시오.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="444"/>
|
<location filename="../downloadthread.cpp" line="463"/>
|
||||||
<source>Error writing file to disk</source>
|
<source>Error writing file to disk</source>
|
||||||
<translation>디스크에 파일 쓰기 오류</translation>
|
<translation>디스크에 파일 쓰기 오류</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="463"/>
|
<location filename="../downloadthread.cpp" line="482"/>
|
||||||
<source>Error downloading: %1</source>
|
<source>Error downloading: %1</source>
|
||||||
<translation>다운로드 중 오류: %1</translation>
|
<translation>다운로드 중 오류: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="686"/>
|
<location filename="../downloadthread.cpp" line="705"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="757"/>
|
||||||
<source>Error writing to storage (while flushing)</source>
|
<source>Error writing to storage (while flushing)</source>
|
||||||
<translation>저장소에 쓰는 중 오류 발생(flushing..)</translation>
|
<translation>저장소에 쓰는 중 오류 발생(flushing..)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="693"/>
|
<location filename="../downloadthread.cpp" line="712"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="764"/>
|
||||||
<source>Error writing to storage (while fsync)</source>
|
<source>Error writing to storage (while fsync)</source>
|
||||||
<translation>스토리지에 쓰는 중 오류 발생(fsync..)</translation>
|
<translation>스토리지에 쓰는 중 오류 발생(fsync..)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="674"/>
|
<location filename="../downloadthread.cpp" line="693"/>
|
||||||
<source>Download corrupt. Hash does not match</source>
|
<source>Download corrupt. Hash does not match</source>
|
||||||
<translation>다운로드가 손상되었습니다. 해시가 일치하지 않습니다.</translation>
|
<translation>다운로드가 손상되었습니다. 해시가 일치하지 않습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="114"/>
|
<location filename="../downloadthread.cpp" line="118"/>
|
||||||
|
<source>unmounting drive</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../downloadthread.cpp" line="138"/>
|
||||||
<source>opening drive</source>
|
<source>opening drive</source>
|
||||||
<translation>드라이브 열기</translation>
|
<translation>드라이브 열기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="300"/>
|
<location filename="../downloadthread.cpp" line="319"/>
|
||||||
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
||||||
<translation>SD card의 마지막 부분을 비워내는 동안 오류가 발생했습니다.<br>카드가 잘못된 용량을 표기하고 있을 수 있습니다(위조 품목).</translation>
|
<translation>SD card의 마지막 부분을 비워내는 동안 오류가 발생했습니다.<br>카드가 잘못된 용량을 표기하고 있을 수 있습니다(위조 품목).</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="389"/>
|
<location filename="../downloadthread.cpp" line="408"/>
|
||||||
<source>starting download</source>
|
<source>starting download</source>
|
||||||
<translation>다운로드 시작</translation>
|
<translation>다운로드 시작</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="719"/>
|
<location filename="../downloadthread.cpp" line="747"/>
|
||||||
<source>Error writing first block (partition table)</source>
|
<source>Error writing first block (partition table)</source>
|
||||||
<translation>첫 번째 블록을 쓰는 중 오류 발생 (파티션 테이블)</translation>
|
<translation>첫 번째 블록을 쓰는 중 오류 발생 (파티션 테이블)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="798"/>
|
<location filename="../downloadthread.cpp" line="832"/>
|
||||||
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
||||||
<translation>쓰기를 확인하지 못했습니다. SD카드 내용과 쓰인 내용이 다릅니다.</translation>
|
<translation>쓰기를 확인하지 못했습니다. SD카드 내용과 쓰인 내용이 다릅니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -256,27 +254,27 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ImageWriter</name>
|
<name>ImageWriter</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="257"/>
|
<location filename="../imagewriter.cpp" line="248"/>
|
||||||
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
||||||
<translation>저장소 공간이 충분하지 않습니다.<br>최소 %1 GB 이상이어야 합니다.</translation>
|
<translation>저장소 공간이 충분하지 않습니다.<br>최소 %1 GB 이상이어야 합니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="263"/>
|
<location filename="../imagewriter.cpp" line="254"/>
|
||||||
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
||||||
<translation>입력 파일이 올바른 디스크 이미지가 아닙니다.<br>파일사이즈 %1 바이트가 512바이트의 배수가 아닙니다.</translation>
|
<translation>입력 파일이 올바른 디스크 이미지가 아닙니다.<br>파일사이즈 %1 바이트가 512바이트의 배수가 아닙니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="445"/>
|
<location filename="../imagewriter.cpp" line="442"/>
|
||||||
<source>Downloading and writing image</source>
|
<source>Downloading and writing image</source>
|
||||||
<translation>이미지 다운로드 및 쓰기</translation>
|
<translation>이미지 다운로드 및 쓰기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="578"/>
|
<location filename="../imagewriter.cpp" line="575"/>
|
||||||
<source>Select image</source>
|
<source>Select image</source>
|
||||||
<translation>이미지 선택하기</translation>
|
<translation>이미지 선택하기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="979"/>
|
<location filename="../imagewriter.cpp" line="864"/>
|
||||||
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
||||||
<translation>wifi password를 미리 입력하시겠습니까?</translation>
|
<translation>wifi password를 미리 입력하시겠습니까?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -320,22 +318,22 @@
|
||||||
<context>
|
<context>
|
||||||
<name>OptionsPopup</name>
|
<name>OptionsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="79"/>
|
<location filename="../OptionsPopup.qml" line="80"/>
|
||||||
<source>Advanced options</source>
|
<source>Advanced options</source>
|
||||||
<translation>고급 옵션</translation>
|
<translation>고급 옵션</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="96"/>
|
<location filename="../OptionsPopup.qml" line="97"/>
|
||||||
<source>Image customization options</source>
|
<source>Image customization options</source>
|
||||||
<translation>이미지 사용자 정의 옵션</translation>
|
<translation>이미지 사용자 정의 옵션</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="104"/>
|
<location filename="../OptionsPopup.qml" line="105"/>
|
||||||
<source>for this session only</source>
|
<source>for this session only</source>
|
||||||
<translation>이 세션에 한하여</translation>
|
<translation>이 세션에 한하여</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="105"/>
|
<location filename="../OptionsPopup.qml" line="106"/>
|
||||||
<source>to always use</source>
|
<source>to always use</source>
|
||||||
<translation>항상 사용</translation>
|
<translation>항상 사용</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -344,83 +342,83 @@
|
||||||
<translation type="vanished">overscan 사용 안 함</translation>
|
<translation type="vanished">overscan 사용 안 함</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="119"/>
|
<location filename="../OptionsPopup.qml" line="120"/>
|
||||||
<source>Set hostname:</source>
|
<source>Set hostname:</source>
|
||||||
<translation>hostname 설정:</translation>
|
<translation>hostname 설정:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="138"/>
|
<location filename="../OptionsPopup.qml" line="140"/>
|
||||||
<source>Enable SSH</source>
|
<source>Enable SSH</source>
|
||||||
<translation>SSH 사용</translation>
|
<translation>SSH 사용</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="160"/>
|
<location filename="../OptionsPopup.qml" line="162"/>
|
||||||
<source>Use password authentication</source>
|
<source>Use password authentication</source>
|
||||||
<translation>비밀번호 인증 사용</translation>
|
<translation>비밀번호 인증 사용</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="170"/>
|
<location filename="../OptionsPopup.qml" line="172"/>
|
||||||
<source>Allow public-key authentication only</source>
|
<source>Allow public-key authentication only</source>
|
||||||
<translation>공개 키만 인증 허용</translation>
|
<translation>공개 키만 인증 허용</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="188"/>
|
<location filename="../OptionsPopup.qml" line="190"/>
|
||||||
<source>Set authorized_keys for '%1':</source>
|
<source>Set authorized_keys for '%1':</source>
|
||||||
<translation>'%1' 인증키 설정:</translation>
|
<translation>'%1' 인증키 설정:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="261"/>
|
<location filename="../OptionsPopup.qml" line="264"/>
|
||||||
<source>Configure wireless LAN</source>
|
<source>Configure wireless LAN</source>
|
||||||
<translation>무선 LAN 설정</translation>
|
<translation>무선 LAN 설정</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="280"/>
|
<location filename="../OptionsPopup.qml" line="283"/>
|
||||||
<source>SSID:</source>
|
<source>SSID:</source>
|
||||||
<translation>SSID:</translation>
|
<translation>SSID:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="234"/>
|
<location filename="../OptionsPopup.qml" line="237"/>
|
||||||
<location filename="../OptionsPopup.qml" line="300"/>
|
<location filename="../OptionsPopup.qml" line="303"/>
|
||||||
<source>Password:</source>
|
<source>Password:</source>
|
||||||
<translation>비밀번호:</translation>
|
<translation>비밀번호:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="200"/>
|
<location filename="../OptionsPopup.qml" line="203"/>
|
||||||
<source>Set username and password</source>
|
<source>Set username and password</source>
|
||||||
<translation>사용자 이름 및 비밀번호 설정</translation>
|
<translation>사용자 이름 및 비밀번호 설정</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="219"/>
|
<location filename="../OptionsPopup.qml" line="222"/>
|
||||||
<source>Username:</source>
|
<source>Username:</source>
|
||||||
<translation>사용자 이름:</translation>
|
<translation>사용자 이름:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="295"/>
|
<location filename="../OptionsPopup.qml" line="298"/>
|
||||||
<source>Hidden SSID</source>
|
<source>Hidden SSID</source>
|
||||||
<translation>숨겨진 SSID</translation>
|
<translation>숨겨진 SSID</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="316"/>
|
<location filename="../OptionsPopup.qml" line="319"/>
|
||||||
<source>Show password</source>
|
<source>Show password</source>
|
||||||
<translation>비밀번호 표시</translation>
|
<translation>비밀번호 표시</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="321"/>
|
<location filename="../OptionsPopup.qml" line="324"/>
|
||||||
<source>Wireless LAN country:</source>
|
<source>Wireless LAN country:</source>
|
||||||
<translation>무선 LAN 국가:</translation>
|
<translation>무선 LAN 국가:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="332"/>
|
<location filename="../OptionsPopup.qml" line="335"/>
|
||||||
<source>Set locale settings</source>
|
<source>Set locale settings</source>
|
||||||
<translation>로케일 설정 지정</translation>
|
<translation>로케일 설정 지정</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="342"/>
|
<location filename="../OptionsPopup.qml" line="345"/>
|
||||||
<source>Time zone:</source>
|
<source>Time zone:</source>
|
||||||
<translation>시간대:</translation>
|
<translation>시간대:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="352"/>
|
<location filename="../OptionsPopup.qml" line="355"/>
|
||||||
<source>Keyboard layout:</source>
|
<source>Keyboard layout:</source>
|
||||||
<translation>키보드 레이아웃:</translation>
|
<translation>키보드 레이아웃:</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -429,27 +427,27 @@
|
||||||
<translation type="vanished">초기 실행 마법사 건너뛰기</translation>
|
<translation type="vanished">초기 실행 마법사 건너뛰기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="365"/>
|
<location filename="../OptionsPopup.qml" line="368"/>
|
||||||
<source>Persistent settings</source>
|
<source>Persistent settings</source>
|
||||||
<translation>영구적으로 설정</translation>
|
<translation>영구적으로 설정</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="373"/>
|
<location filename="../OptionsPopup.qml" line="376"/>
|
||||||
<source>Play sound when finished</source>
|
<source>Play sound when finished</source>
|
||||||
<translation>완료되면 효과음으로 알림</translation>
|
<translation>완료되면 효과음으로 알림</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="377"/>
|
<location filename="../OptionsPopup.qml" line="380"/>
|
||||||
<source>Eject media when finished</source>
|
<source>Eject media when finished</source>
|
||||||
<translation>완료되면 미디어 꺼내기</translation>
|
<translation>완료되면 미디어 꺼내기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="381"/>
|
<location filename="../OptionsPopup.qml" line="384"/>
|
||||||
<source>Enable telemetry</source>
|
<source>Enable telemetry</source>
|
||||||
<translation>이미지 다운로드 통계 관하여 정보 수집 허용</translation>
|
<translation>이미지 다운로드 통계 관하여 정보 수집 허용</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="394"/>
|
<location filename="../OptionsPopup.qml" line="397"/>
|
||||||
<source>SAVE</source>
|
<source>SAVE</source>
|
||||||
<translation>저장</translation>
|
<translation>저장</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -465,27 +463,32 @@
|
||||||
<context>
|
<context>
|
||||||
<name>UseSavedSettingsPopup</name>
|
<name>UseSavedSettingsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="72"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="73"/>
|
||||||
<source>Warning: advanced settings set</source>
|
<source>Warning: advanced settings set</source>
|
||||||
<translation>경고: 고급 설정이 설정됨</translation>
|
<translation>경고: 고급 설정이 설정됨</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="86"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="87"/>
|
||||||
<source>Would you like to apply the image customization settings saved earlier?</source>
|
<source>Would you like to apply the image customization settings saved earlier?</source>
|
||||||
<translation>이전에 저장한 이미지 사용자 지정 설정을 적용하시겠습니까?</translation>
|
<translation>이전에 저장한 이미지 사용자 지정 설정을 적용하시겠습니까?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="95"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="96"/>
|
||||||
|
<source>NO</source>
|
||||||
|
<translation>아니요</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../UseSavedSettingsPopup.qml" line="106"/>
|
||||||
<source>NO, CLEAR SETTINGS</source>
|
<source>NO, CLEAR SETTINGS</source>
|
||||||
<translation>아니요, 설정 지우기</translation>
|
<translation>아니요, 설정 지우기</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="105"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="116"/>
|
||||||
<source>YES</source>
|
<source>YES</source>
|
||||||
<translation>예</translation>
|
<translation>예</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="115"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="126"/>
|
||||||
<source>EDIT SETTINGS</source>
|
<source>EDIT SETTINGS</source>
|
||||||
<translation>설정을 편집하기</translation>
|
<translation>설정을 편집하기</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -521,7 +524,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="147"/>
|
<location filename="../main.qml" line="147"/>
|
||||||
<location filename="../main.qml" line="1038"/>
|
<location filename="../main.qml" line="1041"/>
|
||||||
<source>CHOOSE STORAGE</source>
|
<source>CHOOSE STORAGE</source>
|
||||||
<translation>저장소 선택</translation>
|
<translation>저장소 선택</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -542,7 +545,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="221"/>
|
<location filename="../main.qml" line="221"/>
|
||||||
<location filename="../main.qml" line="965"/>
|
<location filename="../main.qml" line="968"/>
|
||||||
<source>Cancelling...</source>
|
<source>Cancelling...</source>
|
||||||
<translation>취소 하는 중...</translation>
|
<translation>취소 하는 중...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -553,8 +556,8 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="232"/>
|
<location filename="../main.qml" line="232"/>
|
||||||
<location filename="../main.qml" line="988"/>
|
<location filename="../main.qml" line="991"/>
|
||||||
<location filename="../main.qml" line="1057"/>
|
<location filename="../main.qml" line="1060"/>
|
||||||
<source>Finalizing...</source>
|
<source>Finalizing...</source>
|
||||||
<translation>마무리 중...</translation>
|
<translation>마무리 중...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -585,7 +588,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="505"/>
|
<location filename="../main.qml" line="505"/>
|
||||||
<location filename="../main.qml" line="1022"/>
|
<location filename="../main.qml" line="1025"/>
|
||||||
<source>Erase</source>
|
<source>Erase</source>
|
||||||
<translation>삭제</translation>
|
<translation>삭제</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -682,7 +685,7 @@
|
||||||
<translation>Raspberry Pi Imager의 최신 버전을 사용할 수 있습니다.<br>다운받기 위해 웹사이트를 방문하시겠습니까??</translation>
|
<translation>Raspberry Pi Imager의 최신 버전을 사용할 수 있습니다.<br>다운받기 위해 웹사이트를 방문하시겠습니까??</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="968"/>
|
<location filename="../main.qml" line="971"/>
|
||||||
<source>Writing... %1%</source>
|
<source>Writing... %1%</source>
|
||||||
<translation>쓰는 중... %1%</translation>
|
<translation>쓰는 중... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -692,32 +695,32 @@
|
||||||
<translation>'%1'에 존재하는 모든 데이터가 지워집니다.<br>계속하시겠습니까?</translation>
|
<translation>'%1'에 존재하는 모든 데이터가 지워집니다.<br>계속하시겠습니까?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="947"/>
|
<location filename="../main.qml" line="950"/>
|
||||||
<source>Error downloading OS list from Internet</source>
|
<source>Error downloading OS list from Internet</source>
|
||||||
<translation>인터넷에서 OS 목록을 다운로드하는 중 오류 발생</translation>
|
<translation>인터넷에서 OS 목록을 다운로드하는 중 오류 발생</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="991"/>
|
<location filename="../main.qml" line="994"/>
|
||||||
<source>Verifying... %1%</source>
|
<source>Verifying... %1%</source>
|
||||||
<translation>확인 중... %1%</translation>
|
<translation>확인 중... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="998"/>
|
<location filename="../main.qml" line="1001"/>
|
||||||
<source>Preparing to write... (%1)</source>
|
<source>Preparing to write... (%1)</source>
|
||||||
<translation>쓰기 준비 중... (%1)</translation>
|
<translation>쓰기 준비 중... (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1014"/>
|
<location filename="../main.qml" line="1017"/>
|
||||||
<source>Error</source>
|
<source>Error</source>
|
||||||
<translation>오류</translation>
|
<translation>오류</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1021"/>
|
<location filename="../main.qml" line="1024"/>
|
||||||
<source>Write Successful</source>
|
<source>Write Successful</source>
|
||||||
<translation>쓰기 완료</translation>
|
<translation>쓰기 완료</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1023"/>
|
<location filename="../main.qml" line="1026"/>
|
||||||
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> 가 지워졌습니다.<br><br>이제 SD card를 제거할 수 있습니다.</translation>
|
<translation><b>%1</b> 가 지워졌습니다.<br><br>이제 SD card를 제거할 수 있습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -726,22 +729,22 @@
|
||||||
<translation type="vanished"><b>%1</b>가 <b>%2</b>에 쓰여졌습니다.</translation>
|
<translation type="vanished"><b>%1</b>가 <b>%2</b>에 쓰여졌습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1030"/>
|
<location filename="../main.qml" line="1033"/>
|
||||||
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b>가 <b>%2</b><br><br>에 쓰여졌습니다. 이제 SD card를 제거할 수 있습니다.</translation>
|
<translation><b>%1</b>가 <b>%2</b><br><br>에 쓰여졌습니다. 이제 SD card를 제거할 수 있습니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1098"/>
|
<location filename="../main.qml" line="1101"/>
|
||||||
<source>Error parsing os_list.json</source>
|
<source>Error parsing os_list.json</source>
|
||||||
<translation>구문 분석 오류 os_list.json</translation>
|
<translation>구문 분석 오류 os_list.json</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1271"/>
|
<location filename="../main.qml" line="1274"/>
|
||||||
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
||||||
<translation>먼저 이미지가 들어 있는 USB를 연결합니다.<br>이미지는 USB 루트 폴더에 있어야 합니다.</translation>
|
<translation>먼저 이미지가 들어 있는 USB를 연결합니다.<br>이미지는 USB 루트 폴더에 있어야 합니다.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1287"/>
|
<location filename="../main.qml" line="1290"/>
|
||||||
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
||||||
<translation>쓰기 금지된 SD card<br>카드 왼쪽에 있는 잠금 스위치를 위쪽으로 누른 후 다시 시도하십시오.</translation>
|
<translation>쓰기 금지된 SD card<br>카드 왼쪽에 있는 잠금 스위치를 위쪽으로 누른 후 다시 시도하십시오.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -33,162 +33,160 @@
|
||||||
<context>
|
<context>
|
||||||
<name>DownloadThread</name>
|
<name>DownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="147"/>
|
<location filename="../downloadthread.cpp" line="166"/>
|
||||||
<source>Error running diskpart: %1</source>
|
<source>Error running diskpart: %1</source>
|
||||||
<translation>Fout bij uitvoeren diskpart: %1</translation>
|
<translation>Fout bij uitvoeren diskpart: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="168"/>
|
<location filename="../downloadthread.cpp" line="187"/>
|
||||||
<source>Error removing existing partitions</source>
|
<source>Error removing existing partitions</source>
|
||||||
<translation>Fout bij verwijderen bestaande partities</translation>
|
<translation>Fout bij verwijderen bestaande partities</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="194"/>
|
<location filename="../downloadthread.cpp" line="213"/>
|
||||||
<source>Authentication cancelled</source>
|
<source>Authentication cancelled</source>
|
||||||
<translation>Authenticatie geannuleerd</translation>
|
<translation>Authenticatie geannuleerd</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="197"/>
|
<location filename="../downloadthread.cpp" line="216"/>
|
||||||
<source>Error running authopen to gain access to disk device '%1'</source>
|
<source>Error running authopen to gain access to disk device '%1'</source>
|
||||||
<translation>Fout bij uitvoeren authopen: '%1'</translation>
|
<translation>Fout bij uitvoeren authopen: '%1'</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="198"/>
|
<location filename="../downloadthread.cpp" line="217"/>
|
||||||
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
||||||
<translation>Gelieve te controlleren of 'Raspberry Pi Imager' toegang heeft tot 'verwijderbare volumes' in de privacy instellingen (onder 'bestanden en mappen' of anders via 'volledige schijftoegang').</translation>
|
<translation>Gelieve te controlleren of 'Raspberry Pi Imager' toegang heeft tot 'verwijderbare volumes' in de privacy instellingen (onder 'bestanden en mappen' of anders via 'volledige schijftoegang').</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="220"/>
|
<location filename="../downloadthread.cpp" line="239"/>
|
||||||
<source>Cannot open storage device '%1'.</source>
|
<source>Cannot open storage device '%1'.</source>
|
||||||
<translation>Fout bij openen opslagapparaat '%1'.</translation>
|
<translation>Fout bij openen opslagapparaat '%1'.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="262"/>
|
<location filename="../downloadthread.cpp" line="281"/>
|
||||||
<source>discarding existing data on drive</source>
|
<source>discarding existing data on drive</source>
|
||||||
<translation>wissen bestaande gegevens</translation>
|
<translation>wissen bestaande gegevens</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="282"/>
|
<location filename="../downloadthread.cpp" line="301"/>
|
||||||
<source>zeroing out first and last MB of drive</source>
|
<source>zeroing out first and last MB of drive</source>
|
||||||
<translation>wissen eerste en laatste MB van opslag</translation>
|
<translation>wissen eerste en laatste MB van opslag</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="288"/>
|
<location filename="../downloadthread.cpp" line="307"/>
|
||||||
<source>Write error while zero'ing out MBR</source>
|
<source>Write error while zero'ing out MBR</source>
|
||||||
<translation>Fout bij wissen MBR</translation>
|
<translation>Fout bij wissen MBR</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="779"/>
|
<location filename="../downloadthread.cpp" line="813"/>
|
||||||
<source>Error reading from storage.<br>SD card may be broken.</source>
|
<source>Error reading from storage.<br>SD card may be broken.</source>
|
||||||
<translation>Fout bij lezen van SD kaart.<br>Kaart is mogelijk defect.</translation>
|
<translation>Fout bij lezen van SD kaart.<br>Kaart is mogelijk defect.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="855"/>
|
|
||||||
<source>Waiting for FAT partition to be mounted</source>
|
<source>Waiting for FAT partition to be mounted</source>
|
||||||
<translation>Wachten op mounten FAT partitie</translation>
|
<translation type="vanished">Wachten op mounten FAT partitie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="941"/>
|
|
||||||
<source>Error mounting FAT32 partition</source>
|
<source>Error mounting FAT32 partition</source>
|
||||||
<translation>Fout bij mounten FAT32 partitie</translation>
|
<translation type="vanished">Fout bij mounten FAT32 partitie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="963"/>
|
|
||||||
<source>Operating system did not mount FAT32 partition</source>
|
<source>Operating system did not mount FAT32 partition</source>
|
||||||
<translation>Besturingssysteem heeft FAT32 partitie niet gemount</translation>
|
<translation type="vanished">Besturingssysteem heeft FAT32 partitie niet gemount</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="996"/>
|
|
||||||
<source>Unable to customize. File '%1' does not exist.</source>
|
<source>Unable to customize. File '%1' does not exist.</source>
|
||||||
<translation>Fout bij aanpassen besturingssysteem. Bestand '%1' bestaat niet.</translation>
|
<translation type="vanished">Fout bij aanpassen besturingssysteem. Bestand '%1' bestaat niet.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1000"/>
|
<location filename="../downloadthread.cpp" line="885"/>
|
||||||
<source>Customizing image</source>
|
<source>Customizing image</source>
|
||||||
<translation>Bezig met aanpassen besturingssysteem</translation>
|
<translation>Bezig met aanpassen besturingssysteem</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1085"/>
|
|
||||||
<source>Error creating firstrun.sh on FAT partition</source>
|
<source>Error creating firstrun.sh on FAT partition</source>
|
||||||
<translation>Fout bij het aanmaken van firstrun.sh op FAT partitie</translation>
|
<translation type="vanished">Fout bij het aanmaken van firstrun.sh op FAT partitie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1037"/>
|
|
||||||
<source>Error writing to config.txt on FAT partition</source>
|
<source>Error writing to config.txt on FAT partition</source>
|
||||||
<translation>Fout bij schrijven naar config.txt op FAT partitie</translation>
|
<translation type="vanished">Fout bij schrijven naar config.txt op FAT partitie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1102"/>
|
|
||||||
<source>Error creating user-data cloudinit file on FAT partition</source>
|
<source>Error creating user-data cloudinit file on FAT partition</source>
|
||||||
<translation>Fout bij aanmaken user-data cloudinit bestand op FAT partitie</translation>
|
<translation type="vanished">Fout bij aanmaken user-data cloudinit bestand op FAT partitie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1116"/>
|
|
||||||
<source>Error creating network-config cloudinit file on FAT partition</source>
|
<source>Error creating network-config cloudinit file on FAT partition</source>
|
||||||
<translation>Fout bij aanmaken network-config cloudinit bestand op FAT paritie</translation>
|
<translation type="vanished">Fout bij aanmaken network-config cloudinit bestand op FAT paritie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1139"/>
|
|
||||||
<source>Error writing to cmdline.txt on FAT partition</source>
|
<source>Error writing to cmdline.txt on FAT partition</source>
|
||||||
<translation>Fout bij schrijven cmdline.txt op FAT partitie</translation>
|
<translation type="vanished">Fout bij schrijven cmdline.txt op FAT partitie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="432"/>
|
<location filename="../downloadthread.cpp" line="451"/>
|
||||||
<source>Access denied error while writing file to disk.</source>
|
<source>Access denied error while writing file to disk.</source>
|
||||||
<translation>Toegang geweigerd bij het schrijven naar opslag.</translation>
|
<translation>Toegang geweigerd bij het schrijven naar opslag.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="437"/>
|
<location filename="../downloadthread.cpp" line="456"/>
|
||||||
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
||||||
<translation>Controller Folder Access lijkt aan te staan. Gelieve zowel rpi-imager.exe als fat32format.exe toe te voegen aan de lijst met uitsluitingen en het nogmaals te proberen.</translation>
|
<translation>Controller Folder Access lijkt aan te staan. Gelieve zowel rpi-imager.exe als fat32format.exe toe te voegen aan de lijst met uitsluitingen en het nogmaals te proberen.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="444"/>
|
<location filename="../downloadthread.cpp" line="463"/>
|
||||||
<source>Error writing file to disk</source>
|
<source>Error writing file to disk</source>
|
||||||
<translation>Fout bij schrijven naar opslag</translation>
|
<translation>Fout bij schrijven naar opslag</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="463"/>
|
<location filename="../downloadthread.cpp" line="482"/>
|
||||||
<source>Error downloading: %1</source>
|
<source>Error downloading: %1</source>
|
||||||
<translation>Fout bij downloaden: %1</translation>
|
<translation>Fout bij downloaden: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="686"/>
|
<location filename="../downloadthread.cpp" line="705"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="757"/>
|
||||||
<source>Error writing to storage (while flushing)</source>
|
<source>Error writing to storage (while flushing)</source>
|
||||||
<translation>Fout bij schrijven naar opslag (tijdens flushen)</translation>
|
<translation>Fout bij schrijven naar opslag (tijdens flushen)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="693"/>
|
<location filename="../downloadthread.cpp" line="712"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="764"/>
|
||||||
<source>Error writing to storage (while fsync)</source>
|
<source>Error writing to storage (while fsync)</source>
|
||||||
<translation>Fout bij schrijven naar opslag (tijdens fsync)</translation>
|
<translation>Fout bij schrijven naar opslag (tijdens fsync)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="674"/>
|
<location filename="../downloadthread.cpp" line="693"/>
|
||||||
<source>Download corrupt. Hash does not match</source>
|
<source>Download corrupt. Hash does not match</source>
|
||||||
<translation>Download corrupt. Hash komt niet overeen</translation>
|
<translation>Download corrupt. Hash komt niet overeen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="114"/>
|
<location filename="../downloadthread.cpp" line="118"/>
|
||||||
|
<source>unmounting drive</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../downloadthread.cpp" line="138"/>
|
||||||
<source>opening drive</source>
|
<source>opening drive</source>
|
||||||
<translation>openen van opslag</translation>
|
<translation>openen van opslag</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="300"/>
|
<location filename="../downloadthread.cpp" line="319"/>
|
||||||
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
||||||
<translation>Fout bij wissen laatste deel van de SD kaart.<br>Kaart geeft mogelijk onjuiste capaciteit aan (mogelijk counterfeit).</translation>
|
<translation>Fout bij wissen laatste deel van de SD kaart.<br>Kaart geeft mogelijk onjuiste capaciteit aan (mogelijk counterfeit).</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="389"/>
|
<location filename="../downloadthread.cpp" line="408"/>
|
||||||
<source>starting download</source>
|
<source>starting download</source>
|
||||||
<translation>beginnen met downloaden</translation>
|
<translation>beginnen met downloaden</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="719"/>
|
<location filename="../downloadthread.cpp" line="747"/>
|
||||||
<source>Error writing first block (partition table)</source>
|
<source>Error writing first block (partition table)</source>
|
||||||
<translation>Fout bij schrijven naar eerste deel van kaart (partitie tabel)</translation>
|
<translation>Fout bij schrijven naar eerste deel van kaart (partitie tabel)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="798"/>
|
<location filename="../downloadthread.cpp" line="832"/>
|
||||||
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
||||||
<translation>Verificatie mislukt. De gegevens die op de SD kaart staan wijken af van wat er naar geschreven is.</translation>
|
<translation>Verificatie mislukt. De gegevens die op de SD kaart staan wijken af van wat er naar geschreven is.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -256,27 +254,27 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ImageWriter</name>
|
<name>ImageWriter</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="257"/>
|
<location filename="../imagewriter.cpp" line="248"/>
|
||||||
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
||||||
<translation>Opslagcapaciteit niet groot genoeg.<br>Deze dient minimaal %1 GB te zijn.</translation>
|
<translation>Opslagcapaciteit niet groot genoeg.<br>Deze dient minimaal %1 GB te zijn.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="263"/>
|
<location filename="../imagewriter.cpp" line="254"/>
|
||||||
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
||||||
<translation>Invoerbestand is geen disk image.<br>Bestandsgrootte %1 bytes is geen veelvoud van 512 bytes.</translation>
|
<translation>Invoerbestand is geen disk image.<br>Bestandsgrootte %1 bytes is geen veelvoud van 512 bytes.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="445"/>
|
<location filename="../imagewriter.cpp" line="442"/>
|
||||||
<source>Downloading and writing image</source>
|
<source>Downloading and writing image</source>
|
||||||
<translation>Downloaden en schrijven van image</translation>
|
<translation>Downloaden en schrijven van image</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="578"/>
|
<location filename="../imagewriter.cpp" line="575"/>
|
||||||
<source>Select image</source>
|
<source>Select image</source>
|
||||||
<translation>Selecteer image</translation>
|
<translation>Selecteer image</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="979"/>
|
<location filename="../imagewriter.cpp" line="864"/>
|
||||||
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
||||||
<translation>Wilt u het wifi wachtwoord van het systeem overnemen?</translation>
|
<translation>Wilt u het wifi wachtwoord van het systeem overnemen?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -320,22 +318,22 @@
|
||||||
<context>
|
<context>
|
||||||
<name>OptionsPopup</name>
|
<name>OptionsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="79"/>
|
<location filename="../OptionsPopup.qml" line="80"/>
|
||||||
<source>Advanced options</source>
|
<source>Advanced options</source>
|
||||||
<translation>Geavanceerde instellingen</translation>
|
<translation>Geavanceerde instellingen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="96"/>
|
<location filename="../OptionsPopup.qml" line="97"/>
|
||||||
<source>Image customization options</source>
|
<source>Image customization options</source>
|
||||||
<translation>Image instellingen</translation>
|
<translation>Image instellingen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="104"/>
|
<location filename="../OptionsPopup.qml" line="105"/>
|
||||||
<source>for this session only</source>
|
<source>for this session only</source>
|
||||||
<translation>alleen voor deze sessie</translation>
|
<translation>alleen voor deze sessie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="105"/>
|
<location filename="../OptionsPopup.qml" line="106"/>
|
||||||
<source>to always use</source>
|
<source>to always use</source>
|
||||||
<translation>om altijd te gebruiken</translation>
|
<translation>om altijd te gebruiken</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -344,12 +342,12 @@
|
||||||
<translation type="vanished">Overscan uitschakelen</translation>
|
<translation type="vanished">Overscan uitschakelen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="119"/>
|
<location filename="../OptionsPopup.qml" line="120"/>
|
||||||
<source>Set hostname:</source>
|
<source>Set hostname:</source>
|
||||||
<translation>Hostnaam:</translation>
|
<translation>Hostnaam:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="138"/>
|
<location filename="../OptionsPopup.qml" line="140"/>
|
||||||
<source>Enable SSH</source>
|
<source>Enable SSH</source>
|
||||||
<translation>SSH inschakelen</translation>
|
<translation>SSH inschakelen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -358,12 +356,12 @@
|
||||||
<translation type="vanished">Gebruikersnaam:</translation>
|
<translation type="vanished">Gebruikersnaam:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="160"/>
|
<location filename="../OptionsPopup.qml" line="162"/>
|
||||||
<source>Use password authentication</source>
|
<source>Use password authentication</source>
|
||||||
<translation>Gebruik wachtwoord authenticatie</translation>
|
<translation>Gebruik wachtwoord authenticatie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="170"/>
|
<location filename="../OptionsPopup.qml" line="172"/>
|
||||||
<source>Allow public-key authentication only</source>
|
<source>Allow public-key authentication only</source>
|
||||||
<translation>Gebruik uitsluitend public-key authenticatie</translation>
|
<translation>Gebruik uitsluitend public-key authenticatie</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -372,63 +370,63 @@
|
||||||
<translation type="vanished">Wachtwoord voor '%1' gebruiker:</translation>
|
<translation type="vanished">Wachtwoord voor '%1' gebruiker:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="188"/>
|
<location filename="../OptionsPopup.qml" line="190"/>
|
||||||
<source>Set authorized_keys for '%1':</source>
|
<source>Set authorized_keys for '%1':</source>
|
||||||
<translation>authorized_keys voor '%1':</translation>
|
<translation>authorized_keys voor '%1':</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="261"/>
|
<location filename="../OptionsPopup.qml" line="264"/>
|
||||||
<source>Configure wireless LAN</source>
|
<source>Configure wireless LAN</source>
|
||||||
<translation>Wifi instellen</translation>
|
<translation>Wifi instellen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="280"/>
|
<location filename="../OptionsPopup.qml" line="283"/>
|
||||||
<source>SSID:</source>
|
<source>SSID:</source>
|
||||||
<translation>SSID:</translation>
|
<translation>SSID:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="234"/>
|
<location filename="../OptionsPopup.qml" line="237"/>
|
||||||
<location filename="../OptionsPopup.qml" line="300"/>
|
<location filename="../OptionsPopup.qml" line="303"/>
|
||||||
<source>Password:</source>
|
<source>Password:</source>
|
||||||
<translation>Wachtwoord:</translation>
|
<translation>Wachtwoord:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="200"/>
|
<location filename="../OptionsPopup.qml" line="203"/>
|
||||||
<source>Set username and password</source>
|
<source>Set username and password</source>
|
||||||
<translation>Gebruikersnaam en wachtwoord instellen</translation>
|
<translation>Gebruikersnaam en wachtwoord instellen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="219"/>
|
<location filename="../OptionsPopup.qml" line="222"/>
|
||||||
<source>Username:</source>
|
<source>Username:</source>
|
||||||
<translation>Gebruikersnaam:</translation>
|
<translation>Gebruikersnaam:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="295"/>
|
<location filename="../OptionsPopup.qml" line="298"/>
|
||||||
<source>Hidden SSID</source>
|
<source>Hidden SSID</source>
|
||||||
<translation>Verborgen SSID</translation>
|
<translation>Verborgen SSID</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="316"/>
|
<location filename="../OptionsPopup.qml" line="319"/>
|
||||||
<source>Show password</source>
|
<source>Show password</source>
|
||||||
<translation>Wachtwoord laten zien</translation>
|
<translation>Wachtwoord laten zien</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="321"/>
|
<location filename="../OptionsPopup.qml" line="324"/>
|
||||||
<source>Wireless LAN country:</source>
|
<source>Wireless LAN country:</source>
|
||||||
<translation>Wifi land:</translation>
|
<translation>Wifi land:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="332"/>
|
<location filename="../OptionsPopup.qml" line="335"/>
|
||||||
<source>Set locale settings</source>
|
<source>Set locale settings</source>
|
||||||
<translation>Regio instellingen</translation>
|
<translation>Regio instellingen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="342"/>
|
<location filename="../OptionsPopup.qml" line="345"/>
|
||||||
<source>Time zone:</source>
|
<source>Time zone:</source>
|
||||||
<translation>Tijdzone:</translation>
|
<translation>Tijdzone:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="352"/>
|
<location filename="../OptionsPopup.qml" line="355"/>
|
||||||
<source>Keyboard layout:</source>
|
<source>Keyboard layout:</source>
|
||||||
<translation>Toetsenbord indeling:</translation>
|
<translation>Toetsenbord indeling:</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -437,27 +435,27 @@
|
||||||
<translation type="vanished">Eerste gebruik wizard overslaan</translation>
|
<translation type="vanished">Eerste gebruik wizard overslaan</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="365"/>
|
<location filename="../OptionsPopup.qml" line="368"/>
|
||||||
<source>Persistent settings</source>
|
<source>Persistent settings</source>
|
||||||
<translation>Permanente instellingen</translation>
|
<translation>Permanente instellingen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="373"/>
|
<location filename="../OptionsPopup.qml" line="376"/>
|
||||||
<source>Play sound when finished</source>
|
<source>Play sound when finished</source>
|
||||||
<translation>Geluid afspelen zodra voltooid</translation>
|
<translation>Geluid afspelen zodra voltooid</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="377"/>
|
<location filename="../OptionsPopup.qml" line="380"/>
|
||||||
<source>Eject media when finished</source>
|
<source>Eject media when finished</source>
|
||||||
<translation>Media uitwerpen zodra voltooid</translation>
|
<translation>Media uitwerpen zodra voltooid</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="381"/>
|
<location filename="../OptionsPopup.qml" line="384"/>
|
||||||
<source>Enable telemetry</source>
|
<source>Enable telemetry</source>
|
||||||
<translation>Telemetry inschakelen</translation>
|
<translation>Telemetry inschakelen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="394"/>
|
<location filename="../OptionsPopup.qml" line="397"/>
|
||||||
<source>SAVE</source>
|
<source>SAVE</source>
|
||||||
<translation>OPSLAAN</translation>
|
<translation>OPSLAAN</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -473,29 +471,34 @@
|
||||||
<context>
|
<context>
|
||||||
<name>UseSavedSettingsPopup</name>
|
<name>UseSavedSettingsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="72"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="73"/>
|
||||||
<source>Warning: advanced settings set</source>
|
<source>Warning: advanced settings set</source>
|
||||||
<translation>Opgeslagen instellingen toepassen</translation>
|
<translation>Opgeslagen instellingen toepassen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="86"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="87"/>
|
||||||
<source>Would you like to apply the image customization settings saved earlier?</source>
|
<source>Would you like to apply the image customization settings saved earlier?</source>
|
||||||
<translation>Wilt u de eerder opgeslagen image customization instellingen toepassen?</translation>
|
<translation>Wilt u de eerder opgeslagen image customization instellingen toepassen?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="95"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="96"/>
|
||||||
|
<source>NO</source>
|
||||||
|
<translation>Nee</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../UseSavedSettingsPopup.qml" line="106"/>
|
||||||
<source>NO, CLEAR SETTINGS</source>
|
<source>NO, CLEAR SETTINGS</source>
|
||||||
<translation>Nee, wis instellingen</translation>
|
<translation>Nee, wis instellingen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="105"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="116"/>
|
||||||
<source>YES</source>
|
<source>YES</source>
|
||||||
<translation>Ja</translation>
|
<translation>Ja</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="115"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="126"/>
|
||||||
<source>EDIT SETTINGS</source>
|
<source>EDIT SETTINGS</source>
|
||||||
<translation>Instellingen aanpassen</translation>
|
<translation>Aanpassen</translation>
|
||||||
</message>
|
</message>
|
||||||
</context>
|
</context>
|
||||||
<context>
|
<context>
|
||||||
|
@ -534,7 +537,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="147"/>
|
<location filename="../main.qml" line="147"/>
|
||||||
<location filename="../main.qml" line="1038"/>
|
<location filename="../main.qml" line="1041"/>
|
||||||
<source>CHOOSE STORAGE</source>
|
<source>CHOOSE STORAGE</source>
|
||||||
<translation>KIES OPSLAGAPPARAAT</translation>
|
<translation>KIES OPSLAGAPPARAAT</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -544,7 +547,7 @@
|
||||||
<translation>SCHRIJF</translation>
|
<translation>SCHRIJF</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="968"/>
|
<location filename="../main.qml" line="971"/>
|
||||||
<source>Writing... %1%</source>
|
<source>Writing... %1%</source>
|
||||||
<translation>Schrijven... %1%</translation>
|
<translation>Schrijven... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -569,7 +572,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="221"/>
|
<location filename="../main.qml" line="221"/>
|
||||||
<location filename="../main.qml" line="965"/>
|
<location filename="../main.qml" line="968"/>
|
||||||
<source>Cancelling...</source>
|
<source>Cancelling...</source>
|
||||||
<translation>Annuleren...</translation>
|
<translation>Annuleren...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -580,8 +583,8 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="232"/>
|
<location filename="../main.qml" line="232"/>
|
||||||
<location filename="../main.qml" line="988"/>
|
<location filename="../main.qml" line="991"/>
|
||||||
<location filename="../main.qml" line="1057"/>
|
<location filename="../main.qml" line="1060"/>
|
||||||
<source>Finalizing...</source>
|
<source>Finalizing...</source>
|
||||||
<translation>Afronden...</translation>
|
<translation>Afronden...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -612,7 +615,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="505"/>
|
<location filename="../main.qml" line="505"/>
|
||||||
<location filename="../main.qml" line="1022"/>
|
<location filename="../main.qml" line="1025"/>
|
||||||
<source>Erase</source>
|
<source>Erase</source>
|
||||||
<translation>Wissen</translation>
|
<translation>Wissen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -667,12 +670,12 @@
|
||||||
<translation>Er is een nieuwere versie van Imager beschikbaar.<br>Wilt u de website bezoeken om deze te downloaden?</translation>
|
<translation>Er is een nieuwere versie van Imager beschikbaar.<br>Wilt u de website bezoeken om deze te downloaden?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="998"/>
|
<location filename="../main.qml" line="1001"/>
|
||||||
<source>Preparing to write... (%1)</source>
|
<source>Preparing to write... (%1)</source>
|
||||||
<translation>Voorbereiden... (%1)</translation>
|
<translation>Voorbereiden... (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1023"/>
|
<location filename="../main.qml" line="1026"/>
|
||||||
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> is gewist<br><br>U kunt nu de SD kaart uit de lezer halen</translation>
|
<translation><b>%1</b> is gewist<br><br>U kunt nu de SD kaart uit de lezer halen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -681,17 +684,17 @@
|
||||||
<translation type="vanished"><b>%1</b> is geschreven naar <b>%2</b></translation>
|
<translation type="vanished"><b>%1</b> is geschreven naar <b>%2</b></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1098"/>
|
<location filename="../main.qml" line="1101"/>
|
||||||
<source>Error parsing os_list.json</source>
|
<source>Error parsing os_list.json</source>
|
||||||
<translation>Fout bij parsen os_list.json</translation>
|
<translation>Fout bij parsen os_list.json</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1271"/>
|
<location filename="../main.qml" line="1274"/>
|
||||||
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
||||||
<translation>Sluit eerst een USB stick met images aan.<br>De images moeten in de hoofdmap van de USB stick staan.</translation>
|
<translation>Sluit eerst een USB stick met images aan.<br>De images moeten in de hoofdmap van de USB stick staan.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1287"/>
|
<location filename="../main.qml" line="1290"/>
|
||||||
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
||||||
<translation>SD kaart is tegen schrijven beveiligd.<br>Druk het schuifje aan de linkerkant van de SD kaart omhoog, en probeer nogmaals.</translation>
|
<translation>SD kaart is tegen schrijven beveiligd.<br>Druk het schuifje aan de linkerkant van de SD kaart omhoog, en probeer nogmaals.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -733,27 +736,27 @@
|
||||||
<translation>Mounted op %1</translation>
|
<translation>Mounted op %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="947"/>
|
<location filename="../main.qml" line="950"/>
|
||||||
<source>Error downloading OS list from Internet</source>
|
<source>Error downloading OS list from Internet</source>
|
||||||
<translation>Fout bij downloaden van lijst met besturingssystemen</translation>
|
<translation>Fout bij downloaden van lijst met besturingssystemen</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="991"/>
|
<location filename="../main.qml" line="994"/>
|
||||||
<source>Verifying... %1%</source>
|
<source>Verifying... %1%</source>
|
||||||
<translation>Verifiëren... %1%</translation>
|
<translation>Verifiëren... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1014"/>
|
<location filename="../main.qml" line="1017"/>
|
||||||
<source>Error</source>
|
<source>Error</source>
|
||||||
<translation>Fout</translation>
|
<translation>Fout</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1021"/>
|
<location filename="../main.qml" line="1024"/>
|
||||||
<source>Write Successful</source>
|
<source>Write Successful</source>
|
||||||
<translation>Klaar met schrijven</translation>
|
<translation>Klaar met schrijven</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1030"/>
|
<location filename="../main.qml" line="1033"/>
|
||||||
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> is geschreven naar <b>%2</b><br><br>U kunt nu de SD kaart uit de lezer halen</translation>
|
<translation><b>%1</b> is geschreven naar <b>%2</b><br><br>U kunt nu de SD kaart uit de lezer halen</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -33,162 +33,160 @@
|
||||||
<context>
|
<context>
|
||||||
<name>DownloadThread</name>
|
<name>DownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="147"/>
|
<location filename="../downloadthread.cpp" line="166"/>
|
||||||
<source>Error running diskpart: %1</source>
|
<source>Error running diskpart: %1</source>
|
||||||
<translation>Chyba počas behu diskpart: %1</translation>
|
<translation>Chyba počas behu diskpart: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="168"/>
|
<location filename="../downloadthread.cpp" line="187"/>
|
||||||
<source>Error removing existing partitions</source>
|
<source>Error removing existing partitions</source>
|
||||||
<translation>Chyba pri odstraňovaní existujúcich partiícií</translation>
|
<translation>Chyba pri odstraňovaní existujúcich partiícií</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="194"/>
|
<location filename="../downloadthread.cpp" line="213"/>
|
||||||
<source>Authentication cancelled</source>
|
<source>Authentication cancelled</source>
|
||||||
<translation>Zrušená autentifikácia</translation>
|
<translation>Zrušená autentifikácia</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="197"/>
|
<location filename="../downloadthread.cpp" line="216"/>
|
||||||
<source>Error running authopen to gain access to disk device '%1'</source>
|
<source>Error running authopen to gain access to disk device '%1'</source>
|
||||||
<translation>Chyba pri spúšťaní authopen v snahe o získanie prístupu na diskové zariadenie '%1'</translation>
|
<translation>Chyba pri spúšťaní authopen v snahe o získanie prístupu na diskové zariadenie '%1'</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="198"/>
|
<location filename="../downloadthread.cpp" line="217"/>
|
||||||
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
||||||
<translation>Preverte, prosím, či má 'Raspberry Pi Imager' prístup k 'vymeniteľným nosičom' v nastaveniach súkromia (pod 'súbormi a priečinkami', prípadne mu udeľte 'plný prístup k diskom').</translation>
|
<translation>Preverte, prosím, či má 'Raspberry Pi Imager' prístup k 'vymeniteľným nosičom' v nastaveniach súkromia (pod 'súbormi a priečinkami', prípadne mu udeľte 'plný prístup k diskom').</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="220"/>
|
<location filename="../downloadthread.cpp" line="239"/>
|
||||||
<source>Cannot open storage device '%1'.</source>
|
<source>Cannot open storage device '%1'.</source>
|
||||||
<translation>Nepodarilo sa otvoriť zariadenie úložiska '%1'.</translation>
|
<translation>Nepodarilo sa otvoriť zariadenie úložiska '%1'.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="262"/>
|
<location filename="../downloadthread.cpp" line="281"/>
|
||||||
<source>discarding existing data on drive</source>
|
<source>discarding existing data on drive</source>
|
||||||
<translation>odstraňujem existujúce údaje z disku</translation>
|
<translation>odstraňujem existujúce údaje z disku</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="282"/>
|
<location filename="../downloadthread.cpp" line="301"/>
|
||||||
<source>zeroing out first and last MB of drive</source>
|
<source>zeroing out first and last MB of drive</source>
|
||||||
<translation>prepisujem prvý a posledny megabajt disku</translation>
|
<translation>prepisujem prvý a posledny megabajt disku</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="288"/>
|
<location filename="../downloadthread.cpp" line="307"/>
|
||||||
<source>Write error while zero'ing out MBR</source>
|
<source>Write error while zero'ing out MBR</source>
|
||||||
<translation>Chyba zápisu pri prepisovaní MBR nulami</translation>
|
<translation>Chyba zápisu pri prepisovaní MBR nulami</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="779"/>
|
<location filename="../downloadthread.cpp" line="813"/>
|
||||||
<source>Error reading from storage.<br>SD card may be broken.</source>
|
<source>Error reading from storage.<br>SD card may be broken.</source>
|
||||||
<translation>Chyba pri čítaní z úložiska.<br>Karta SD môže byť poškodená.</translation>
|
<translation>Chyba pri čítaní z úložiska.<br>Karta SD môže byť poškodená.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="855"/>
|
|
||||||
<source>Waiting for FAT partition to be mounted</source>
|
<source>Waiting for FAT partition to be mounted</source>
|
||||||
<translation>Čakám a pripojenie FAT partície</translation>
|
<translation type="vanished">Čakám a pripojenie FAT partície</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="941"/>
|
|
||||||
<source>Error mounting FAT32 partition</source>
|
<source>Error mounting FAT32 partition</source>
|
||||||
<translation>Chyba pri pripájaní partície FAT32</translation>
|
<translation type="vanished">Chyba pri pripájaní partície FAT32</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="963"/>
|
|
||||||
<source>Operating system did not mount FAT32 partition</source>
|
<source>Operating system did not mount FAT32 partition</source>
|
||||||
<translation>Operačný systém nepripojil partíciu FAT32</translation>
|
<translation type="vanished">Operačný systém nepripojil partíciu FAT32</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="996"/>
|
|
||||||
<source>Unable to customize. File '%1' does not exist.</source>
|
<source>Unable to customize. File '%1' does not exist.</source>
|
||||||
<translation>Prispôsobenie skončilo s chybou. Súbor '%1' neexistuje.</translation>
|
<translation type="vanished">Prispôsobenie skončilo s chybou. Súbor '%1' neexistuje.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1000"/>
|
<location filename="../downloadthread.cpp" line="885"/>
|
||||||
<source>Customizing image</source>
|
<source>Customizing image</source>
|
||||||
<translation>Upravujem obraz</translation>
|
<translation>Upravujem obraz</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1085"/>
|
|
||||||
<source>Error creating firstrun.sh on FAT partition</source>
|
<source>Error creating firstrun.sh on FAT partition</source>
|
||||||
<translation>Pri vytváraní firstrun.sh na partícii FAT nastala chyba</translation>
|
<translation type="vanished">Pri vytváraní firstrun.sh na partícii FAT nastala chyba</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1037"/>
|
|
||||||
<source>Error writing to config.txt on FAT partition</source>
|
<source>Error writing to config.txt on FAT partition</source>
|
||||||
<translation>Chyba pri zápise config.txt na FAT partícii</translation>
|
<translation type="vanished">Chyba pri zápise config.txt na FAT partícii</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1102"/>
|
|
||||||
<source>Error creating user-data cloudinit file on FAT partition</source>
|
<source>Error creating user-data cloudinit file on FAT partition</source>
|
||||||
<translation>Chyba pri vytváraní súboru cloudinit s údajmi používateľa na partícií FAT</translation>
|
<translation type="vanished">Chyba pri vytváraní súboru cloudinit s údajmi používateľa na partícií FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1116"/>
|
|
||||||
<source>Error creating network-config cloudinit file on FAT partition</source>
|
<source>Error creating network-config cloudinit file on FAT partition</source>
|
||||||
<translation>Chyba pri vytváraní súboru cloudinit s nastavením siete na partícií FAT</translation>
|
<translation type="vanished">Chyba pri vytváraní súboru cloudinit s nastavením siete na partícií FAT</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1139"/>
|
|
||||||
<source>Error writing to cmdline.txt on FAT partition</source>
|
<source>Error writing to cmdline.txt on FAT partition</source>
|
||||||
<translation>Chyba pri zápise cmdline.txt na FAT partíciu</translation>
|
<translation type="vanished">Chyba pri zápise cmdline.txt na FAT partíciu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="432"/>
|
<location filename="../downloadthread.cpp" line="451"/>
|
||||||
<source>Access denied error while writing file to disk.</source>
|
<source>Access denied error while writing file to disk.</source>
|
||||||
<translation>Odopretý prístup pri zápise súboru na disk.</translation>
|
<translation>Odopretý prístup pri zápise súboru na disk.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="437"/>
|
<location filename="../downloadthread.cpp" line="456"/>
|
||||||
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
||||||
<translation>Vyzerá, že máte zapnutý Controlled Folder Access. Pridajte, prosím, rpi-imager.exe a fat32format.exe do zoznamu povolených aplikácií a skúste to znovu.</translation>
|
<translation>Vyzerá, že máte zapnutý Controlled Folder Access. Pridajte, prosím, rpi-imager.exe a fat32format.exe do zoznamu povolených aplikácií a skúste to znovu.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="444"/>
|
<location filename="../downloadthread.cpp" line="463"/>
|
||||||
<source>Error writing file to disk</source>
|
<source>Error writing file to disk</source>
|
||||||
<translation>Chyba pri zápise na disk</translation>
|
<translation>Chyba pri zápise na disk</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="463"/>
|
<location filename="../downloadthread.cpp" line="482"/>
|
||||||
<source>Error downloading: %1</source>
|
<source>Error downloading: %1</source>
|
||||||
<translation>Chyba pri sťahovaní: %1</translation>
|
<translation>Chyba pri sťahovaní: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="686"/>
|
<location filename="../downloadthread.cpp" line="705"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="757"/>
|
||||||
<source>Error writing to storage (while flushing)</source>
|
<source>Error writing to storage (while flushing)</source>
|
||||||
<translation>Chyba pri zápise na úložisko (počas volania flush)</translation>
|
<translation>Chyba pri zápise na úložisko (počas volania flush)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="693"/>
|
<location filename="../downloadthread.cpp" line="712"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="764"/>
|
||||||
<source>Error writing to storage (while fsync)</source>
|
<source>Error writing to storage (while fsync)</source>
|
||||||
<translation>Chyba pri zápise na úložisko (počas volania fsync)</translation>
|
<translation>Chyba pri zápise na úložisko (počas volania fsync)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="674"/>
|
<location filename="../downloadthread.cpp" line="693"/>
|
||||||
<source>Download corrupt. Hash does not match</source>
|
<source>Download corrupt. Hash does not match</source>
|
||||||
<translation>Stiahnutý súbor je poškodený. Kontrolný súčet nesedí</translation>
|
<translation>Stiahnutý súbor je poškodený. Kontrolný súčet nesedí</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="114"/>
|
<location filename="../downloadthread.cpp" line="118"/>
|
||||||
|
<source>unmounting drive</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../downloadthread.cpp" line="138"/>
|
||||||
<source>opening drive</source>
|
<source>opening drive</source>
|
||||||
<translation>otváram disk</translation>
|
<translation>otváram disk</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="300"/>
|
<location filename="../downloadthread.cpp" line="319"/>
|
||||||
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
||||||
<translation>Chyba zápisu pri prepisovaní poslednej časti karty nulami.<br>Karta pravdepodobne udáva nesprávnu kapacitu (a môže byť falošná).</translation>
|
<translation>Chyba zápisu pri prepisovaní poslednej časti karty nulami.<br>Karta pravdepodobne udáva nesprávnu kapacitu (a môže byť falošná).</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="389"/>
|
<location filename="../downloadthread.cpp" line="408"/>
|
||||||
<source>starting download</source>
|
<source>starting download</source>
|
||||||
<translation>začína sťahovanie</translation>
|
<translation>začína sťahovanie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="719"/>
|
<location filename="../downloadthread.cpp" line="747"/>
|
||||||
<source>Error writing first block (partition table)</source>
|
<source>Error writing first block (partition table)</source>
|
||||||
<translation>Chyba pri zápise prvého bloku (tabuľky partícií)</translation>
|
<translation>Chyba pri zápise prvého bloku (tabuľky partícií)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="798"/>
|
<location filename="../downloadthread.cpp" line="832"/>
|
||||||
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
||||||
<translation>Overovanie zápisu skončilo s chybou. Obsah karty SD sa nezhoduje s tým, čo na ňu bolo zapísané.</translation>
|
<translation>Overovanie zápisu skončilo s chybou. Obsah karty SD sa nezhoduje s tým, čo na ňu bolo zapísané.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -256,27 +254,27 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ImageWriter</name>
|
<name>ImageWriter</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="257"/>
|
<location filename="../imagewriter.cpp" line="248"/>
|
||||||
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
||||||
<translation>Kapacita úložiska je nedostatočná<br>Musí byť aspoň %1 GB.</translation>
|
<translation>Kapacita úložiska je nedostatočná<br>Musí byť aspoň %1 GB.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="263"/>
|
<location filename="../imagewriter.cpp" line="254"/>
|
||||||
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
||||||
<translation>Vstupný súbor nie je platným obrazom disku.<br>Veľkosť súboru %1 bajtov nie je násobkom 512 bajtov.</translation>
|
<translation>Vstupný súbor nie je platným obrazom disku.<br>Veľkosť súboru %1 bajtov nie je násobkom 512 bajtov.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="445"/>
|
<location filename="../imagewriter.cpp" line="442"/>
|
||||||
<source>Downloading and writing image</source>
|
<source>Downloading and writing image</source>
|
||||||
<translation>Sťahujem a zapisujem obraz</translation>
|
<translation>Sťahujem a zapisujem obraz</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="578"/>
|
<location filename="../imagewriter.cpp" line="575"/>
|
||||||
<source>Select image</source>
|
<source>Select image</source>
|
||||||
<translation>Vyberte obraz</translation>
|
<translation>Vyberte obraz</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="979"/>
|
<location filename="../imagewriter.cpp" line="864"/>
|
||||||
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
||||||
<translation>Chcete predvyplniť heslo pre wifi zo systémovej kľúčenky?</translation>
|
<translation>Chcete predvyplniť heslo pre wifi zo systémovej kľúčenky?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -320,22 +318,22 @@
|
||||||
<context>
|
<context>
|
||||||
<name>OptionsPopup</name>
|
<name>OptionsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="79"/>
|
<location filename="../OptionsPopup.qml" line="80"/>
|
||||||
<source>Advanced options</source>
|
<source>Advanced options</source>
|
||||||
<translation>Pokročilé možnosti</translation>
|
<translation>Pokročilé možnosti</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="96"/>
|
<location filename="../OptionsPopup.qml" line="97"/>
|
||||||
<source>Image customization options</source>
|
<source>Image customization options</source>
|
||||||
<translation>Možnosti úprav obrazu</translation>
|
<translation>Možnosti úprav obrazu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="104"/>
|
<location filename="../OptionsPopup.qml" line="105"/>
|
||||||
<source>for this session only</source>
|
<source>for this session only</source>
|
||||||
<translation>iba pre toto sedenie</translation>
|
<translation>iba pre toto sedenie</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="105"/>
|
<location filename="../OptionsPopup.qml" line="106"/>
|
||||||
<source>to always use</source>
|
<source>to always use</source>
|
||||||
<translation>použiť vždy</translation>
|
<translation>použiť vždy</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -344,17 +342,17 @@
|
||||||
<translation type="vanished">Vypnúť presnímanie (overscan)</translation>
|
<translation type="vanished">Vypnúť presnímanie (overscan)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="119"/>
|
<location filename="../OptionsPopup.qml" line="120"/>
|
||||||
<source>Set hostname:</source>
|
<source>Set hostname:</source>
|
||||||
<translation>Nastaviť meno počítača (hostname):</translation>
|
<translation>Nastaviť meno počítača (hostname):</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="138"/>
|
<location filename="../OptionsPopup.qml" line="140"/>
|
||||||
<source>Enable SSH</source>
|
<source>Enable SSH</source>
|
||||||
<translation>Povoliť SSH</translation>
|
<translation>Povoliť SSH</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="160"/>
|
<location filename="../OptionsPopup.qml" line="162"/>
|
||||||
<source>Use password authentication</source>
|
<source>Use password authentication</source>
|
||||||
<translation>Použiť heslo na prihlásenie</translation>
|
<translation>Použiť heslo na prihlásenie</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -363,7 +361,7 @@
|
||||||
<translation type="vanished">Nastaviť heslo pre používateľa 'pi':</translation>
|
<translation type="vanished">Nastaviť heslo pre používateľa 'pi':</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="170"/>
|
<location filename="../OptionsPopup.qml" line="172"/>
|
||||||
<source>Allow public-key authentication only</source>
|
<source>Allow public-key authentication only</source>
|
||||||
<translation>Povoliť iba prihlásenie pomocou verejného kľúča</translation>
|
<translation>Povoliť iba prihlásenie pomocou verejného kľúča</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -372,63 +370,63 @@
|
||||||
<translation type="vanished">Nastaviť authorized_keys pre 'pi':</translation>
|
<translation type="vanished">Nastaviť authorized_keys pre 'pi':</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="188"/>
|
<location filename="../OptionsPopup.qml" line="190"/>
|
||||||
<source>Set authorized_keys for '%1':</source>
|
<source>Set authorized_keys for '%1':</source>
|
||||||
<translation>Nastaviť authorized_keys pre '%1':</translation>
|
<translation>Nastaviť authorized_keys pre '%1':</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="261"/>
|
<location filename="../OptionsPopup.qml" line="264"/>
|
||||||
<source>Configure wireless LAN</source>
|
<source>Configure wireless LAN</source>
|
||||||
<translation>Nastaviť wifi</translation>
|
<translation>Nastaviť wifi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="280"/>
|
<location filename="../OptionsPopup.qml" line="283"/>
|
||||||
<source>SSID:</source>
|
<source>SSID:</source>
|
||||||
<translation>SSID:</translation>
|
<translation>SSID:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="234"/>
|
<location filename="../OptionsPopup.qml" line="237"/>
|
||||||
<location filename="../OptionsPopup.qml" line="300"/>
|
<location filename="../OptionsPopup.qml" line="303"/>
|
||||||
<source>Password:</source>
|
<source>Password:</source>
|
||||||
<translation>Heslo:</translation>
|
<translation>Heslo:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="200"/>
|
<location filename="../OptionsPopup.qml" line="203"/>
|
||||||
<source>Set username and password</source>
|
<source>Set username and password</source>
|
||||||
<translation>Nastaviť meno používateľa a heslo</translation>
|
<translation>Nastaviť meno používateľa a heslo</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="219"/>
|
<location filename="../OptionsPopup.qml" line="222"/>
|
||||||
<source>Username:</source>
|
<source>Username:</source>
|
||||||
<translation>Meno používateľa:</translation>
|
<translation>Meno používateľa:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="295"/>
|
<location filename="../OptionsPopup.qml" line="298"/>
|
||||||
<source>Hidden SSID</source>
|
<source>Hidden SSID</source>
|
||||||
<translation>Skryté SSID</translation>
|
<translation>Skryté SSID</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="316"/>
|
<location filename="../OptionsPopup.qml" line="319"/>
|
||||||
<source>Show password</source>
|
<source>Show password</source>
|
||||||
<translation>Zobraziť heslo</translation>
|
<translation>Zobraziť heslo</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="321"/>
|
<location filename="../OptionsPopup.qml" line="324"/>
|
||||||
<source>Wireless LAN country:</source>
|
<source>Wireless LAN country:</source>
|
||||||
<translation>Wifi krajina:</translation>
|
<translation>Wifi krajina:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="332"/>
|
<location filename="../OptionsPopup.qml" line="335"/>
|
||||||
<source>Set locale settings</source>
|
<source>Set locale settings</source>
|
||||||
<translation>Nastavenia miestnych zvyklostí</translation>
|
<translation>Nastavenia miestnych zvyklostí</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="342"/>
|
<location filename="../OptionsPopup.qml" line="345"/>
|
||||||
<source>Time zone:</source>
|
<source>Time zone:</source>
|
||||||
<translation>Časové pásmo:</translation>
|
<translation>Časové pásmo:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="352"/>
|
<location filename="../OptionsPopup.qml" line="355"/>
|
||||||
<source>Keyboard layout:</source>
|
<source>Keyboard layout:</source>
|
||||||
<translation>Rozloženie klávesnice:</translation>
|
<translation>Rozloženie klávesnice:</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -437,27 +435,27 @@
|
||||||
<translation type="vanished">Vypnúť sprievodcu prvým spustením</translation>
|
<translation type="vanished">Vypnúť sprievodcu prvým spustením</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="365"/>
|
<location filename="../OptionsPopup.qml" line="368"/>
|
||||||
<source>Persistent settings</source>
|
<source>Persistent settings</source>
|
||||||
<translation>Trvalé nastavenia</translation>
|
<translation>Trvalé nastavenia</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="373"/>
|
<location filename="../OptionsPopup.qml" line="376"/>
|
||||||
<source>Play sound when finished</source>
|
<source>Play sound when finished</source>
|
||||||
<translation>Po skončení prehrať zvuk</translation>
|
<translation>Po skončení prehrať zvuk</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="377"/>
|
<location filename="../OptionsPopup.qml" line="380"/>
|
||||||
<source>Eject media when finished</source>
|
<source>Eject media when finished</source>
|
||||||
<translation>Po skončení vysunúť médium</translation>
|
<translation>Po skončení vysunúť médium</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="381"/>
|
<location filename="../OptionsPopup.qml" line="384"/>
|
||||||
<source>Enable telemetry</source>
|
<source>Enable telemetry</source>
|
||||||
<translation>Povoliť telemetriu</translation>
|
<translation>Povoliť telemetriu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="394"/>
|
<location filename="../OptionsPopup.qml" line="397"/>
|
||||||
<source>SAVE</source>
|
<source>SAVE</source>
|
||||||
<translation>ULOŽIŤ</translation>
|
<translation>ULOŽIŤ</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -473,27 +471,32 @@
|
||||||
<context>
|
<context>
|
||||||
<name>UseSavedSettingsPopup</name>
|
<name>UseSavedSettingsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="72"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="73"/>
|
||||||
<source>Warning: advanced settings set</source>
|
<source>Warning: advanced settings set</source>
|
||||||
<translation>Varovanie: používajú sa pokročilé možnosti</translation>
|
<translation>Varovanie: používajú sa pokročilé možnosti</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="86"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="87"/>
|
||||||
<source>Would you like to apply the image customization settings saved earlier?</source>
|
<source>Would you like to apply the image customization settings saved earlier?</source>
|
||||||
<translation>Chcete použiť uložené nastavenia úprav obrazu?</translation>
|
<translation>Chcete použiť uložené nastavenia úprav obrazu?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="95"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="96"/>
|
||||||
|
<source>NO</source>
|
||||||
|
<translation type="unfinished">NIE</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../UseSavedSettingsPopup.qml" line="106"/>
|
||||||
<source>NO, CLEAR SETTINGS</source>
|
<source>NO, CLEAR SETTINGS</source>
|
||||||
<translation>NIE, VYČISTIŤ NASTAVENIA</translation>
|
<translation>NIE, VYČISTIŤ NASTAVENIA</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="105"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="116"/>
|
||||||
<source>YES</source>
|
<source>YES</source>
|
||||||
<translation>ÁNO</translation>
|
<translation>ÁNO</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="115"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="126"/>
|
||||||
<source>EDIT SETTINGS</source>
|
<source>EDIT SETTINGS</source>
|
||||||
<translation>UPRAVIŤ NASTAVENIA</translation>
|
<translation>UPRAVIŤ NASTAVENIA</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -534,7 +537,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="147"/>
|
<location filename="../main.qml" line="147"/>
|
||||||
<location filename="../main.qml" line="1038"/>
|
<location filename="../main.qml" line="1041"/>
|
||||||
<source>CHOOSE STORAGE</source>
|
<source>CHOOSE STORAGE</source>
|
||||||
<translation>VYBERTE SD KARTU</translation>
|
<translation>VYBERTE SD KARTU</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -544,7 +547,7 @@
|
||||||
<translation>ZAPÍSAŤ</translation>
|
<translation>ZAPÍSAŤ</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="968"/>
|
<location filename="../main.qml" line="971"/>
|
||||||
<source>Writing... %1%</source>
|
<source>Writing... %1%</source>
|
||||||
<translation>Zapisujem... %1%</translation>
|
<translation>Zapisujem... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -569,7 +572,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="221"/>
|
<location filename="../main.qml" line="221"/>
|
||||||
<location filename="../main.qml" line="965"/>
|
<location filename="../main.qml" line="968"/>
|
||||||
<source>Cancelling...</source>
|
<source>Cancelling...</source>
|
||||||
<translation>Ruším operáciu...</translation>
|
<translation>Ruším operáciu...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -580,8 +583,8 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="232"/>
|
<location filename="../main.qml" line="232"/>
|
||||||
<location filename="../main.qml" line="988"/>
|
<location filename="../main.qml" line="991"/>
|
||||||
<location filename="../main.qml" line="1057"/>
|
<location filename="../main.qml" line="1060"/>
|
||||||
<source>Finalizing...</source>
|
<source>Finalizing...</source>
|
||||||
<translation>Ukončujem...</translation>
|
<translation>Ukončujem...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -612,7 +615,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="505"/>
|
<location filename="../main.qml" line="505"/>
|
||||||
<location filename="../main.qml" line="1022"/>
|
<location filename="../main.qml" line="1025"/>
|
||||||
<source>Erase</source>
|
<source>Erase</source>
|
||||||
<translation>Vymazať</translation>
|
<translation>Vymazať</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -667,12 +670,12 @@
|
||||||
<translation>Je dostupná nová verzia Imagera.<br>Chcete prejsť na webovú stránku s programom a stiahnuť ho?</translation>
|
<translation>Je dostupná nová verzia Imagera.<br>Chcete prejsť na webovú stránku s programom a stiahnuť ho?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="998"/>
|
<location filename="../main.qml" line="1001"/>
|
||||||
<source>Preparing to write... (%1)</source>
|
<source>Preparing to write... (%1)</source>
|
||||||
<translation>Príprava zápisu... (%1)</translation>
|
<translation>Príprava zápisu... (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1023"/>
|
<location filename="../main.qml" line="1026"/>
|
||||||
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> bola vymazaná<br><br>Teraz môžete odstrániť SD kartu z čítačky</translation>
|
<translation><b>%1</b> bola vymazaná<br><br>Teraz môžete odstrániť SD kartu z čítačky</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -681,17 +684,17 @@
|
||||||
<translation type="vanished"><b>%1</b> bol zapísaný na <b>%2</b></translation>
|
<translation type="vanished"><b>%1</b> bol zapísaný na <b>%2</b></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1098"/>
|
<location filename="../main.qml" line="1101"/>
|
||||||
<source>Error parsing os_list.json</source>
|
<source>Error parsing os_list.json</source>
|
||||||
<translation>Chyba pri spracovaní os_list.json</translation>
|
<translation>Chyba pri spracovaní os_list.json</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1271"/>
|
<location filename="../main.qml" line="1274"/>
|
||||||
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
||||||
<translation>Najprv pripojte USB kľúč, ktorý obsahuje diskové obrazy.<br>Obrazy sa musia nachádzať v koreňovom priečinku USB kľúča.</translation>
|
<translation>Najprv pripojte USB kľúč, ktorý obsahuje diskové obrazy.<br>Obrazy sa musia nachádzať v koreňovom priečinku USB kľúča.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1287"/>
|
<location filename="../main.qml" line="1290"/>
|
||||||
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
||||||
<translation>SD karta je chránená proti zápisu.<br>Presuňte prepínač zámku na ľavej strane karty smerom hore a skúste to znova.</translation>
|
<translation>SD karta je chránená proti zápisu.<br>Presuňte prepínač zámku na ľavej strane karty smerom hore a skúste to znova.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -733,27 +736,27 @@
|
||||||
<translation>Pripojená ako %1</translation>
|
<translation>Pripojená ako %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="947"/>
|
<location filename="../main.qml" line="950"/>
|
||||||
<source>Error downloading OS list from Internet</source>
|
<source>Error downloading OS list from Internet</source>
|
||||||
<translation>Chyba pri sťahovaní zoznamu OS z Internetu</translation>
|
<translation>Chyba pri sťahovaní zoznamu OS z Internetu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="991"/>
|
<location filename="../main.qml" line="994"/>
|
||||||
<source>Verifying... %1%</source>
|
<source>Verifying... %1%</source>
|
||||||
<translation>Overujem... %1%</translation>
|
<translation>Overujem... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1014"/>
|
<location filename="../main.qml" line="1017"/>
|
||||||
<source>Error</source>
|
<source>Error</source>
|
||||||
<translation>Chyba</translation>
|
<translation>Chyba</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1021"/>
|
<location filename="../main.qml" line="1024"/>
|
||||||
<source>Write Successful</source>
|
<source>Write Successful</source>
|
||||||
<translation>Zápis úspešne skončil</translation>
|
<translation>Zápis úspešne skončil</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1030"/>
|
<location filename="../main.qml" line="1033"/>
|
||||||
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> bol zapísaný na <b>%2</b><br><br>Teraz môžete odstrániť SD kartu z čítačky</translation>
|
<translation><b>%1</b> bol zapísaný na <b>%2</b><br><br>Teraz môžete odstrániť SD kartu z čítačky</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -33,162 +33,160 @@
|
||||||
<context>
|
<context>
|
||||||
<name>DownloadThread</name>
|
<name>DownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="147"/>
|
<location filename="../downloadthread.cpp" line="166"/>
|
||||||
<source>Error running diskpart: %1</source>
|
<source>Error running diskpart: %1</source>
|
||||||
<translation>Napaka zagona diskpart: %1</translation>
|
<translation>Napaka zagona diskpart: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="168"/>
|
<location filename="../downloadthread.cpp" line="187"/>
|
||||||
<source>Error removing existing partitions</source>
|
<source>Error removing existing partitions</source>
|
||||||
<translation>Napaka odstranjevanja obstoječih particij</translation>
|
<translation>Napaka odstranjevanja obstoječih particij</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="194"/>
|
<location filename="../downloadthread.cpp" line="213"/>
|
||||||
<source>Authentication cancelled</source>
|
<source>Authentication cancelled</source>
|
||||||
<translation>Avtentifikacija preklicana</translation>
|
<translation>Avtentifikacija preklicana</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="197"/>
|
<location filename="../downloadthread.cpp" line="216"/>
|
||||||
<source>Error running authopen to gain access to disk device '%1'</source>
|
<source>Error running authopen to gain access to disk device '%1'</source>
|
||||||
<translation>Napaka zagona authopen za pridobitev dostopa do naprave diska '%1'</translation>
|
<translation>Napaka zagona authopen za pridobitev dostopa do naprave diska '%1'</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="198"/>
|
<location filename="../downloadthread.cpp" line="217"/>
|
||||||
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
||||||
<translation>Prosim preverite če ima 'Raspberry Pi Imager' pravico dostopa do 'odstranljivih mediev' pod nastavitvami zasebnosti (pod 'datoteke in mape' ali pa mu dajte 'popolni dostop do diska').</translation>
|
<translation>Prosim preverite če ima 'Raspberry Pi Imager' pravico dostopa do 'odstranljivih mediev' pod nastavitvami zasebnosti (pod 'datoteke in mape' ali pa mu dajte 'popolni dostop do diska').</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="220"/>
|
<location filename="../downloadthread.cpp" line="239"/>
|
||||||
<source>Cannot open storage device '%1'.</source>
|
<source>Cannot open storage device '%1'.</source>
|
||||||
<translation>Ne morem odpreti diska '%1'.</translation>
|
<translation>Ne morem odpreti diska '%1'.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="262"/>
|
<location filename="../downloadthread.cpp" line="281"/>
|
||||||
<source>discarding existing data on drive</source>
|
<source>discarding existing data on drive</source>
|
||||||
<translation>Brisanje obstoječih podatkov na disku</translation>
|
<translation>Brisanje obstoječih podatkov na disku</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="282"/>
|
<location filename="../downloadthread.cpp" line="301"/>
|
||||||
<source>zeroing out first and last MB of drive</source>
|
<source>zeroing out first and last MB of drive</source>
|
||||||
<translation>Ničenje prvega in zadnjega MB diska</translation>
|
<translation>Ničenje prvega in zadnjega MB diska</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="288"/>
|
<location filename="../downloadthread.cpp" line="307"/>
|
||||||
<source>Write error while zero'ing out MBR</source>
|
<source>Write error while zero'ing out MBR</source>
|
||||||
<translation>Napaka zapisovanja med ničenjem MBR</translation>
|
<translation>Napaka zapisovanja med ničenjem MBR</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="779"/>
|
<location filename="../downloadthread.cpp" line="813"/>
|
||||||
<source>Error reading from storage.<br>SD card may be broken.</source>
|
<source>Error reading from storage.<br>SD card may be broken.</source>
|
||||||
<translation>Napaka branja iz diska.<br>SD kartica/disk je mogoče v okvari.</translation>
|
<translation>Napaka branja iz diska.<br>SD kartica/disk je mogoče v okvari.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="855"/>
|
|
||||||
<source>Waiting for FAT partition to be mounted</source>
|
<source>Waiting for FAT partition to be mounted</source>
|
||||||
<translation>Čakanje na priklop FAT particije</translation>
|
<translation type="vanished">Čakanje na priklop FAT particije</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="941"/>
|
|
||||||
<source>Error mounting FAT32 partition</source>
|
<source>Error mounting FAT32 partition</source>
|
||||||
<translation>Napaka priklopa FAT32 particije</translation>
|
<translation type="vanished">Napaka priklopa FAT32 particije</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="963"/>
|
|
||||||
<source>Operating system did not mount FAT32 partition</source>
|
<source>Operating system did not mount FAT32 partition</source>
|
||||||
<translation>Operacijski sisitem ni priklopil FAT32 particijo</translation>
|
<translation type="vanished">Operacijski sisitem ni priklopil FAT32 particijo</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="996"/>
|
|
||||||
<source>Unable to customize. File '%1' does not exist.</source>
|
<source>Unable to customize. File '%1' does not exist.</source>
|
||||||
<translation>Prilagoditev ni možna. Datoteka '%1' ne obstaja.</translation>
|
<translation type="vanished">Prilagoditev ni možna. Datoteka '%1' ne obstaja.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1000"/>
|
<location filename="../downloadthread.cpp" line="885"/>
|
||||||
<source>Customizing image</source>
|
<source>Customizing image</source>
|
||||||
<translation>Prilagajanje slike diska</translation>
|
<translation>Prilagajanje slike diska</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1085"/>
|
|
||||||
<source>Error creating firstrun.sh on FAT partition</source>
|
<source>Error creating firstrun.sh on FAT partition</source>
|
||||||
<translation>Napaka ustvarjanja firstrun.sh na FAT particiji</translation>
|
<translation type="vanished">Napaka ustvarjanja firstrun.sh na FAT particiji</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1037"/>
|
|
||||||
<source>Error writing to config.txt on FAT partition</source>
|
<source>Error writing to config.txt on FAT partition</source>
|
||||||
<translation>Napaka pisanja v config.txt na FAT particiji</translation>
|
<translation type="vanished">Napaka pisanja v config.txt na FAT particiji</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1102"/>
|
|
||||||
<source>Error creating user-data cloudinit file on FAT partition</source>
|
<source>Error creating user-data cloudinit file on FAT partition</source>
|
||||||
<translation>Napaka ustvarjanja user-data cloudinit datoteke na FAT particiji</translation>
|
<translation type="vanished">Napaka ustvarjanja user-data cloudinit datoteke na FAT particiji</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1116"/>
|
|
||||||
<source>Error creating network-config cloudinit file on FAT partition</source>
|
<source>Error creating network-config cloudinit file on FAT partition</source>
|
||||||
<translation>Napaka ustvarjanja network-config cloudinit datoteke na FAT particiji</translation>
|
<translation type="vanished">Napaka ustvarjanja network-config cloudinit datoteke na FAT particiji</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1139"/>
|
|
||||||
<source>Error writing to cmdline.txt on FAT partition</source>
|
<source>Error writing to cmdline.txt on FAT partition</source>
|
||||||
<translation>Napaka pisanja v cmdline.txt na FAT particiji</translation>
|
<translation type="vanished">Napaka pisanja v cmdline.txt na FAT particiji</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="432"/>
|
<location filename="../downloadthread.cpp" line="451"/>
|
||||||
<source>Access denied error while writing file to disk.</source>
|
<source>Access denied error while writing file to disk.</source>
|
||||||
<translation>Napaka zavrnitve dostopa med pisanjem na disk.</translation>
|
<translation>Napaka zavrnitve dostopa med pisanjem na disk.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="437"/>
|
<location filename="../downloadthread.cpp" line="456"/>
|
||||||
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
||||||
<translation>Izgleda, da jevklopljen nadzor dostopa do map. Prosim dodajte oba rpi-imager.exe in fat32format.exe na seznam dovoljenih aplikacij in poizkusite znova.</translation>
|
<translation>Izgleda, da jevklopljen nadzor dostopa do map. Prosim dodajte oba rpi-imager.exe in fat32format.exe na seznam dovoljenih aplikacij in poizkusite znova.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="444"/>
|
<location filename="../downloadthread.cpp" line="463"/>
|
||||||
<source>Error writing file to disk</source>
|
<source>Error writing file to disk</source>
|
||||||
<translation>Napaka pisanja na disk</translation>
|
<translation>Napaka pisanja na disk</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="463"/>
|
<location filename="../downloadthread.cpp" line="482"/>
|
||||||
<source>Error downloading: %1</source>
|
<source>Error downloading: %1</source>
|
||||||
<translation>Napaka prenosa:%1</translation>
|
<translation>Napaka prenosa:%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="686"/>
|
<location filename="../downloadthread.cpp" line="705"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="757"/>
|
||||||
<source>Error writing to storage (while flushing)</source>
|
<source>Error writing to storage (while flushing)</source>
|
||||||
<translation>Napaka pisanja na disk (med brisanjem)</translation>
|
<translation>Napaka pisanja na disk (med brisanjem)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="693"/>
|
<location filename="../downloadthread.cpp" line="712"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="764"/>
|
||||||
<source>Error writing to storage (while fsync)</source>
|
<source>Error writing to storage (while fsync)</source>
|
||||||
<translation>Napaka pisanja na disk (med fsync)</translation>
|
<translation>Napaka pisanja na disk (med fsync)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="674"/>
|
<location filename="../downloadthread.cpp" line="693"/>
|
||||||
<source>Download corrupt. Hash does not match</source>
|
<source>Download corrupt. Hash does not match</source>
|
||||||
<translation>Prenos poškodovan.Hash se ne ujema</translation>
|
<translation>Prenos poškodovan.Hash se ne ujema</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="114"/>
|
<location filename="../downloadthread.cpp" line="118"/>
|
||||||
|
<source>unmounting drive</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../downloadthread.cpp" line="138"/>
|
||||||
<source>opening drive</source>
|
<source>opening drive</source>
|
||||||
<translation>Odpiranje pogona</translation>
|
<translation>Odpiranje pogona</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="300"/>
|
<location filename="../downloadthread.cpp" line="319"/>
|
||||||
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
||||||
<translation>Napaka ničenja zadnjega dela diska.<br>Disk morebiti sporoča napačno velikost(možen ponaredek).</translation>
|
<translation>Napaka ničenja zadnjega dela diska.<br>Disk morebiti sporoča napačno velikost(možen ponaredek).</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="389"/>
|
<location filename="../downloadthread.cpp" line="408"/>
|
||||||
<source>starting download</source>
|
<source>starting download</source>
|
||||||
<translation>Začetek prenosa</translation>
|
<translation>Začetek prenosa</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="719"/>
|
<location filename="../downloadthread.cpp" line="747"/>
|
||||||
<source>Error writing first block (partition table)</source>
|
<source>Error writing first block (partition table)</source>
|
||||||
<translation>Napaka pisanja prvega bloka (particijska tabela)</translation>
|
<translation>Napaka pisanja prvega bloka (particijska tabela)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="798"/>
|
<location filename="../downloadthread.cpp" line="832"/>
|
||||||
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
||||||
<translation>Preverjanje pisanja spodletelo. Vsebina diska je drugačna, od tega, kar je bilo nanj zapisano.</translation>
|
<translation>Preverjanje pisanja spodletelo. Vsebina diska je drugačna, od tega, kar je bilo nanj zapisano.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -256,27 +254,27 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ImageWriter</name>
|
<name>ImageWriter</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="257"/>
|
<location filename="../imagewriter.cpp" line="248"/>
|
||||||
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
||||||
<translation>Kapaciteta diska ni zadostna.<br>Biti mora vsaj %1 GB.</translation>
|
<translation>Kapaciteta diska ni zadostna.<br>Biti mora vsaj %1 GB.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="263"/>
|
<location filename="../imagewriter.cpp" line="254"/>
|
||||||
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
||||||
<translation>Vhodna datoteka ni veljavna slika diska.<br>Velikost datoteke %1 bajtov ni večkratnik od 512 bajtov.</translation>
|
<translation>Vhodna datoteka ni veljavna slika diska.<br>Velikost datoteke %1 bajtov ni večkratnik od 512 bajtov.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="445"/>
|
<location filename="../imagewriter.cpp" line="442"/>
|
||||||
<source>Downloading and writing image</source>
|
<source>Downloading and writing image</source>
|
||||||
<translation>Prenašanje in zapisovanje slike</translation>
|
<translation>Prenašanje in zapisovanje slike</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="578"/>
|
<location filename="../imagewriter.cpp" line="575"/>
|
||||||
<source>Select image</source>
|
<source>Select image</source>
|
||||||
<translation>Izberite sliko</translation>
|
<translation>Izberite sliko</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="979"/>
|
<location filename="../imagewriter.cpp" line="864"/>
|
||||||
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
||||||
<translation>A bi želeli uporabiti WiFi geslo iz kjučev tega sistema?</translation>
|
<translation>A bi želeli uporabiti WiFi geslo iz kjučev tega sistema?</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -320,22 +318,22 @@
|
||||||
<context>
|
<context>
|
||||||
<name>OptionsPopup</name>
|
<name>OptionsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="79"/>
|
<location filename="../OptionsPopup.qml" line="80"/>
|
||||||
<source>Advanced options</source>
|
<source>Advanced options</source>
|
||||||
<translation>Napredne možnosti</translation>
|
<translation>Napredne možnosti</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="96"/>
|
<location filename="../OptionsPopup.qml" line="97"/>
|
||||||
<source>Image customization options</source>
|
<source>Image customization options</source>
|
||||||
<translation>Uporabi opcije prilagoditve slike diska</translation>
|
<translation>Uporabi opcije prilagoditve slike diska</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="104"/>
|
<location filename="../OptionsPopup.qml" line="105"/>
|
||||||
<source>for this session only</source>
|
<source>for this session only</source>
|
||||||
<translation>samo za to sejo</translation>
|
<translation>samo za to sejo</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="105"/>
|
<location filename="../OptionsPopup.qml" line="106"/>
|
||||||
<source>to always use</source>
|
<source>to always use</source>
|
||||||
<translation>vedno</translation>
|
<translation>vedno</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -344,12 +342,12 @@
|
||||||
<translation type="vanished">Onemogoči overscan</translation>
|
<translation type="vanished">Onemogoči overscan</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="119"/>
|
<location filename="../OptionsPopup.qml" line="120"/>
|
||||||
<source>Set hostname:</source>
|
<source>Set hostname:</source>
|
||||||
<translation>Ime naprave:</translation>
|
<translation>Ime naprave:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="138"/>
|
<location filename="../OptionsPopup.qml" line="140"/>
|
||||||
<source>Enable SSH</source>
|
<source>Enable SSH</source>
|
||||||
<translation>Omogoči SSH</translation>
|
<translation>Omogoči SSH</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -358,12 +356,12 @@
|
||||||
<translation type="vanished">Nastavi uporabniško ime:</translation>
|
<translation type="vanished">Nastavi uporabniško ime:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="160"/>
|
<location filename="../OptionsPopup.qml" line="162"/>
|
||||||
<source>Use password authentication</source>
|
<source>Use password authentication</source>
|
||||||
<translation>Uporabi geslo za avtentifikacijo</translation>
|
<translation>Uporabi geslo za avtentifikacijo</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="170"/>
|
<location filename="../OptionsPopup.qml" line="172"/>
|
||||||
<source>Allow public-key authentication only</source>
|
<source>Allow public-key authentication only</source>
|
||||||
<translation>Dovoli le avtentifikacijo z javnim kjučem</translation>
|
<translation>Dovoli le avtentifikacijo z javnim kjučem</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -372,63 +370,63 @@
|
||||||
<translation type="vanished">Nastavi geslo za uporabnika '%1':</translation>
|
<translation type="vanished">Nastavi geslo za uporabnika '%1':</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="188"/>
|
<location filename="../OptionsPopup.qml" line="190"/>
|
||||||
<source>Set authorized_keys for '%1':</source>
|
<source>Set authorized_keys for '%1':</source>
|
||||||
<translation>Nastavi authorized_keys za '%1':</translation>
|
<translation>Nastavi authorized_keys za '%1':</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="261"/>
|
<location filename="../OptionsPopup.qml" line="264"/>
|
||||||
<source>Configure wireless LAN</source>
|
<source>Configure wireless LAN</source>
|
||||||
<translation>Nastavi WiFi</translation>
|
<translation>Nastavi WiFi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="280"/>
|
<location filename="../OptionsPopup.qml" line="283"/>
|
||||||
<source>SSID:</source>
|
<source>SSID:</source>
|
||||||
<translation>SSID:</translation>
|
<translation>SSID:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="234"/>
|
<location filename="../OptionsPopup.qml" line="237"/>
|
||||||
<location filename="../OptionsPopup.qml" line="300"/>
|
<location filename="../OptionsPopup.qml" line="303"/>
|
||||||
<source>Password:</source>
|
<source>Password:</source>
|
||||||
<translation>Geslo:</translation>
|
<translation>Geslo:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="200"/>
|
<location filename="../OptionsPopup.qml" line="203"/>
|
||||||
<source>Set username and password</source>
|
<source>Set username and password</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="219"/>
|
<location filename="../OptionsPopup.qml" line="222"/>
|
||||||
<source>Username:</source>
|
<source>Username:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="295"/>
|
<location filename="../OptionsPopup.qml" line="298"/>
|
||||||
<source>Hidden SSID</source>
|
<source>Hidden SSID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="316"/>
|
<location filename="../OptionsPopup.qml" line="319"/>
|
||||||
<source>Show password</source>
|
<source>Show password</source>
|
||||||
<translation>Pokaži geslo</translation>
|
<translation>Pokaži geslo</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="321"/>
|
<location filename="../OptionsPopup.qml" line="324"/>
|
||||||
<source>Wireless LAN country:</source>
|
<source>Wireless LAN country:</source>
|
||||||
<translation>WiFi je v državi:</translation>
|
<translation>WiFi je v državi:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="332"/>
|
<location filename="../OptionsPopup.qml" line="335"/>
|
||||||
<source>Set locale settings</source>
|
<source>Set locale settings</source>
|
||||||
<translation>Nastavitve jezika</translation>
|
<translation>Nastavitve jezika</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="342"/>
|
<location filename="../OptionsPopup.qml" line="345"/>
|
||||||
<source>Time zone:</source>
|
<source>Time zone:</source>
|
||||||
<translation>Časovni pas:</translation>
|
<translation>Časovni pas:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="352"/>
|
<location filename="../OptionsPopup.qml" line="355"/>
|
||||||
<source>Keyboard layout:</source>
|
<source>Keyboard layout:</source>
|
||||||
<translation>Razporeditev tipkovnice:</translation>
|
<translation>Razporeditev tipkovnice:</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -437,27 +435,27 @@
|
||||||
<translation type="vanished">Preskoči čarovnika prvega zagona</translation>
|
<translation type="vanished">Preskoči čarovnika prvega zagona</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="365"/>
|
<location filename="../OptionsPopup.qml" line="368"/>
|
||||||
<source>Persistent settings</source>
|
<source>Persistent settings</source>
|
||||||
<translation>Trajne nastavitve</translation>
|
<translation>Trajne nastavitve</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="373"/>
|
<location filename="../OptionsPopup.qml" line="376"/>
|
||||||
<source>Play sound when finished</source>
|
<source>Play sound when finished</source>
|
||||||
<translation>Zaigraj zvok, ko končaš</translation>
|
<translation>Zaigraj zvok, ko končaš</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="377"/>
|
<location filename="../OptionsPopup.qml" line="380"/>
|
||||||
<source>Eject media when finished</source>
|
<source>Eject media when finished</source>
|
||||||
<translation>Izvrzi medij, ko končaš</translation>
|
<translation>Izvrzi medij, ko končaš</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="381"/>
|
<location filename="../OptionsPopup.qml" line="384"/>
|
||||||
<source>Enable telemetry</source>
|
<source>Enable telemetry</source>
|
||||||
<translation>Omogoči telemetrijo</translation>
|
<translation>Omogoči telemetrijo</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="394"/>
|
<location filename="../OptionsPopup.qml" line="397"/>
|
||||||
<source>SAVE</source>
|
<source>SAVE</source>
|
||||||
<translation>SHRANI</translation>
|
<translation>SHRANI</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -473,27 +471,32 @@
|
||||||
<context>
|
<context>
|
||||||
<name>UseSavedSettingsPopup</name>
|
<name>UseSavedSettingsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="72"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="73"/>
|
||||||
<source>Warning: advanced settings set</source>
|
<source>Warning: advanced settings set</source>
|
||||||
<translation>Opozorilo: nastavljene napredne nastavitve</translation>
|
<translation>Opozorilo: nastavljene napredne nastavitve</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="86"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="87"/>
|
||||||
<source>Would you like to apply the image customization settings saved earlier?</source>
|
<source>Would you like to apply the image customization settings saved earlier?</source>
|
||||||
<translation>Bi želeli uporabit prilagoditve slike diska shranjene nazadnje?</translation>
|
<translation>Bi želeli uporabit prilagoditve slike diska shranjene nazadnje?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="95"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="96"/>
|
||||||
|
<source>NO</source>
|
||||||
|
<translation>NE</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../UseSavedSettingsPopup.qml" line="106"/>
|
||||||
<source>NO, CLEAR SETTINGS</source>
|
<source>NO, CLEAR SETTINGS</source>
|
||||||
<translation>NE, POBRIŠI NASTAVITVE</translation>
|
<translation>NE, POBRIŠI NASTAVITVE</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="105"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="116"/>
|
||||||
<source>YES</source>
|
<source>YES</source>
|
||||||
<translation>DA</translation>
|
<translation>DA</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="115"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="126"/>
|
||||||
<source>EDIT SETTINGS</source>
|
<source>EDIT SETTINGS</source>
|
||||||
<translation>UREDI NASTAVITVE</translation>
|
<translation>UREDI NASTAVITVE</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -529,7 +532,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="147"/>
|
<location filename="../main.qml" line="147"/>
|
||||||
<location filename="../main.qml" line="1038"/>
|
<location filename="../main.qml" line="1041"/>
|
||||||
<source>CHOOSE STORAGE</source>
|
<source>CHOOSE STORAGE</source>
|
||||||
<translation>IZBERI DISK</translation>
|
<translation>IZBERI DISK</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -550,7 +553,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="221"/>
|
<location filename="../main.qml" line="221"/>
|
||||||
<location filename="../main.qml" line="965"/>
|
<location filename="../main.qml" line="968"/>
|
||||||
<source>Cancelling...</source>
|
<source>Cancelling...</source>
|
||||||
<translation>Prekinjam...</translation>
|
<translation>Prekinjam...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -561,8 +564,8 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="232"/>
|
<location filename="../main.qml" line="232"/>
|
||||||
<location filename="../main.qml" line="988"/>
|
<location filename="../main.qml" line="991"/>
|
||||||
<location filename="../main.qml" line="1057"/>
|
<location filename="../main.qml" line="1060"/>
|
||||||
<source>Finalizing...</source>
|
<source>Finalizing...</source>
|
||||||
<translation>Zakjučujem...</translation>
|
<translation>Zakjučujem...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -593,7 +596,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="505"/>
|
<location filename="../main.qml" line="505"/>
|
||||||
<location filename="../main.qml" line="1022"/>
|
<location filename="../main.qml" line="1025"/>
|
||||||
<source>Erase</source>
|
<source>Erase</source>
|
||||||
<translation>Odstrani</translation>
|
<translation>Odstrani</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -690,7 +693,7 @@
|
||||||
<translation>Na voljo je nova verzija tega programa. <br>Želite obiskati spletno stran za prenos?</translation>
|
<translation>Na voljo je nova verzija tega programa. <br>Želite obiskati spletno stran za prenos?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="968"/>
|
<location filename="../main.qml" line="971"/>
|
||||||
<source>Writing... %1%</source>
|
<source>Writing... %1%</source>
|
||||||
<translation>Pišem...%1%</translation>
|
<translation>Pišem...%1%</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -700,32 +703,32 @@
|
||||||
<translation>VSI obstoječi podatki na '%1' bodo izbrisani.<br>A ste prepričani, da želite nadaljevati?</translation>
|
<translation>VSI obstoječi podatki na '%1' bodo izbrisani.<br>A ste prepričani, da želite nadaljevati?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="947"/>
|
<location filename="../main.qml" line="950"/>
|
||||||
<source>Error downloading OS list from Internet</source>
|
<source>Error downloading OS list from Internet</source>
|
||||||
<translation>Napaka prenosa seznama OS iz interneta</translation>
|
<translation>Napaka prenosa seznama OS iz interneta</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="991"/>
|
<location filename="../main.qml" line="994"/>
|
||||||
<source>Verifying... %1%</source>
|
<source>Verifying... %1%</source>
|
||||||
<translation>Preverjam... %1%</translation>
|
<translation>Preverjam... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="998"/>
|
<location filename="../main.qml" line="1001"/>
|
||||||
<source>Preparing to write... (%1)</source>
|
<source>Preparing to write... (%1)</source>
|
||||||
<translation>Priprava na zapisovanje... (%1)</translation>
|
<translation>Priprava na zapisovanje... (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1014"/>
|
<location filename="../main.qml" line="1017"/>
|
||||||
<source>Error</source>
|
<source>Error</source>
|
||||||
<translation>Napaka</translation>
|
<translation>Napaka</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1021"/>
|
<location filename="../main.qml" line="1024"/>
|
||||||
<source>Write Successful</source>
|
<source>Write Successful</source>
|
||||||
<translation>Zapisovanje uspešno</translation>
|
<translation>Zapisovanje uspešno</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1023"/>
|
<location filename="../main.qml" line="1026"/>
|
||||||
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> je pobrisan<br><br>Sedaj lahko odstranite SD kartico iz čitalca oz iztaknete USB disk</translation>
|
<translation><b>%1</b> je pobrisan<br><br>Sedaj lahko odstranite SD kartico iz čitalca oz iztaknete USB disk</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -734,22 +737,22 @@
|
||||||
<translation type="vanished"><b>%1</b> je zapisan na <b>%2</b></translation>
|
<translation type="vanished"><b>%1</b> je zapisan na <b>%2</b></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1030"/>
|
<location filename="../main.qml" line="1033"/>
|
||||||
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> je zapisan na <b>%2</b><br><br>Sedaj lahko odstranite SD kartico iz čitalca oz iztaknete USB disk</translation>
|
<translation><b>%1</b> je zapisan na <b>%2</b><br><br>Sedaj lahko odstranite SD kartico iz čitalca oz iztaknete USB disk</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1098"/>
|
<location filename="../main.qml" line="1101"/>
|
||||||
<source>Error parsing os_list.json</source>
|
<source>Error parsing os_list.json</source>
|
||||||
<translation>Napaka procesiranja os_list.json</translation>
|
<translation>Napaka procesiranja os_list.json</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1271"/>
|
<location filename="../main.qml" line="1274"/>
|
||||||
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
||||||
<translation>Najprej prikopite USB disk, ki vsebuje slike diskov.<br>Slike diskov se morajo nahajati v korenski mapi USB diska.</translation>
|
<translation>Najprej prikopite USB disk, ki vsebuje slike diskov.<br>Slike diskov se morajo nahajati v korenski mapi USB diska.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1287"/>
|
<location filename="../main.qml" line="1290"/>
|
||||||
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
||||||
<translation>SD kartica je zaščitena pred pisanjem.<br>Premaknite stikalo zaklepanja, na levi strani kartice in poizkusite znova.</translation>
|
<translation>SD kartica je zaščitena pred pisanjem.<br>Premaknite stikalo zaklepanja, na levi strani kartice in poizkusite znova.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -33,162 +33,132 @@
|
||||||
<context>
|
<context>
|
||||||
<name>DownloadThread</name>
|
<name>DownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="147"/>
|
<location filename="../downloadthread.cpp" line="166"/>
|
||||||
<source>Error running diskpart: %1</source>
|
<source>Error running diskpart: %1</source>
|
||||||
<translation>Diskpart çalıştırılırken hata oluştu: %1</translation>
|
<translation>Diskpart çalıştırılırken hata oluştu: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="168"/>
|
<location filename="../downloadthread.cpp" line="187"/>
|
||||||
<source>Error removing existing partitions</source>
|
<source>Error removing existing partitions</source>
|
||||||
<translation>Mevcut bölümler kaldırılırken hata oluştu </translation>
|
<translation>Mevcut bölümler kaldırılırken hata oluştu </translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="194"/>
|
<location filename="../downloadthread.cpp" line="213"/>
|
||||||
<source>Authentication cancelled</source>
|
<source>Authentication cancelled</source>
|
||||||
<translation>Kimlik doğrulama iptal edildi</translation>
|
<translation>Kimlik doğrulama iptal edildi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="197"/>
|
<location filename="../downloadthread.cpp" line="216"/>
|
||||||
<source>Error running authopen to gain access to disk device '%1'</source>
|
<source>Error running authopen to gain access to disk device '%1'</source>
|
||||||
<translation>'%1' disk aygıtına erişmek için authopen çalıştırılırken hata oluştu</translation>
|
<translation>'%1' disk aygıtına erişmek için authopen çalıştırılırken hata oluştu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="198"/>
|
<location filename="../downloadthread.cpp" line="217"/>
|
||||||
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
||||||
<translation>Lütfen 'Raspberry Pi Imager'ın gizlilik ayarlarında ('dosyalar ve klasörler' altında veya alternatif olarak 'tam disk erişimi') 'çıkarılabilir birimlere erişim' izin verilip verilmediğini doğrulayın.</translation>
|
<translation>Lütfen 'Raspberry Pi Imager'ın gizlilik ayarlarında ('dosyalar ve klasörler' altında veya alternatif olarak 'tam disk erişimi') 'çıkarılabilir birimlere erişim' izin verilip verilmediğini doğrulayın.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="220"/>
|
<location filename="../downloadthread.cpp" line="239"/>
|
||||||
<source>Cannot open storage device '%1'.</source>
|
<source>Cannot open storage device '%1'.</source>
|
||||||
<translation>Depolama cihazı açılamıyor '%1'.</translation>
|
<translation>Depolama cihazı açılamıyor '%1'.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="262"/>
|
<location filename="../downloadthread.cpp" line="281"/>
|
||||||
<source>discarding existing data on drive</source>
|
<source>discarding existing data on drive</source>
|
||||||
<translation>sürücüdeki mevcut verileri sil</translation>
|
<translation>sürücüdeki mevcut verileri sil</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="282"/>
|
<location filename="../downloadthread.cpp" line="301"/>
|
||||||
<source>zeroing out first and last MB of drive</source>
|
<source>zeroing out first and last MB of drive</source>
|
||||||
<translation>sürücünün ilk ve son MB'sini sıfırlama</translation>
|
<translation>sürücünün ilk ve son MB'sini sıfırlama</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="288"/>
|
<location filename="../downloadthread.cpp" line="307"/>
|
||||||
<source>Write error while zero'ing out MBR</source>
|
<source>Write error while zero'ing out MBR</source>
|
||||||
<translation>MBR sıfırlanırken yazma hatası</translation>
|
<translation>MBR sıfırlanırken yazma hatası</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="779"/>
|
<location filename="../downloadthread.cpp" line="813"/>
|
||||||
<source>Error reading from storage.<br>SD card may be broken.</source>
|
<source>Error reading from storage.<br>SD card may be broken.</source>
|
||||||
<translation>Depolamadan okuma hatası.<br>SD kart arızalı olabilir.</translation>
|
<translation>Depolamadan okuma hatası.<br>SD kart arızalı olabilir.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="855"/>
|
|
||||||
<source>Waiting for FAT partition to be mounted</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="941"/>
|
|
||||||
<source>Error mounting FAT32 partition</source>
|
<source>Error mounting FAT32 partition</source>
|
||||||
<translation type="unfinished">FAT32 bölümü bağlanırken hata oluştu</translation>
|
<translation type="obsolete">FAT32 bölümü bağlanırken hata oluştu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="963"/>
|
|
||||||
<source>Operating system did not mount FAT32 partition</source>
|
<source>Operating system did not mount FAT32 partition</source>
|
||||||
<translation type="unfinished">İşletim sistemi FAT32 bölümünü bağlamadı</translation>
|
<translation type="obsolete">İşletim sistemi FAT32 bölümünü bağlamadı</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="996"/>
|
<location filename="../downloadthread.cpp" line="885"/>
|
||||||
<source>Unable to customize. File '%1' does not exist.</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1000"/>
|
|
||||||
<source>Customizing image</source>
|
<source>Customizing image</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1085"/>
|
<location filename="../downloadthread.cpp" line="451"/>
|
||||||
<source>Error creating firstrun.sh on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1037"/>
|
|
||||||
<source>Error writing to config.txt on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1102"/>
|
|
||||||
<source>Error creating user-data cloudinit file on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1116"/>
|
|
||||||
<source>Error creating network-config cloudinit file on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1139"/>
|
|
||||||
<source>Error writing to cmdline.txt on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="432"/>
|
|
||||||
<source>Access denied error while writing file to disk.</source>
|
<source>Access denied error while writing file to disk.</source>
|
||||||
<translation>Dosyayı diske yazarken erişim reddedildi hatası</translation>
|
<translation>Dosyayı diske yazarken erişim reddedildi hatası</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="437"/>
|
<location filename="../downloadthread.cpp" line="456"/>
|
||||||
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
||||||
<translation>Kontrollü Klasör Erişimi etkin görünüyor. Lütfen izin verilen uygulamalar listesine hem rpi-imager.exe'yi hem de fat32format.exe'yi ekleyin ve tekrar deneyin.</translation>
|
<translation>Kontrollü Klasör Erişimi etkin görünüyor. Lütfen izin verilen uygulamalar listesine hem rpi-imager.exe'yi hem de fat32format.exe'yi ekleyin ve tekrar deneyin.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="444"/>
|
<location filename="../downloadthread.cpp" line="463"/>
|
||||||
<source>Error writing file to disk</source>
|
<source>Error writing file to disk</source>
|
||||||
<translation>Dosyayı diske yazma hatası</translation>
|
<translation>Dosyayı diske yazma hatası</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="463"/>
|
<location filename="../downloadthread.cpp" line="482"/>
|
||||||
<source>Error downloading: %1</source>
|
<source>Error downloading: %1</source>
|
||||||
<translation>İndirilirken hata oluştu: %1</translation>
|
<translation>İndirilirken hata oluştu: %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="686"/>
|
<location filename="../downloadthread.cpp" line="705"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="757"/>
|
||||||
<source>Error writing to storage (while flushing)</source>
|
<source>Error writing to storage (while flushing)</source>
|
||||||
<translation>Depolama alanına yazma hatası (flushing sırasında)</translation>
|
<translation>Depolama alanına yazma hatası (flushing sırasında)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="693"/>
|
<location filename="../downloadthread.cpp" line="712"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="764"/>
|
||||||
<source>Error writing to storage (while fsync)</source>
|
<source>Error writing to storage (while fsync)</source>
|
||||||
<translation>Depoya yazma hatası (fsync sırasında)</translation>
|
<translation>Depoya yazma hatası (fsync sırasında)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="674"/>
|
<location filename="../downloadthread.cpp" line="693"/>
|
||||||
<source>Download corrupt. Hash does not match</source>
|
<source>Download corrupt. Hash does not match</source>
|
||||||
<translation>İndirme bozuk. Hash eşleşmiyor</translation>
|
<translation>İndirme bozuk. Hash eşleşmiyor</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="114"/>
|
<location filename="../downloadthread.cpp" line="118"/>
|
||||||
|
<source>unmounting drive</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../downloadthread.cpp" line="138"/>
|
||||||
<source>opening drive</source>
|
<source>opening drive</source>
|
||||||
<translation>sürücü açılıyor</translation>
|
<translation>sürücü açılıyor</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="300"/>
|
<location filename="../downloadthread.cpp" line="319"/>
|
||||||
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
||||||
<translation>Kartın son kısmını sıfırlamaya çalışırken yazma hatası. Kart yanlış kapasitenin tanımını yapıyor olabilir (olası sahte bölüm boyutu tanımı)</translation>
|
<translation>Kartın son kısmını sıfırlamaya çalışırken yazma hatası. Kart yanlış kapasitenin tanımını yapıyor olabilir (olası sahte bölüm boyutu tanımı)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="389"/>
|
<location filename="../downloadthread.cpp" line="408"/>
|
||||||
<source>starting download</source>
|
<source>starting download</source>
|
||||||
<translation>indirmeye başlanıyor</translation>
|
<translation>indirmeye başlanıyor</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="719"/>
|
<location filename="../downloadthread.cpp" line="747"/>
|
||||||
<source>Error writing first block (partition table)</source>
|
<source>Error writing first block (partition table)</source>
|
||||||
<translation>İlk bloğu yazma hatası (bölüm tablosu)</translation>
|
<translation>İlk bloğu yazma hatası (bölüm tablosu)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="798"/>
|
<location filename="../downloadthread.cpp" line="832"/>
|
||||||
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
||||||
<translation>Yazma doğrulanamadı. SD kartın içeriği, üzerine yazılandan farklı.</translation>
|
<translation>Yazma doğrulanamadı. SD kartın içeriği, üzerine yazılandan farklı.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -256,27 +226,27 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ImageWriter</name>
|
<name>ImageWriter</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="257"/>
|
<location filename="../imagewriter.cpp" line="248"/>
|
||||||
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
||||||
<translation>Depolama kapasitesi yeterince büyük değil.<br>En az %1 GB olması gerekiyor</translation>
|
<translation>Depolama kapasitesi yeterince büyük değil.<br>En az %1 GB olması gerekiyor</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="263"/>
|
<location filename="../imagewriter.cpp" line="254"/>
|
||||||
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
||||||
<translation>Giriş dosyası geçerli bir disk görüntüsü değil.<br>%1 bayt dosya boyutu 512 baytın katı değil.</translation>
|
<translation>Giriş dosyası geçerli bir disk görüntüsü değil.<br>%1 bayt dosya boyutu 512 baytın katı değil.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="445"/>
|
<location filename="../imagewriter.cpp" line="442"/>
|
||||||
<source>Downloading and writing image</source>
|
<source>Downloading and writing image</source>
|
||||||
<translation>Görüntü indirme ve yazma</translation>
|
<translation>Görüntü indirme ve yazma</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="578"/>
|
<location filename="../imagewriter.cpp" line="575"/>
|
||||||
<source>Select image</source>
|
<source>Select image</source>
|
||||||
<translation>Imaj seç</translation>
|
<translation>Imaj seç</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="979"/>
|
<location filename="../imagewriter.cpp" line="864"/>
|
||||||
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -320,128 +290,128 @@
|
||||||
<context>
|
<context>
|
||||||
<name>OptionsPopup</name>
|
<name>OptionsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="79"/>
|
<location filename="../OptionsPopup.qml" line="80"/>
|
||||||
<source>Advanced options</source>
|
<source>Advanced options</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="96"/>
|
<location filename="../OptionsPopup.qml" line="97"/>
|
||||||
<source>Image customization options</source>
|
<source>Image customization options</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="104"/>
|
<location filename="../OptionsPopup.qml" line="105"/>
|
||||||
<source>for this session only</source>
|
<source>for this session only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="105"/>
|
<location filename="../OptionsPopup.qml" line="106"/>
|
||||||
<source>to always use</source>
|
<source>to always use</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="119"/>
|
<location filename="../OptionsPopup.qml" line="120"/>
|
||||||
<source>Set hostname:</source>
|
<source>Set hostname:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="138"/>
|
<location filename="../OptionsPopup.qml" line="140"/>
|
||||||
<source>Enable SSH</source>
|
<source>Enable SSH</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="160"/>
|
<location filename="../OptionsPopup.qml" line="162"/>
|
||||||
<source>Use password authentication</source>
|
<source>Use password authentication</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="170"/>
|
<location filename="../OptionsPopup.qml" line="172"/>
|
||||||
<source>Allow public-key authentication only</source>
|
<source>Allow public-key authentication only</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="188"/>
|
<location filename="../OptionsPopup.qml" line="190"/>
|
||||||
<source>Set authorized_keys for '%1':</source>
|
<source>Set authorized_keys for '%1':</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="261"/>
|
<location filename="../OptionsPopup.qml" line="264"/>
|
||||||
<source>Configure wireless LAN</source>
|
<source>Configure wireless LAN</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="280"/>
|
<location filename="../OptionsPopup.qml" line="283"/>
|
||||||
<source>SSID:</source>
|
<source>SSID:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="234"/>
|
<location filename="../OptionsPopup.qml" line="237"/>
|
||||||
<location filename="../OptionsPopup.qml" line="300"/>
|
<location filename="../OptionsPopup.qml" line="303"/>
|
||||||
<source>Password:</source>
|
<source>Password:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="200"/>
|
<location filename="../OptionsPopup.qml" line="203"/>
|
||||||
<source>Set username and password</source>
|
<source>Set username and password</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="219"/>
|
<location filename="../OptionsPopup.qml" line="222"/>
|
||||||
<source>Username:</source>
|
<source>Username:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="295"/>
|
<location filename="../OptionsPopup.qml" line="298"/>
|
||||||
<source>Hidden SSID</source>
|
<source>Hidden SSID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="316"/>
|
<location filename="../OptionsPopup.qml" line="319"/>
|
||||||
<source>Show password</source>
|
<source>Show password</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="321"/>
|
<location filename="../OptionsPopup.qml" line="324"/>
|
||||||
<source>Wireless LAN country:</source>
|
<source>Wireless LAN country:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="332"/>
|
<location filename="../OptionsPopup.qml" line="335"/>
|
||||||
<source>Set locale settings</source>
|
<source>Set locale settings</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="342"/>
|
<location filename="../OptionsPopup.qml" line="345"/>
|
||||||
<source>Time zone:</source>
|
<source>Time zone:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="352"/>
|
<location filename="../OptionsPopup.qml" line="355"/>
|
||||||
<source>Keyboard layout:</source>
|
<source>Keyboard layout:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="365"/>
|
<location filename="../OptionsPopup.qml" line="368"/>
|
||||||
<source>Persistent settings</source>
|
<source>Persistent settings</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="373"/>
|
<location filename="../OptionsPopup.qml" line="376"/>
|
||||||
<source>Play sound when finished</source>
|
<source>Play sound when finished</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="377"/>
|
<location filename="../OptionsPopup.qml" line="380"/>
|
||||||
<source>Eject media when finished</source>
|
<source>Eject media when finished</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="381"/>
|
<location filename="../OptionsPopup.qml" line="384"/>
|
||||||
<source>Enable telemetry</source>
|
<source>Enable telemetry</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="394"/>
|
<location filename="../OptionsPopup.qml" line="397"/>
|
||||||
<source>SAVE</source>
|
<source>SAVE</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -457,27 +427,32 @@
|
||||||
<context>
|
<context>
|
||||||
<name>UseSavedSettingsPopup</name>
|
<name>UseSavedSettingsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="72"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="73"/>
|
||||||
<source>Warning: advanced settings set</source>
|
<source>Warning: advanced settings set</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="86"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="87"/>
|
||||||
<source>Would you like to apply the image customization settings saved earlier?</source>
|
<source>Would you like to apply the image customization settings saved earlier?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="95"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="96"/>
|
||||||
|
<source>NO</source>
|
||||||
|
<translation>HAYIR</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../UseSavedSettingsPopup.qml" line="106"/>
|
||||||
<source>NO, CLEAR SETTINGS</source>
|
<source>NO, CLEAR SETTINGS</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="105"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="116"/>
|
||||||
<source>YES</source>
|
<source>YES</source>
|
||||||
<translation type="unfinished">EVET</translation>
|
<translation type="unfinished">EVET</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="115"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="126"/>
|
||||||
<source>EDIT SETTINGS</source>
|
<source>EDIT SETTINGS</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -513,7 +488,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="147"/>
|
<location filename="../main.qml" line="147"/>
|
||||||
<location filename="../main.qml" line="1038"/>
|
<location filename="../main.qml" line="1041"/>
|
||||||
<source>CHOOSE STORAGE</source>
|
<source>CHOOSE STORAGE</source>
|
||||||
<translation>SD KART SEÇİN</translation>
|
<translation>SD KART SEÇİN</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -538,7 +513,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="221"/>
|
<location filename="../main.qml" line="221"/>
|
||||||
<location filename="../main.qml" line="965"/>
|
<location filename="../main.qml" line="968"/>
|
||||||
<source>Cancelling...</source>
|
<source>Cancelling...</source>
|
||||||
<translation>İptal ediliyor...</translation>
|
<translation>İptal ediliyor...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -549,14 +524,14 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="232"/>
|
<location filename="../main.qml" line="232"/>
|
||||||
<location filename="../main.qml" line="988"/>
|
<location filename="../main.qml" line="991"/>
|
||||||
<location filename="../main.qml" line="1057"/>
|
<location filename="../main.qml" line="1060"/>
|
||||||
<source>Finalizing...</source>
|
<source>Finalizing...</source>
|
||||||
<translation>Bitiriliyor...</translation>
|
<translation>Bitiriliyor...</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="505"/>
|
<location filename="../main.qml" line="505"/>
|
||||||
<location filename="../main.qml" line="1022"/>
|
<location filename="../main.qml" line="1025"/>
|
||||||
<source>Erase</source>
|
<source>Erase</source>
|
||||||
<translation>Sil</translation>
|
<translation>Sil</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -679,7 +654,7 @@
|
||||||
<translation>Görüntüleyicinin daha yeni bir sürümü var. <br> İndirmek için web sitesini ziyaret etmek ister misiniz?</translation>
|
<translation>Görüntüleyicinin daha yeni bir sürümü var. <br> İndirmek için web sitesini ziyaret etmek ister misiniz?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="968"/>
|
<location filename="../main.qml" line="971"/>
|
||||||
<source>Writing... %1%</source>
|
<source>Writing... %1%</source>
|
||||||
<translation>Yazılıyor... %1%</translation>
|
<translation>Yazılıyor... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -689,32 +664,32 @@
|
||||||
<translation>'%1' üzerindeki mevcut tüm veriler silinecek.<br>Devam etmek istediğinizden emin misiniz?</translation>
|
<translation>'%1' üzerindeki mevcut tüm veriler silinecek.<br>Devam etmek istediğinizden emin misiniz?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="947"/>
|
<location filename="../main.qml" line="950"/>
|
||||||
<source>Error downloading OS list from Internet</source>
|
<source>Error downloading OS list from Internet</source>
|
||||||
<translation>İnternetten işletim sistemi listesi indirilirken hata oluştu</translation>
|
<translation>İnternetten işletim sistemi listesi indirilirken hata oluştu</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="991"/>
|
<location filename="../main.qml" line="994"/>
|
||||||
<source>Verifying... %1%</source>
|
<source>Verifying... %1%</source>
|
||||||
<translation>Doğrulanıyor... %1%</translation>
|
<translation>Doğrulanıyor... %1%</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="998"/>
|
<location filename="../main.qml" line="1001"/>
|
||||||
<source>Preparing to write... (%1)</source>
|
<source>Preparing to write... (%1)</source>
|
||||||
<translation>Yazdırmaya hazırlanıyor... (%1)</translation>
|
<translation>Yazdırmaya hazırlanıyor... (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1014"/>
|
<location filename="../main.qml" line="1017"/>
|
||||||
<source>Error</source>
|
<source>Error</source>
|
||||||
<translation>Hata</translation>
|
<translation>Hata</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1021"/>
|
<location filename="../main.qml" line="1024"/>
|
||||||
<source>Write Successful</source>
|
<source>Write Successful</source>
|
||||||
<translation>Başarılı Yazıldı</translation>
|
<translation>Başarılı Yazıldı</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1023"/>
|
<location filename="../main.qml" line="1026"/>
|
||||||
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> silindi <br><br> Artık SD kartı okuyucudan çıkarabilirsiniz</translation>
|
<translation><b>%1</b> silindi <br><br> Artık SD kartı okuyucudan çıkarabilirsiniz</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -723,22 +698,22 @@
|
||||||
<translation type="vanished"><b>%1</b> <b>%2</b><br><br> üzerine yazıldı</translation>
|
<translation type="vanished"><b>%1</b> <b>%2</b><br><br> üzerine yazıldı</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1030"/>
|
<location filename="../main.qml" line="1033"/>
|
||||||
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> <b>%2</b><br><br> üzerine yazıldı. Artık SD kartı okuyucudan çıkarabilirsiniz</translation>
|
<translation><b>%1</b> <b>%2</b><br><br> üzerine yazıldı. Artık SD kartı okuyucudan çıkarabilirsiniz</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1098"/>
|
<location filename="../main.qml" line="1101"/>
|
||||||
<source>Error parsing os_list.json</source>
|
<source>Error parsing os_list.json</source>
|
||||||
<translation>os_list.json ayrıştırma hatası</translation>
|
<translation>os_list.json ayrıştırma hatası</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1271"/>
|
<location filename="../main.qml" line="1274"/>
|
||||||
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
||||||
<translation>Önce görüntüler içeren bir USB bellek bağlayın.<br> Görüntüler USB belleğin kök klasöründe bulunmalıdır.</translation>
|
<translation>Önce görüntüler içeren bir USB bellek bağlayın.<br> Görüntüler USB belleğin kök klasöründe bulunmalıdır.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1287"/>
|
<location filename="../main.qml" line="1290"/>
|
||||||
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
||||||
<translation>SD kart yazma korumalı. <br> Kartın sol tarafındaki kilit anahtarını yukarı itin ve tekrar deneyin.</translation>
|
<translation>SD kart yazma korumalı. <br> Kartın sol tarafındaki kilit anahtarını yukarı itin ve tekrar deneyin.</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -33,162 +33,148 @@
|
||||||
<context>
|
<context>
|
||||||
<name>DownloadThread</name>
|
<name>DownloadThread</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="147"/>
|
<location filename="../downloadthread.cpp" line="166"/>
|
||||||
<source>Error running diskpart: %1</source>
|
<source>Error running diskpart: %1</source>
|
||||||
<translation>运行 “diskpart” 命令错误 %1</translation>
|
<translation>运行 “diskpart” 命令错误 %1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="168"/>
|
<location filename="../downloadthread.cpp" line="187"/>
|
||||||
<source>Error removing existing partitions</source>
|
<source>Error removing existing partitions</source>
|
||||||
<translation>删除现有分区时出错</translation>
|
<translation>删除现有分区时出错</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="194"/>
|
<location filename="../downloadthread.cpp" line="213"/>
|
||||||
<source>Authentication cancelled</source>
|
<source>Authentication cancelled</source>
|
||||||
<translation>认证已取消</translation>
|
<translation>认证已取消</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="197"/>
|
<location filename="../downloadthread.cpp" line="216"/>
|
||||||
<source>Error running authopen to gain access to disk device '%1'</source>
|
<source>Error running authopen to gain access to disk device '%1'</source>
|
||||||
<translation>运行authopen以获得对磁盘设备'%1'的访问权限时出错</translation>
|
<translation>运行authopen以获得对磁盘设备'%1'的访问权限时出错</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="198"/>
|
<location filename="../downloadthread.cpp" line="217"/>
|
||||||
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
<source>Please verify if 'Raspberry Pi Imager' is allowed access to 'removable volumes' in privacy settings (under 'files and folders' or alternatively give it 'full disk access').</source>
|
||||||
<translation>请验证是否在隐私设置中允许“ Raspberry Pi Imager”访问“可移动卷”(在“文件和文件夹”下,或者为它提供“完全磁盘访问”)的权限。</translation>
|
<translation>请验证是否在隐私设置中允许“ Raspberry Pi Imager”访问“可移动卷”(在“文件和文件夹”下,或者为它提供“完全磁盘访问”)的权限。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="220"/>
|
<location filename="../downloadthread.cpp" line="239"/>
|
||||||
<source>Cannot open storage device '%1'.</source>
|
<source>Cannot open storage device '%1'.</source>
|
||||||
<translation>无法打开存储设备'%1'。</translation>
|
<translation>无法打开存储设备'%1'。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="262"/>
|
<location filename="../downloadthread.cpp" line="281"/>
|
||||||
<source>discarding existing data on drive</source>
|
<source>discarding existing data on drive</source>
|
||||||
<translation>删除现有数据</translation>
|
<translation>删除现有数据</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="282"/>
|
<location filename="../downloadthread.cpp" line="301"/>
|
||||||
<source>zeroing out first and last MB of drive</source>
|
<source>zeroing out first and last MB of drive</source>
|
||||||
<translation>清空驱动器未使用的数据</translation>
|
<translation>清空驱动器未使用的数据</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="288"/>
|
<location filename="../downloadthread.cpp" line="307"/>
|
||||||
<source>Write error while zero'ing out MBR</source>
|
<source>Write error while zero'ing out MBR</source>
|
||||||
<translation>将MBR清零时写入错误</translation>
|
<translation>将MBR清零时写入错误</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="779"/>
|
<location filename="../downloadthread.cpp" line="813"/>
|
||||||
<source>Error reading from storage.<br>SD card may be broken.</source>
|
<source>Error reading from storage.<br>SD card may be broken.</source>
|
||||||
<translation>从存储读取数据时错误。<br>SD卡可能已损坏。</translation>
|
<translation>从存储读取数据时错误。<br>SD卡可能已损坏。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="855"/>
|
|
||||||
<source>Waiting for FAT partition to be mounted</source>
|
<source>Waiting for FAT partition to be mounted</source>
|
||||||
<translation>等待FAT分区挂载</translation>
|
<translation type="vanished">等待FAT分区挂载</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="941"/>
|
|
||||||
<source>Error mounting FAT32 partition</source>
|
<source>Error mounting FAT32 partition</source>
|
||||||
<translation>挂载FAT32分区错误</translation>
|
<translation type="vanished">挂载FAT32分区错误</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="963"/>
|
|
||||||
<source>Operating system did not mount FAT32 partition</source>
|
<source>Operating system did not mount FAT32 partition</source>
|
||||||
<translation>操作系统未能挂载FAT32分区</translation>
|
<translation type="vanished">操作系统未能挂载FAT32分区</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="996"/>
|
<location filename="../downloadthread.cpp" line="885"/>
|
||||||
<source>Unable to customize. File '%1' does not exist.</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1000"/>
|
|
||||||
<source>Customizing image</source>
|
<source>Customizing image</source>
|
||||||
<translation>使用自定义镜像</translation>
|
<translation>使用自定义镜像</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1085"/>
|
|
||||||
<source>Error creating firstrun.sh on FAT partition</source>
|
<source>Error creating firstrun.sh on FAT partition</source>
|
||||||
<translation>在FAT分区上创建firstrun.sh脚本文件时出错</translation>
|
<translation type="vanished">在FAT分区上创建firstrun.sh脚本文件时出错</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1037"/>
|
|
||||||
<source>Error writing to config.txt on FAT partition</source>
|
<source>Error writing to config.txt on FAT partition</source>
|
||||||
<translation>在FAT分区上写入config.txt时出错</translation>
|
<translation type="vanished">在FAT分区上写入config.txt时出错</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="1102"/>
|
|
||||||
<source>Error creating user-data cloudinit file on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1116"/>
|
|
||||||
<source>Error creating network-config cloudinit file on FAT partition</source>
|
|
||||||
<translation type="unfinished"></translation>
|
|
||||||
</message>
|
|
||||||
<message>
|
|
||||||
<location filename="../downloadthread.cpp" line="1139"/>
|
|
||||||
<source>Error writing to cmdline.txt on FAT partition</source>
|
<source>Error writing to cmdline.txt on FAT partition</source>
|
||||||
<translation>在FAT分区上写入cmdline.txt时出错</translation>
|
<translation type="vanished">在FAT分区上写入cmdline.txt时出错</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="432"/>
|
<location filename="../downloadthread.cpp" line="451"/>
|
||||||
<source>Access denied error while writing file to disk.</source>
|
<source>Access denied error while writing file to disk.</source>
|
||||||
<translation>将文件写入磁盘时访问被拒绝。</translation>
|
<translation>将文件写入磁盘时访问被拒绝。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="437"/>
|
<location filename="../downloadthread.cpp" line="456"/>
|
||||||
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
<source>Controlled Folder Access seems to be enabled. Please add both rpi-imager.exe and fat32format.exe to the list of allowed apps and try again.</source>
|
||||||
<translation>受控文件夹访问似乎已启用。 请将rpi-imager.exe和fat32format.exe都添加到允许的应用程序列表中,然后重试。</translation>
|
<translation>受控文件夹访问似乎已启用。 请将rpi-imager.exe和fat32format.exe都添加到允许的应用程序列表中,然后重试。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="444"/>
|
<location filename="../downloadthread.cpp" line="463"/>
|
||||||
<source>Error writing file to disk</source>
|
<source>Error writing file to disk</source>
|
||||||
<translation>将文件写入磁盘时出错</translation>
|
<translation>将文件写入磁盘时出错</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="463"/>
|
<location filename="../downloadthread.cpp" line="482"/>
|
||||||
<source>Error downloading: %1</source>
|
<source>Error downloading: %1</source>
|
||||||
<translation>下载文件错误,已下载:%1</translation>
|
<translation>下载文件错误,已下载:%1</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="686"/>
|
<location filename="../downloadthread.cpp" line="705"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="757"/>
|
||||||
<source>Error writing to storage (while flushing)</source>
|
<source>Error writing to storage (while flushing)</source>
|
||||||
<translation>刷写存储时出错</translation>
|
<translation>刷写存储时出错</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="693"/>
|
<location filename="../downloadthread.cpp" line="712"/>
|
||||||
|
<location filename="../downloadthread.cpp" line="764"/>
|
||||||
<source>Error writing to storage (while fsync)</source>
|
<source>Error writing to storage (while fsync)</source>
|
||||||
<translation>在fsync时写入存储时出错</translation>
|
<translation>在fsync时写入存储时出错</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="674"/>
|
<location filename="../downloadthread.cpp" line="693"/>
|
||||||
<source>Download corrupt. Hash does not match</source>
|
<source>Download corrupt. Hash does not match</source>
|
||||||
<translation>下载的文件损坏。 哈希值不匹配</translation>
|
<translation>下载的文件损坏。 哈希值不匹配</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="114"/>
|
<location filename="../downloadthread.cpp" line="118"/>
|
||||||
|
<source>unmounting drive</source>
|
||||||
|
<translation type="unfinished"></translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../downloadthread.cpp" line="138"/>
|
||||||
<source>opening drive</source>
|
<source>opening drive</source>
|
||||||
<translation>打开驱动器</translation>
|
<translation>打开驱动器</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="300"/>
|
<location filename="../downloadthread.cpp" line="319"/>
|
||||||
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
<source>Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit).</source>
|
||||||
<translation>写入镜像失败<br>SD卡可能损坏。</translation>
|
<translation>写入镜像失败<br>SD卡可能损坏。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="389"/>
|
<location filename="../downloadthread.cpp" line="408"/>
|
||||||
<source>starting download</source>
|
<source>starting download</source>
|
||||||
<translation>开始下载</translation>
|
<translation>开始下载</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="719"/>
|
<location filename="../downloadthread.cpp" line="747"/>
|
||||||
<source>Error writing first block (partition table)</source>
|
<source>Error writing first block (partition table)</source>
|
||||||
<translation>写入第一个块(分区表)时出错</translation>
|
<translation>写入第一个块(分区表)时出错</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../downloadthread.cpp" line="798"/>
|
<location filename="../downloadthread.cpp" line="832"/>
|
||||||
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
<source>Verifying write failed. Contents of SD card is different from what was written to it.</source>
|
||||||
<translation>验证写入失败。 SD卡的内容与写入的内容不同。</translation>
|
<translation>验证写入失败。 SD卡的内容与写入的内容不同。</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -256,27 +242,27 @@
|
||||||
<context>
|
<context>
|
||||||
<name>ImageWriter</name>
|
<name>ImageWriter</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="257"/>
|
<location filename="../imagewriter.cpp" line="248"/>
|
||||||
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
<source>Storage capacity is not large enough.<br>Needs to be at least %1 GB.</source>
|
||||||
<translation>存储容量不足。<br>至少需要%1 GB的空白空间.</translation>
|
<translation>存储容量不足。<br>至少需要%1 GB的空白空间.</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="263"/>
|
<location filename="../imagewriter.cpp" line="254"/>
|
||||||
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
<source>Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes.</source>
|
||||||
<translation>输入文件不是有效的磁盘映像。<br>文件大小%1字节不是512字节的倍数。</translation>
|
<translation>输入文件不是有效的磁盘映像。<br>文件大小%1字节不是512字节的倍数。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="445"/>
|
<location filename="../imagewriter.cpp" line="442"/>
|
||||||
<source>Downloading and writing image</source>
|
<source>Downloading and writing image</source>
|
||||||
<translation>下载和写入镜像</translation>
|
<translation>下载和写入镜像</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="578"/>
|
<location filename="../imagewriter.cpp" line="575"/>
|
||||||
<source>Select image</source>
|
<source>Select image</source>
|
||||||
<translation>选择镜像</translation>
|
<translation>选择镜像</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../imagewriter.cpp" line="979"/>
|
<location filename="../imagewriter.cpp" line="864"/>
|
||||||
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
<source>Would you like to prefill the wifi password from the system keychain?</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -320,22 +306,22 @@
|
||||||
<context>
|
<context>
|
||||||
<name>OptionsPopup</name>
|
<name>OptionsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="79"/>
|
<location filename="../OptionsPopup.qml" line="80"/>
|
||||||
<source>Advanced options</source>
|
<source>Advanced options</source>
|
||||||
<translation>高级设置</translation>
|
<translation>高级设置</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="96"/>
|
<location filename="../OptionsPopup.qml" line="97"/>
|
||||||
<source>Image customization options</source>
|
<source>Image customization options</source>
|
||||||
<translation>镜像自定义选项</translation>
|
<translation>镜像自定义选项</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="104"/>
|
<location filename="../OptionsPopup.qml" line="105"/>
|
||||||
<source>for this session only</source>
|
<source>for this session only</source>
|
||||||
<translation>仅限本次</translation>
|
<translation>仅限本次</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="105"/>
|
<location filename="../OptionsPopup.qml" line="106"/>
|
||||||
<source>to always use</source>
|
<source>to always use</source>
|
||||||
<translation>永久保存</translation>
|
<translation>永久保存</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -344,22 +330,22 @@
|
||||||
<translation type="vanished">禁用扫描</translation>
|
<translation type="vanished">禁用扫描</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="119"/>
|
<location filename="../OptionsPopup.qml" line="120"/>
|
||||||
<source>Set hostname:</source>
|
<source>Set hostname:</source>
|
||||||
<translation>设置主机名:</translation>
|
<translation>设置主机名:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="138"/>
|
<location filename="../OptionsPopup.qml" line="140"/>
|
||||||
<source>Enable SSH</source>
|
<source>Enable SSH</source>
|
||||||
<translation>开启SSH服务</translation>
|
<translation>开启SSH服务</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="160"/>
|
<location filename="../OptionsPopup.qml" line="162"/>
|
||||||
<source>Use password authentication</source>
|
<source>Use password authentication</source>
|
||||||
<translation>使用密码登录</translation>
|
<translation>使用密码登录</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="170"/>
|
<location filename="../OptionsPopup.qml" line="172"/>
|
||||||
<source>Allow public-key authentication only</source>
|
<source>Allow public-key authentication only</source>
|
||||||
<translation>只允许使用公匙登录</translation>
|
<translation>只允许使用公匙登录</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -368,63 +354,63 @@
|
||||||
<translation type="vanished">设置'%1'用户的密码:</translation>
|
<translation type="vanished">设置'%1'用户的密码:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="188"/>
|
<location filename="../OptionsPopup.qml" line="190"/>
|
||||||
<source>Set authorized_keys for '%1':</source>
|
<source>Set authorized_keys for '%1':</source>
|
||||||
<translation>设置%1用户的登录密匙:</translation>
|
<translation>设置%1用户的登录密匙:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="261"/>
|
<location filename="../OptionsPopup.qml" line="264"/>
|
||||||
<source>Configure wireless LAN</source>
|
<source>Configure wireless LAN</source>
|
||||||
<translation>配置WiFi</translation>
|
<translation>配置WiFi</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="280"/>
|
<location filename="../OptionsPopup.qml" line="283"/>
|
||||||
<source>SSID:</source>
|
<source>SSID:</source>
|
||||||
<translation>热点名:</translation>
|
<translation>热点名:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="234"/>
|
<location filename="../OptionsPopup.qml" line="237"/>
|
||||||
<location filename="../OptionsPopup.qml" line="300"/>
|
<location filename="../OptionsPopup.qml" line="303"/>
|
||||||
<source>Password:</source>
|
<source>Password:</source>
|
||||||
<translation>密码:</translation>
|
<translation>密码:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="200"/>
|
<location filename="../OptionsPopup.qml" line="203"/>
|
||||||
<source>Set username and password</source>
|
<source>Set username and password</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="219"/>
|
<location filename="../OptionsPopup.qml" line="222"/>
|
||||||
<source>Username:</source>
|
<source>Username:</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="295"/>
|
<location filename="../OptionsPopup.qml" line="298"/>
|
||||||
<source>Hidden SSID</source>
|
<source>Hidden SSID</source>
|
||||||
<translation type="unfinished"></translation>
|
<translation type="unfinished"></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="316"/>
|
<location filename="../OptionsPopup.qml" line="319"/>
|
||||||
<source>Show password</source>
|
<source>Show password</source>
|
||||||
<translation>显示密码</translation>
|
<translation>显示密码</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="321"/>
|
<location filename="../OptionsPopup.qml" line="324"/>
|
||||||
<source>Wireless LAN country:</source>
|
<source>Wireless LAN country:</source>
|
||||||
<translation>WIFI国家:</translation>
|
<translation>WIFI国家:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="332"/>
|
<location filename="../OptionsPopup.qml" line="335"/>
|
||||||
<source>Set locale settings</source>
|
<source>Set locale settings</source>
|
||||||
<translation>语言设置</translation>
|
<translation>语言设置</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="342"/>
|
<location filename="../OptionsPopup.qml" line="345"/>
|
||||||
<source>Time zone:</source>
|
<source>Time zone:</source>
|
||||||
<translation>时区:</translation>
|
<translation>时区:</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="352"/>
|
<location filename="../OptionsPopup.qml" line="355"/>
|
||||||
<source>Keyboard layout:</source>
|
<source>Keyboard layout:</source>
|
||||||
<translation>键盘布局:</translation>
|
<translation>键盘布局:</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -433,27 +419,27 @@
|
||||||
<translation type="vanished">跳过首次启动向导</translation>
|
<translation type="vanished">跳过首次启动向导</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="365"/>
|
<location filename="../OptionsPopup.qml" line="368"/>
|
||||||
<source>Persistent settings</source>
|
<source>Persistent settings</source>
|
||||||
<translation>永久设置</translation>
|
<translation>永久设置</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="373"/>
|
<location filename="../OptionsPopup.qml" line="376"/>
|
||||||
<source>Play sound when finished</source>
|
<source>Play sound when finished</source>
|
||||||
<translation>完成后播放提示音</translation>
|
<translation>完成后播放提示音</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="377"/>
|
<location filename="../OptionsPopup.qml" line="380"/>
|
||||||
<source>Eject media when finished</source>
|
<source>Eject media when finished</source>
|
||||||
<translation>完成后弹出磁盘</translation>
|
<translation>完成后弹出磁盘</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="381"/>
|
<location filename="../OptionsPopup.qml" line="384"/>
|
||||||
<source>Enable telemetry</source>
|
<source>Enable telemetry</source>
|
||||||
<translation>启用遥测</translation>
|
<translation>启用遥测</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../OptionsPopup.qml" line="394"/>
|
<location filename="../OptionsPopup.qml" line="397"/>
|
||||||
<source>SAVE</source>
|
<source>SAVE</source>
|
||||||
<translation>保存</translation>
|
<translation>保存</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -469,27 +455,32 @@
|
||||||
<context>
|
<context>
|
||||||
<name>UseSavedSettingsPopup</name>
|
<name>UseSavedSettingsPopup</name>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="72"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="73"/>
|
||||||
<source>Warning: advanced settings set</source>
|
<source>Warning: advanced settings set</source>
|
||||||
<translation>警告:高级设置已设置</translation>
|
<translation>警告:高级设置已设置</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="86"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="87"/>
|
||||||
<source>Would you like to apply the image customization settings saved earlier?</source>
|
<source>Would you like to apply the image customization settings saved earlier?</source>
|
||||||
<translation>您要应用之前保存的自定义镜像设置吗?</translation>
|
<translation>您要应用之前保存的自定义镜像设置吗?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="95"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="96"/>
|
||||||
|
<source>NO</source>
|
||||||
|
<translation type="unfinished">不</translation>
|
||||||
|
</message>
|
||||||
|
<message>
|
||||||
|
<location filename="../UseSavedSettingsPopup.qml" line="106"/>
|
||||||
<source>NO, CLEAR SETTINGS</source>
|
<source>NO, CLEAR SETTINGS</source>
|
||||||
<translation>清空所有设置</translation>
|
<translation>清空所有设置</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="105"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="116"/>
|
||||||
<source>YES</source>
|
<source>YES</source>
|
||||||
<translation>是</translation>
|
<translation>是</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../UseSavedSettingsPopup.qml" line="115"/>
|
<location filename="../UseSavedSettingsPopup.qml" line="126"/>
|
||||||
<source>EDIT SETTINGS</source>
|
<source>EDIT SETTINGS</source>
|
||||||
<translation>编辑设置</translation>
|
<translation>编辑设置</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -530,7 +521,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="147"/>
|
<location filename="../main.qml" line="147"/>
|
||||||
<location filename="../main.qml" line="1038"/>
|
<location filename="../main.qml" line="1041"/>
|
||||||
<source>CHOOSE STORAGE</source>
|
<source>CHOOSE STORAGE</source>
|
||||||
<translation>选择SD卡</translation>
|
<translation>选择SD卡</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -545,7 +536,7 @@
|
||||||
<translation>烧录</translation>
|
<translation>烧录</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="968"/>
|
<location filename="../main.qml" line="971"/>
|
||||||
<source>Writing... %1%</source>
|
<source>Writing... %1%</source>
|
||||||
<translation>写入中...%1%</translation>
|
<translation>写入中...%1%</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -570,7 +561,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="221"/>
|
<location filename="../main.qml" line="221"/>
|
||||||
<location filename="../main.qml" line="965"/>
|
<location filename="../main.qml" line="968"/>
|
||||||
<source>Cancelling...</source>
|
<source>Cancelling...</source>
|
||||||
<translation>取消...</translation>
|
<translation>取消...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -581,8 +572,8 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="232"/>
|
<location filename="../main.qml" line="232"/>
|
||||||
<location filename="../main.qml" line="988"/>
|
<location filename="../main.qml" line="991"/>
|
||||||
<location filename="../main.qml" line="1057"/>
|
<location filename="../main.qml" line="1060"/>
|
||||||
<source>Finalizing...</source>
|
<source>Finalizing...</source>
|
||||||
<translation>正在完成...</translation>
|
<translation>正在完成...</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -613,7 +604,7 @@
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="505"/>
|
<location filename="../main.qml" line="505"/>
|
||||||
<location filename="../main.qml" line="1022"/>
|
<location filename="../main.qml" line="1025"/>
|
||||||
<source>Erase</source>
|
<source>Erase</source>
|
||||||
<translation>擦除</translation>
|
<translation>擦除</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -668,12 +659,12 @@
|
||||||
<translation>有较新版本的rpi-imager。<br>需要下载更新吗?</translation>
|
<translation>有较新版本的rpi-imager。<br>需要下载更新吗?</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="998"/>
|
<location filename="../main.qml" line="1001"/>
|
||||||
<source>Preparing to write... (%1)</source>
|
<source>Preparing to write... (%1)</source>
|
||||||
<translation>写入中 (%1)</translation>
|
<translation>写入中 (%1)</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1023"/>
|
<location filename="../main.qml" line="1026"/>
|
||||||
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been erased<br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1 </ b>已被删除<br> <br>您现在可以从读取器中取出SD卡</translation>
|
<translation><b>%1 </ b>已被删除<br> <br>您现在可以从读取器中取出SD卡</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -682,17 +673,17 @@
|
||||||
<translation type="vanished"><b>%1</b> 已经成功烧录到 <b>%2</b></translation>
|
<translation type="vanished"><b>%1</b> 已经成功烧录到 <b>%2</b></translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1098"/>
|
<location filename="../main.qml" line="1101"/>
|
||||||
<source>Error parsing os_list.json</source>
|
<source>Error parsing os_list.json</source>
|
||||||
<translation>解析 os_list.json 错误</translation>
|
<translation>解析 os_list.json 错误</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1271"/>
|
<location filename="../main.qml" line="1274"/>
|
||||||
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
<source>Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick.</source>
|
||||||
<translation>连接包含镜像的U盘。<br>镜像必须位于U盘的根文件夹中。</translation>
|
<translation>连接包含镜像的U盘。<br>镜像必须位于U盘的根文件夹中。</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1287"/>
|
<location filename="../main.qml" line="1290"/>
|
||||||
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
<source>SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again.</source>
|
||||||
<translation>SD卡具有写保护。<br>尝试向上推SD卡的左侧的锁定开关,然后重试。</translation>
|
<translation>SD卡具有写保护。<br>尝试向上推SD卡的左侧的锁定开关,然后重试。</translation>
|
||||||
</message>
|
</message>
|
||||||
|
@ -737,27 +728,27 @@
|
||||||
<translation type="vanished">继续</translation>
|
<translation type="vanished">继续</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="947"/>
|
<location filename="../main.qml" line="950"/>
|
||||||
<source>Error downloading OS list from Internet</source>
|
<source>Error downloading OS list from Internet</source>
|
||||||
<translation>下载镜像列表错误</translation>
|
<translation>下载镜像列表错误</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="991"/>
|
<location filename="../main.qml" line="994"/>
|
||||||
<source>Verifying... %1%</source>
|
<source>Verifying... %1%</source>
|
||||||
<translation>验证文件中...%1%</translation>
|
<translation>验证文件中...%1%</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1014"/>
|
<location filename="../main.qml" line="1017"/>
|
||||||
<source>Error</source>
|
<source>Error</source>
|
||||||
<translation>错误</translation>
|
<translation>错误</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1021"/>
|
<location filename="../main.qml" line="1024"/>
|
||||||
<source>Write Successful</source>
|
<source>Write Successful</source>
|
||||||
<translation>烧录成功</translation>
|
<translation>烧录成功</translation>
|
||||||
</message>
|
</message>
|
||||||
<message>
|
<message>
|
||||||
<location filename="../main.qml" line="1030"/>
|
<location filename="../main.qml" line="1033"/>
|
||||||
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
<source><b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader</source>
|
||||||
<translation><b>%1</b> 已经成功烧录到 <b>%2</b><br><br>上了,你可以卸载SD卡了</translation>
|
<translation><b>%1</b> 已经成功烧录到 <b>%2</b><br><br>上了,你可以卸载SD卡了</translation>
|
||||||
</message>
|
</message>
|
||||||
|
|
|
@ -922,6 +922,9 @@ ApplicationWindow {
|
||||||
confirmwritepopup.askForConfirmation()
|
confirmwritepopup.askForConfirmation()
|
||||||
}
|
}
|
||||||
onNo: {
|
onNo: {
|
||||||
|
confirmwritepopup.askForConfirmation()
|
||||||
|
}
|
||||||
|
onNoClearSettings: {
|
||||||
imageWriter.clearSavedCustomizationSettings()
|
imageWriter.clearSavedCustomizationSettings()
|
||||||
confirmwritepopup.askForConfirmation()
|
confirmwritepopup.askForConfirmation()
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue