From 3f665e01b40dbf0b9496bb853d6250e7e80af877 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Tue, 3 Oct 2023 22:24:49 +0100 Subject: [PATCH 01/25] Device-first OS list filtering Rather than a drop down dialog, which could present users with images that may not run on their hardware, allow selection of Raspberry Pi as a first stage. If users adopt this feature, they are presented with a subset of images that we know will actually run on their hardware. This is achieved by leveraging @maxnet's excellent OS filtering scheme. Future work will attach image and description support to this OS list. --- doc/json-schema/os-list-schema.json | 18 +- src/i18n/rpi-imager_en.ts | 16 +- src/main.qml | 371 +++++++++++++++++++++------- 3 files changed, 315 insertions(+), 90 deletions(-) diff --git a/doc/json-schema/os-list-schema.json b/doc/json-schema/os-list-schema.json index 4bd017a..20cfa2a 100644 --- a/doc/json-schema/os-list-schema.json +++ b/doc/json-schema/os-list-schema.json @@ -194,7 +194,8 @@ "extract_sha256": "ceb7d7489847ed811e7746fa779837f78fc06d43663148a696280e6a1cfe00e3", "image_download_size": 1306588543, "release_date": "2022-01-28", - "init_format": "systemd" + "init_format": "systemd", + "devices": ["pi1a"] } ], "required": [ @@ -205,7 +206,8 @@ "extract_size", "extract_sha256", "image_download_size", - "release_date" + "release_date", + "devices" ], "properties": { "name": { @@ -298,6 +300,18 @@ "systemd" ] }, + "devices": { + "$id": "#/properties/os_list/items/anyOf/0/properties/compat_with", + "type": "array", + "title": "The compat_with schema", + "description": "Provides a JSON-format list of strings representing Raspberry Pi devices that are supported with this image", + "default": "", + "examples": [ + "[\"1a\", \"1b\"]", + "[\"4\", \"5\"]", + "[\"cm3\", \"cm4\"]" + ] + }, "website": { "$id": "#/properties/os_list/items/anyOf/1/properties/website", "type": "string", diff --git a/src/i18n/rpi-imager_en.ts b/src/i18n/rpi-imager_en.ts index 909e619..d80bbdf 100644 --- a/src/i18n/rpi-imager_en.ts +++ b/src/i18n/rpi-imager_en.ts @@ -467,18 +467,28 @@ - + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + + + + Operating System - + CHOOSE OS - + Select this button to change the operating system diff --git a/src/main.qml b/src/main.qml index ce65977..dec7d56 100644 --- a/src/main.qml +++ b/src/main.qml @@ -14,9 +14,9 @@ ApplicationWindow { id: window visible: true - width: imageWriter.isEmbeddedMode() ? -1 : 680 + width: imageWriter.isEmbeddedMode() ? -1 : 800 height: imageWriter.isEmbeddedMode() ? -1 : 450 - minimumWidth: imageWriter.isEmbeddedMode() ? -1 : 680 + minimumWidth: imageWriter.isEmbeddedMode() ? -1 : 800 minimumHeight: imageWriter.isEmbeddedMode() ? -1 : 420 title: qsTr("Raspberry Pi Imager v%1").arg(imageWriter.constantVersion()) @@ -25,6 +25,8 @@ ApplicationWindow { FontLoader {id: robotoLight; source: "fonts/Roboto-Light.ttf"} FontLoader {id: robotoBold; source: "fonts/Roboto-Bold.ttf"} + property string hwTags + onClosing: { if (progressBar.visible) { close.accepted = false @@ -83,11 +85,47 @@ ApplicationWindow { anchors.leftMargin: 50 rows: 6 - columns: 3 + columns: 4 columnSpacing: 25 ColumnLayout { - id: columnLayout + id: columnLayout0 + spacing: 0 + Layout.fillWidth: true + + Text { + id: text0 + color: "#ffffff" + text: qsTr("Select your device") + Layout.fillWidth: true + Layout.preferredHeight: 17 + Layout.preferredWidth: 100 + font.pixelSize: 12 + font.family: robotoBold.name + font.bold: true + horizontalAlignment: Text.AlignHCenter + } + + ImButton { + id: hwbutton + text: qsTr("CHOOSE DEVICE") + spacing: 0 + padding: 0 + bottomPadding: 0 + topPadding: 0 + Layout.minimumHeight: 40 + Layout.fillWidth: true + onClicked: { + hwpopup.open() + hwswipeview.currentItem.forceActiveFocus() + } + Accessible.ignored: ospopup.visible || dstpopup.visible + Accessible.description: qsTr("Select this button to choose your target Raspberry Pi") + } + } + + ColumnLayout { + id: columnLayout1 spacing: 0 Layout.fillWidth: true @@ -359,6 +397,107 @@ ApplicationWindow { } } + Popup { + id: hwpopup + x: 50 + y: 25 + width: parent.width-100 + height: parent.height-50 + padding: 0 + closePolicy: Popup.CloseOnEscape | Popup.CloseOnPressOutside + property string hwselected: "" + + // background of title + Rectangle { + color: "#f5f5f5" + anchors.right: parent.right + anchors.top: parent.top + height: 35 + width: parent.width + } + // line under title + Rectangle { + color: "#afafaf" + width: parent.width + y: 35 + implicitHeight: 1 + } + + Text { + text: "X" + anchors.right: parent.right + anchors.top: parent.top + anchors.rightMargin: 25 + anchors.topMargin: 10 + font.family: roboto.name + font.bold: true + + MouseArea { + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + onClicked: { + hwpopup.close() + } + } + } + + ColumnLayout { + spacing: 10 + + Text { + text: qsTr("Raspberry Pi Device") + horizontalAlignment: Text.AlignHCenter + verticalAlignment: Text.AlignVCenter + Layout.fillWidth: true + Layout.topMargin: 10 + font.family: roboto.name + font.bold: true + } + + Item { + clip: true + Layout.preferredWidth: hwlist.width + Layout.preferredHeight: hwlist.height + + SwipeView { + id: hwswipeview + interactive: false + + ListView { + id: hwlist + model: ListModel { + id: deviceModel + ListElement { + name: qsTr("[ All ]") + tags: "[]" + } + } + currentIndex: -1 + delegate: hwdelegate + width: window.width-100 + height: window.height-100 + boundsBehavior: Flickable.StopAtBounds + highlight: Rectangle { color: "lightsteelblue"; radius: 5 } + ScrollBar.vertical: ScrollBar { + width: 10 + policy: hwlist.contentHeight > hwlist.height ? ScrollBar.AlwaysOn : ScrollBar.AsNeeded + } + Keys.onSpacePressed: { + if (currentIndex != -1) + selectHWitem(model.get(currentIndex)) + } + Accessible.onPressAction: { + if (currentIndex != -1) + selectHWitem(model.get(currentIndex)) + } + Keys.onEnterPressed: Keys.onSpacePressed(event) + Keys.onReturnPressed: Keys.onSpacePressed(event) + } + } + } + } + } + /* Popup for OS selection */ @@ -419,59 +558,6 @@ ApplicationWindow { font.bold: true } - Rectangle { - id: modelRowRect - color: "#ffffe3" - Layout.fillWidth: true - implicitHeight: modelRow.implicitHeight - visible: osswipeview.currentIndex == 0 - Layout.bottomMargin: -10 - - Row { - id: modelRow - spacing: 15 - leftPadding: 15 - - Text { - id: modelText - text: qsTr("Pi model:") - font.family: roboto.name - verticalAlignment: Qt.AlignVCenter - height: parent.height - } - - ComboBox { - id: deviceModelCombo - model: ListModel { - id: deviceModel - ListElement { - name: qsTr("[ All ]") - tags: "[]" - } - } - width: 300 - textRole: "name" - font.family: roboto.name - font.pixelSize: 12 - currentIndex: 0 - onCurrentIndexChanged: { - /* Reload list */ - httpRequest(imageWriter.constantOsListUrl(), function (x) { - var o = JSON.parse(x.responseText) - var oslist = oslistFromJson(o) - if (oslist === false) - return - - osmodel.remove(0, osmodel.count-2) - for (var i in oslist) { - osmodel.insert(osmodel.count-2, oslist[i]) - } - }) - } - } - } - } - Item { clip: true Layout.preferredWidth: oslist.width @@ -487,7 +573,7 @@ ApplicationWindow { currentIndex: -1 delegate: osdelegate width: window.width-100 - height: modelRowRect.visible ? window.height-100-modelRowRect.height : window.height-100 + height: window.height-100 boundsBehavior: Flickable.StopAtBounds highlight: Rectangle { color: "lightsteelblue"; radius: 5 } ScrollBar.vertical: ScrollBar { @@ -559,30 +645,6 @@ ApplicationWindow { ListModel { id: osmodel - ListElement { - url: "internal://format" - icon: "icons/erase.png" - extract_size: 0 - image_download_size: 0 - extract_sha256: "" - contains_multiple_files: false - release_date: "" - subitems_url: "" - subitems_json: "" - name: qsTr("Erase") - description: qsTr("Format card as FAT32") - tooltip: "" - website: "" - init_format: "" - } - - ListElement { - url: "" - icon: "icons/use_custom.png" - name: qsTr("Use custom") - description: qsTr("Select a custom .img from your computer") - } - Component.onCompleted: { if (imageWriter.isOnline()) { fetchOSlist(); @@ -590,6 +652,97 @@ ApplicationWindow { } } + Component { + id: hwdelegate + + Item { + width: window.width-100 + height: contentLayout.implicitHeight + 24 + Accessible.name: name+".\n"+description + + MouseArea { + id: hwMouseArea + anchors.fill: parent + cursorShape: Qt.PointingHandCursor + hoverEnabled: true + + onEntered: { + bgrect.mouseOver = true + } + + onExited: { + bgrect.mouseOver = false + } + + onClicked: { + selectHWitem(model) + } + } + + Rectangle { + id: bgrect + anchors.fill: parent + color: "#f5f5f5" + visible: mouseOver && parent.ListView.view.currentIndex !== index + property bool mouseOver: false + } + Rectangle { + id: borderrect + implicitHeight: 1 + implicitWidth: parent.width + color: "#dcdcdc" + y: parent.height + } + + RowLayout { + id: contentLayout + anchors { + left: parent.left + top: parent.top + right: parent.right + margins: 12 + } + spacing: 12 + + Image { + source: icon == "icons/ic_build_48px.svg" ? "icons/cat_misc_utility_images.png": icon + Layout.preferredHeight: 40 + Layout.preferredWidth: 40 + sourceSize.width: 40 + sourceSize.height: 40 + fillMode: Image.PreserveAspectFit + verticalAlignment: Image.AlignVCenter + Layout.alignment: Qt.AlignVCenter + } + ColumnLayout { + Layout.fillWidth: true + + Text { + text: name + elide: Text.ElideRight + font.family: roboto.name + font.bold: true + } + + Text { + Layout.fillWidth: true + font.family: roboto.name + text: description + wrapMode: Text.WordWrap + color: "#1a1a1a" + } + + ToolTip { + visible: hwMouseArea.containsMouse && typeof(tooltip) == "string" && tooltip != "" + delay: 1000 + text: typeof(tooltip) == "string" ? tooltip : "" + clip: false + } + } + } + } + } + Component { id: osdelegate @@ -1206,7 +1359,9 @@ ApplicationWindow { oslist = o["os_list"] } - filterItems(oslist, JSON.parse(deviceModel.get(deviceModelCombo.currentIndex).tags)) + if (hwTags != "") { + filterItems(oslist, JSON.parse(hwTags)) + } checkForRandom(oslist) /* Flatten subitems to subitems_json */ @@ -1242,8 +1397,9 @@ ApplicationWindow { var oslist = oslistFromJson(o) if (oslist === false) return + osmodel.clear() for (var i in oslist) { - osmodel.insert(osmodel.count-2, oslist[i]) + osmodel.append(oslist[i]) } if ("imager" in o) { @@ -1251,6 +1407,7 @@ ApplicationWindow { if ("devices" in imager) { + deviceModel.clear() var devices = imager["devices"] for (var j in devices) { @@ -1258,7 +1415,7 @@ ApplicationWindow { deviceModel.append(devices[j]) if ("default" in devices[j] && devices[j]["default"]) { - deviceModelCombo.currentIndex = deviceModel.count-1 + hwlist.currentIndex = deviceModel.count-1 } } } @@ -1283,6 +1440,31 @@ ApplicationWindow { } } } + + /* Add in our 'special' items. */ + osmodel.append({ + url: "internal://format", + icon: "icons/erase.png", + extract_size: 0, + image_download_size: 0, + extract_sha256: "", + contains_multiple_files: false, + release_date: "", + subitems_url: "", + subitems_json: "", + name: qsTr("Erase"), + description: qsTr("Format card as FAT32"), + tooltip: "", + website: "", + init_format: "" + }) + + osmodel.append({ + url: "", + icon: "icons/use_custom.png", + name: qsTr("Use custom"), + description: qsTr("Select a custom .img from your computer") + }) }) } @@ -1326,6 +1508,25 @@ ApplicationWindow { return m } + function selectHWitem(hwmodel) { + hwTags = hwmodel.tags + /* Reload list */ + httpRequest(imageWriter.constantOsListUrl(), function (x) { + var o = JSON.parse(x.responseText) + var oslist = oslistFromJson(o) + if (oslist === false) + return + + osmodel.remove(0, osmodel.count-2) + for (var i in oslist) { + osmodel.insert(osmodel.count-2, oslist[i]) + } + }) + + hwbutton.text = hwmodel.name + hwpopup.close() + } + function selectOSitem(d, selectFirstSubitem) { if (typeof(d.subitems_json) == "string" && d.subitems_json !== "") { From d603d2967177dd4fde4e5431fb84bba2adfa02bd Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Thu, 5 Oct 2023 11:06:22 +0100 Subject: [PATCH 02/25] OS selector: Return to home after close Prior to this change, you could enter a submenu of the OS selector, close the window, and then change device filter - presenting stale information when you went back in to the OS selector. Work around this by resetting the OS selector sequence when you close the OS selector window. --- src/main.qml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/main.qml b/src/main.qml index dec7d56..6e5f02d 100644 --- a/src/main.qml +++ b/src/main.qml @@ -541,6 +541,7 @@ ApplicationWindow { cursorShape: Qt.PointingHandCursor onClicked: { ospopup.close() + osswipeview.decrementCurrentIndex() } } } @@ -1266,6 +1267,7 @@ ApplicationWindow { imageWriter.setSrc(file) osbutton.text = imageWriter.srcFileName() ospopup.close() + osswipeview.decrementCurrentIndex() if (imageWriter.readyToWrite()) { writebutton.enabled = true } @@ -1596,6 +1598,7 @@ ApplicationWindow { imageWriter.setSrc(d.url, d.image_download_size, d.extract_size, typeof(d.extract_sha256) != "undefined" ? d.extract_sha256 : "", typeof(d.contains_multiple_files) != "undefined" ? d.contains_multiple_files : false, ospopup.categorySelected, d.name, typeof(d.init_format) != "undefined" ? d.init_format : "") osbutton.text = d.name ospopup.close() + osswipeview.decrementCurrentIndex() if (imageWriter.readyToWrite()) { writebutton.enabled = true } From 8291e0093429f775aa68c7fd9fe87e9aa4726fa4 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Mon, 9 Oct 2023 10:33:02 +0100 Subject: [PATCH 03/25] qml: Include device icon, desc in model --- src/main.qml | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.qml b/src/main.qml index 6e5f02d..941aa76 100644 --- a/src/main.qml +++ b/src/main.qml @@ -470,6 +470,8 @@ ApplicationWindow { ListElement { name: qsTr("[ All ]") tags: "[]" + icon: "" + description: "" } } currentIndex: -1 From c7fa7504fe0a3fbf7c278ef8538d650ba38a1326 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Mon, 9 Oct 2023 14:12:42 +0100 Subject: [PATCH 04/25] qml: Rebalance button widths Removed preferred widths for OS, device buttons, and set one for the storage button. This allows the storage label (generally the longest) to fit on the control face reliably. --- src/main.qml | 10 ++++++---- 1 file changed, 6 insertions(+), 4 deletions(-) diff --git a/src/main.qml b/src/main.qml index 941aa76..5426338 100644 --- a/src/main.qml +++ b/src/main.qml @@ -135,7 +135,6 @@ ApplicationWindow { text: qsTr("Operating System") Layout.fillWidth: true Layout.preferredHeight: 17 - Layout.preferredWidth: 100 font.pixelSize: 12 font.family: robotoBold.name font.bold: true @@ -171,7 +170,6 @@ ApplicationWindow { text: qsTr("Storage") Layout.fillWidth: true Layout.preferredHeight: 17 - Layout.preferredWidth: 100 font.pixelSize: 12 font.family: robotoBold.name font.bold: true @@ -181,8 +179,12 @@ ApplicationWindow { ImButton { id: dstbutton text: qsTr("CHOOSE STORAGE") + spacing: 0 + padding: 0 + bottomPadding: 0 + topPadding: 0 Layout.minimumHeight: 40 - Layout.preferredWidth: 100 + Layout.preferredWidth: 200 Layout.fillWidth: true onClicked: { imageWriter.startDriveListPolling() @@ -191,7 +193,7 @@ ApplicationWindow { } Accessible.ignored: ospopup.visible || dstpopup.visible Accessible.description: qsTr("Select this button to change the destination storage device") - } + } } ColumnLayout { From a4a90361a383652b4b818cb14821fd7d92d9a34e Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Tue, 10 Oct 2023 10:34:34 +0100 Subject: [PATCH 05/25] qml: Use a ListView for the hw selector --- src/main.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.qml b/src/main.qml index 5426338..2764169 100644 --- a/src/main.qml +++ b/src/main.qml @@ -117,7 +117,7 @@ ApplicationWindow { Layout.fillWidth: true onClicked: { hwpopup.open() - hwswipeview.currentItem.forceActiveFocus() + hwlistview.currentItem.forceActiveFocus() } Accessible.ignored: ospopup.visible || dstpopup.visible Accessible.description: qsTr("Select this button to choose your target Raspberry Pi") @@ -193,7 +193,7 @@ ApplicationWindow { } Accessible.ignored: ospopup.visible || dstpopup.visible Accessible.description: qsTr("Select this button to change the destination storage device") - } + } } ColumnLayout { @@ -461,8 +461,8 @@ ApplicationWindow { Layout.preferredWidth: hwlist.width Layout.preferredHeight: hwlist.height - SwipeView { - id: hwswipeview + ListView { + id: hwlistview interactive: false ListView { From 0f496dc2c900d32b037de5e8f13e50a0a2e0e0cb Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Tue, 10 Oct 2023 10:36:33 +0100 Subject: [PATCH 06/25] os-list-schema: Consistent naming of tags --- doc/json-schema/os-list-schema.json | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/doc/json-schema/os-list-schema.json b/doc/json-schema/os-list-schema.json index 20cfa2a..37ae199 100644 --- a/doc/json-schema/os-list-schema.json +++ b/doc/json-schema/os-list-schema.json @@ -307,8 +307,8 @@ "description": "Provides a JSON-format list of strings representing Raspberry Pi devices that are supported with this image", "default": "", "examples": [ - "[\"1a\", \"1b\"]", - "[\"4\", \"5\"]", + "[\"pi1a\", \"pi1b\"]", + "[\"pi4\", \"pi5\"]", "[\"cm3\", \"cm4\"]" ] }, From 4fb84ff3e885f5813339f24a03e9256bddd37aac Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Tue, 10 Oct 2023 11:57:01 +0100 Subject: [PATCH 07/25] qml: Filtering types Introduce 4 filtering types per device spec: - "exclusive", which only includes OS' that match one of the specified tags, and discards any OS that is untagged. - "exclusive_prefix", which only includes OS' that prefix-match one of the specified tags, discarding any OS that is untagged. - "inclusive", which discards any OS that doesn't include one of the specified tags, but includes untagged images. - "inclusive_prefix", which discards any OS that doesn't prefix match one of the specified tags, but includes untagged images. --- src/main.qml | 106 ++++++++++++++++++++++++++++++++++++++++++++------- 1 file changed, 92 insertions(+), 14 deletions(-) diff --git a/src/main.qml b/src/main.qml index 2764169..9fe4f9e 100644 --- a/src/main.qml +++ b/src/main.qml @@ -25,7 +25,19 @@ ApplicationWindow { FontLoader {id: robotoLight; source: "fonts/Roboto-Light.ttf"} FontLoader {id: robotoBold; source: "fonts/Roboto-Bold.ttf"} + /** hw device list storage + * + * To allow us to filter the OS list, we maintain an application-wide record of the selected device + * tags. + */ property string hwTags + + /** 0: Exclusive, must match explicit device names only, no untagged + 1: Exclusive by prefix, must match the device name as a prefix, no untagged + 2: Inclusive, match explicit device names and untagged + 3: Inclusive by prefix, match explicit device names and untagged + */ + property int hwTagMatchingType onClosing: { if (progressBar.visible) { @@ -474,6 +486,7 @@ ApplicationWindow { tags: "[]" icon: "" description: "" + matching_type: "exclusive" } } currentIndex: -1 @@ -1309,7 +1322,7 @@ ApplicationWindow { } } - function filterItems(list, tags) + function filterItems(list, tags, matchingType) { if (!tags || !tags.length) return @@ -1321,24 +1334,67 @@ ApplicationWindow { if ("devices" in entry && entry["devices"].length) { var foundTag = false - for (var j in tags) - { - if (entry["devices"].includes(tags[j])) - { - foundTag = true + switch(matchingType) { + case 0: /* exact matching */ + case 2: /* exact matching */ + for (var j in tags) + { + if (entry["devices"].includes(tags[j])) + { + foundTag = true + break + } + } + /* If there's no match, remove this item from the list. */ + if (!foundTag) + { + list.splice(i, 1) + continue + } + break + case 1: /* Exlusive by prefix matching */ + case 3: /* Inclusive by prefix matching */ + for (var deviceTypePrefix in tags) { + for (var deviceSpec in entry["devices"]) { + if (deviceSpec.startsWith(deviceTypePrefix)) { + foundTag = true + break + } + } + /* Terminate outer loop early if we've already + * decided it's a match + */ + if (foundTag) { + break + } + } + /* If there's no match, remove this item from the list. */ + if (!foundTag) + { + list.splice(i, 1) + continue + } break - } } - - if (!foundTag) - { - list.splice(i, 1) - continue + } else { + /* No device list attached? If we're in an exclusive mode that's bad news indeed. */ + switch (matchingType) { + case 0: + case 1: + if (!("subitems" in entry)) { + /* If you're not carrying subitems, you're not going in. */ + list.splice(i, 1) + } + break + case 2: + case 3: + /* Inclusive filtering. We're keeping this one. */ + break; } } if ("subitems" in entry) { - filterItems(entry["subitems"], tags) + filterItems(entry["subitems"], tags, hwTagMatchingType) } } } @@ -1366,7 +1422,7 @@ ApplicationWindow { } if (hwTags != "") { - filterItems(oslist, JSON.parse(hwTags)) + filterItems(oslist, JSON.parse(hwTags), hwTagMatchingType) } checkForRandom(oslist) @@ -1516,6 +1572,28 @@ ApplicationWindow { function selectHWitem(hwmodel) { hwTags = hwmodel.tags + + if (hwmodel.matching_type) { + + switch (hwmodel.matching_type) { + case "exclusive": + hwTagMatchingType = 0 + break; + case "exclusive_prefix": + hwTagMatchingType = 1 + break; + case "inclusive": + hwTagMatchingType = 2 + break; + case "inclusive_prefix": + hwTagMatchingType = 3 + break; + } + } else { + /* Default is exclusive exact matching */ + hwTagMatchingType = 0 + } + /* Reload list */ httpRequest(imageWriter.constantOsListUrl(), function (x) { var o = JSON.parse(x.responseText) From 1f444bacf6e4fe640a3ec9c6156930620821a081 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Tue, 10 Oct 2023 11:57:25 +0100 Subject: [PATCH 08/25] schema: Update to fixup devices, matching_type --- doc/json-schema/os-list-schema.json | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/doc/json-schema/os-list-schema.json b/doc/json-schema/os-list-schema.json index 37ae199..017e66f 100644 --- a/doc/json-schema/os-list-schema.json +++ b/doc/json-schema/os-list-schema.json @@ -301,9 +301,9 @@ ] }, "devices": { - "$id": "#/properties/os_list/items/anyOf/0/properties/compat_with", + "$id": "#/properties/os_list/items/anyOf/0/properties/devices", "type": "array", - "title": "The compat_with schema", + "title": "The devices schema", "description": "Provides a JSON-format list of strings representing Raspberry Pi devices that are supported with this image", "default": "", "examples": [ @@ -312,6 +312,19 @@ "[\"cm3\", \"cm4\"]" ] }, + "matching_type": { + "$id": "#/properties/os_list/items/anyOf/0/properties/matching_type", + "type": "array", + "title": "The matching_type schema", + "description": "Allows specification of the matching algorithm to use for device tags. If you set this to 'exclusive', any image that does not explicitly tag your target device will not be displayed. Set to 'prefix' to allow for family matching (eg, match all Pi1 devices), but no untagged images. Set to 'inclusive', and get your exact device name and all untagged images. Finally, if you set to 'inclusive_prefix', you can match all images tagged with your family prefix (eg, Pi1), and any untagged image.", + "default": "exclusive", + "examples": [ + "exclusive", + "exclusive_prefix", + "inclusive", + "inclusive_prefix" + ] + }, "website": { "$id": "#/properties/os_list/items/anyOf/1/properties/website", "type": "string", From be8956a87ed5a7e57af53394a84052cad46da292 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Tue, 10 Oct 2023 12:26:29 +0100 Subject: [PATCH 09/25] qml: Align 'Cog' to RHS. --- src/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.qml b/src/main.qml index 9fe4f9e..0c38391 100644 --- a/src/main.qml +++ b/src/main.qml @@ -242,7 +242,7 @@ ApplicationWindow { ColumnLayout { id: columnLayout3 - Layout.columnSpan: 3 + Layout.columnSpan: 4 Layout.alignment: Qt.AlignRight | Qt.AlignVCenter Text { From 758853e8a818caa1f29fbc25e5ae3593ba1c3ad1 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Tue, 10 Oct 2023 12:27:44 +0100 Subject: [PATCH 10/25] qml: Size-down the default window to 730 width. Back-calculated from 1280/1.75, this should just about fit on a 1280x720 format display at 1.75x scaling. --- src/main.qml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/main.qml b/src/main.qml index 0c38391..2c98697 100644 --- a/src/main.qml +++ b/src/main.qml @@ -14,9 +14,9 @@ ApplicationWindow { id: window visible: true - width: imageWriter.isEmbeddedMode() ? -1 : 800 + width: imageWriter.isEmbeddedMode() ? -1 : 730 height: imageWriter.isEmbeddedMode() ? -1 : 450 - minimumWidth: imageWriter.isEmbeddedMode() ? -1 : 800 + minimumWidth: imageWriter.isEmbeddedMode() ? -1 : 730 minimumHeight: imageWriter.isEmbeddedMode() ? -1 : 420 title: qsTr("Raspberry Pi Imager v%1").arg(imageWriter.constantVersion()) From bcdee1818dca3bc97844d5709a44c4dcf421c071 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Tue, 10 Oct 2023 13:13:44 +0100 Subject: [PATCH 11/25] qml: Move write button, assign explicit cells 1) Resize the window back to 680dip default widths. We don't need the extra space now. 2) Reduce Row spacing within the grid layout. We need all the space we can get. 3) Assign layouts to explicit cells, at least for selection options and write. This layout isn't really scaling to the amount of data we want to provide, but we'll make do for now. 4) Mark selection buttons as accessibility ignored when the hwpopup is active. --- src/main.qml | 48 +++++++++++++++++++++++++++++++----------------- 1 file changed, 31 insertions(+), 17 deletions(-) diff --git a/src/main.qml b/src/main.qml index 2c98697..4c99d1b 100644 --- a/src/main.qml +++ b/src/main.qml @@ -14,9 +14,9 @@ ApplicationWindow { id: window visible: true - width: imageWriter.isEmbeddedMode() ? -1 : 730 + width: imageWriter.isEmbeddedMode() ? -1 : 680 height: imageWriter.isEmbeddedMode() ? -1 : 450 - minimumWidth: imageWriter.isEmbeddedMode() ? -1 : 730 + minimumWidth: imageWriter.isEmbeddedMode() ? -1 : 680 minimumHeight: imageWriter.isEmbeddedMode() ? -1 : 420 title: qsTr("Raspberry Pi Imager v%1").arg(imageWriter.constantVersion()) @@ -89,20 +89,22 @@ ApplicationWindow { GridLayout { id: gridLayout - rowSpacing: 25 + rowSpacing: 15 anchors.fill: parent anchors.topMargin: 25 anchors.rightMargin: 50 anchors.leftMargin: 50 - rows: 6 - columns: 4 - columnSpacing: 25 + rows: 5 + columns: 3 + columnSpacing: 15 ColumnLayout { id: columnLayout0 spacing: 0 + Layout.row: 0 + Layout.column: 0 Layout.fillWidth: true Text { @@ -131,7 +133,7 @@ ApplicationWindow { hwpopup.open() hwlistview.currentItem.forceActiveFocus() } - Accessible.ignored: ospopup.visible || dstpopup.visible + Accessible.ignored: ospopup.visible || dstpopup.visible || hwpopup.visible Accessible.description: qsTr("Select this button to choose your target Raspberry Pi") } } @@ -139,6 +141,8 @@ ApplicationWindow { ColumnLayout { id: columnLayout1 spacing: 0 + Layout.row: 0 + Layout.column: 1 Layout.fillWidth: true Text { @@ -166,7 +170,7 @@ ApplicationWindow { ospopup.open() osswipeview.currentItem.forceActiveFocus() } - Accessible.ignored: ospopup.visible || dstpopup.visible + Accessible.ignored: ospopup.visible || dstpopup.visible || hwpopup.visible Accessible.description: qsTr("Select this button to change the operating system") } } @@ -174,6 +178,8 @@ ApplicationWindow { ColumnLayout { id: columnLayout2 spacing: 0 + Layout.row: 0 + Layout.column: 2 Layout.fillWidth: true Text { @@ -203,27 +209,25 @@ ApplicationWindow { dstpopup.open() dstlist.forceActiveFocus() } - Accessible.ignored: ospopup.visible || dstpopup.visible + Accessible.ignored: ospopup.visible || dstpopup.visible || hwpopup.visible Accessible.description: qsTr("Select this button to change the destination storage device") } } ColumnLayout { spacing: 0 + Layout.row: 1 + Layout.column: 2 Layout.fillWidth: true - - Text { - text: " " - Layout.preferredHeight: 17 - Layout.preferredWidth: 100 - } + Layout.alignment: Qt.AlignRight | Qt.AlignVCenter ImButton { id: writebutton text: qsTr("WRITE") + Layout.bottomMargin: 25 Layout.minimumHeight: 40 Layout.fillWidth: true - Accessible.ignored: ospopup.visible || dstpopup.visible + Accessible.ignored: ospopup.visible || dstpopup.visible || hwpopup.visible Accessible.description: qsTr("Select this button to start writing the image") enabled: false onClicked: { @@ -242,7 +246,9 @@ ApplicationWindow { ColumnLayout { id: columnLayout3 - Layout.columnSpan: 4 + Layout.columnSpan: 2 + Layout.row: 1 + Layout.column: 0 Layout.alignment: Qt.AlignRight | Qt.AlignVCenter Text { @@ -254,9 +260,13 @@ ApplicationWindow { visible: false horizontalAlignment: Text.AlignHCenter Layout.fillWidth: true + Layout.bottomMargin: 25 + padding: 5 } ProgressBar { + Layout.bottomMargin: 25 + padding: 5 id: progressBar Layout.fillWidth: true visible: false @@ -264,6 +274,8 @@ ApplicationWindow { } ImButton { + Layout.bottomMargin: 25 + padding: 5 id: cancelwritebutton text: qsTr("CANCEL WRITE") onClicked: { @@ -275,6 +287,8 @@ ApplicationWindow { visible: false } ImButton { + Layout.bottomMargin: 25 + padding: 5 id: cancelverifybutton text: qsTr("CANCEL VERIFY") onClicked: { From e8663baf348e997738b3c0168ba997c30b1d04db Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Tue, 10 Oct 2023 14:03:20 +0100 Subject: [PATCH 12/25] qml: Relayout buttons for [3,1,1,1] This change adjusts the layout for the progress bar, write button and cancellation buttons such that they are all placed on the same layout 'row', with the progress bar stacked as before, and the write/cancel/cancel buttons stacked as a column. This is not ideal, but probably as sensible as we can get inside this layout paradigm. --- src/icons/logo_sxs_imager.png | Bin 0 -> 17413 bytes src/main.qml | 85 +++++++++++++++++++--------------- src/qml.qrc | 1 + 3 files changed, 49 insertions(+), 37 deletions(-) create mode 100644 src/icons/logo_sxs_imager.png diff --git a/src/icons/logo_sxs_imager.png b/src/icons/logo_sxs_imager.png new file mode 100644 index 0000000000000000000000000000000000000000..cbf2c375f2055500bb7a3317e93313030856ca0f GIT binary patch literal 17413 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ⅅJl*hNtK@y612-<>P1(o6 z#%tY+;I9kBTgb;B#bS=VNIhEk8Xn<$fvRz_K39~h)aY!^p?h@vxIUl$4N%NMOp^xr zRrkd_+@pu4^I)ljk`)CcBOu+?LqZxYviCpkxxZXH#SOd%KvnmL+Sycl+YVy~lIHPE zpeXHG(lI;NrAH9Hd-`^k&x=>)aLx^+ykI(Pa{xBrp-xhr@% z-05l7g1yOMgbY7lJ(TW?zmlpaAH8re^&%FfP$8hF1oATX3MI!u^v9J=C zN)i?gYIu`8LWQcy;NxV*z4NUr^p{kl@=^Do*MAMNth%I-FYSpR&FexXzk51KY)kde zw>D4oCZ{58S~X81moaBP^Xxy4V8GSjncVtf#lz`Z4vW_9iR-<8aKHtAgut1nwpdGW zmcNy|F?^|{l!;*ljfh-+LGchc2msLCNG1SO zgnan_bUoft>;c2J8zCapo(JVtNK8lDG!%Sl(`#!L{P5!)I`FciW&u>u{&Dmf8JhB2 zGMq_Q?vwpqTJ|1?0&@}ApViSi+*zw9OPA2@Ct=ttV1z@W`pW=j>{o|+3F zGKVJ`m#1PSBF^jx>l8(q;S&YpC|RKX4JxntcE`@9Huw+Jaeki^KX;5Un1VXkFhv5= zrh4$aUJCmhu6d9?SMFu^wyj9p;Ax3$ESW!?X(b(bO$8oa+8m2(*H?K~qM}VD^v^6_ z{%anGj8mc;QZ5GaRN+_NDiAi6T|BvTxO^OhFBi)*CN#-;U`Gp1ht_XWk*>ef=zDX- zFEg#71Rx~us6N3}icFKvo$bT$e(;(H+=1jG45J(z)P6R6(_H;`d$AB_1shvkQ{cJB zL54w{Ii3``Z|6fx2Mm!KF@s+1jEuz6=h1;Sm(EnhO_)D!0a~o!!v4T9>VJ)?FGNoOED=`2}gnr>E!8xg!cm zA;hY8u~2@68EGZFZV7ZGLYMdZ&u?}6Yb*orCt0GpXqUl(Tc$DqH)Ui2_MgGaAW*2D z`BUsCyy??OO)M*~2y3qN*?F8n9O-A6Ly^`W=wfC=%uB^R@{eIqy)$^w6?bx?tcfHFW zy}pw7x?o2Kw)4LK^6fF(&WZQd^z!hBrnT7?m4jpOlF~)%2D^`^w;bEL+(hnhqIRg1 zQ70s1c|5-K9b_@sSu42z$iHPm2RLHcmMfNgpZ*?fZAXsB7q$eZA8gf*e?E0dpLuPe z*mEFNiSvl=(?a20vm(HmVv(atmGHw&4k0p=Hh?zIfC7+wLdn|oFVdQ&MBb@0FD019{>OV literal 0 HcmV?d00001 diff --git a/src/main.qml b/src/main.qml index 4c99d1b..387cc99 100644 --- a/src/main.qml +++ b/src/main.qml @@ -69,23 +69,24 @@ ApplicationWindow { spacing: 0 Rectangle { - implicitHeight: window.height/2 + implicitHeight: window.height/3 Image { id: image - Layout.fillWidth: true + //Layout.fillWidth: true + Layout.fillHeight: true Layout.alignment: Qt.AlignHCenter | Qt.AlignVCenter fillMode: Image.PreserveAspectFit - source: "icons/logo_stacked_imager.png" + source: "icons/logo_sxs_imager.png" width: window.width - height: window.height/2 + height: window.height/3 } } Rectangle { color: "#c31c4a" implicitWidth: window.width - implicitHeight: window.height/2 + implicitHeight: (window.height/3) * 2 GridLayout { id: gridLayout @@ -215,41 +216,11 @@ ApplicationWindow { } ColumnLayout { + id: columnLayoutProgress spacing: 0 Layout.row: 1 - Layout.column: 2 - Layout.fillWidth: true - Layout.alignment: Qt.AlignRight | Qt.AlignVCenter - - ImButton { - id: writebutton - text: qsTr("WRITE") - Layout.bottomMargin: 25 - Layout.minimumHeight: 40 - Layout.fillWidth: true - Accessible.ignored: ospopup.visible || dstpopup.visible || hwpopup.visible - Accessible.description: qsTr("Select this button to start writing the image") - enabled: false - onClicked: { - if (!imageWriter.readyToWrite()) { - return - } - - if (!optionspopup.initialized && imageWriter.imageSupportsCustomization() && imageWriter.hasSavedCustomizationSettings()) { - usesavedsettingspopup.openPopup() - } else { - confirmwritepopup.askForConfirmation() - } - } - } - } - - ColumnLayout { - id: columnLayout3 - Layout.columnSpan: 2 - Layout.row: 1 Layout.column: 0 - Layout.alignment: Qt.AlignRight | Qt.AlignVCenter + Layout.columnSpan: 2 Text { id: progressText @@ -272,9 +243,19 @@ ApplicationWindow { visible: false Material.background: "#d15d7d" } + } + + ColumnLayout { + id: columnLayout3 + Layout.row: 1 + Layout.column: 2 + Layout.alignment: Qt.AlignRight | Qt.AlignVCenter + spacing: 0 ImButton { Layout.bottomMargin: 25 + Layout.minimumHeight: 40 + Layout.preferredWidth: 200 padding: 5 id: cancelwritebutton text: qsTr("CANCEL WRITE") @@ -288,6 +269,8 @@ ApplicationWindow { } ImButton { Layout.bottomMargin: 25 + Layout.minimumHeight: 40 + Layout.preferredWidth: 200 padding: 5 id: cancelverifybutton text: qsTr("CANCEL VERIFY") @@ -302,6 +285,9 @@ ApplicationWindow { ImButton { Layout.bottomMargin: 25 + Layout.minimumHeight: 40 + Layout.preferredWidth: 200 + Layout.alignment: Qt.AlignRight padding: 5 id: customizebutton onClicked: { @@ -314,6 +300,28 @@ ApplicationWindow { fillMode: Image.PreserveAspectFit } } + ImButton { + id: writebutton + text: qsTr("WRITE") + Layout.bottomMargin: 25 + Layout.minimumHeight: 40 + Layout.preferredWidth: 200 + Layout.alignment: Qt.AlignRight + Accessible.ignored: ospopup.visible || dstpopup.visible || hwpopup.visible + Accessible.description: qsTr("Select this button to start writing the image") + enabled: false + onClicked: { + if (!imageWriter.readyToWrite()) { + return + } + + if (!optionspopup.initialized && imageWriter.imageSupportsCustomization() && imageWriter.hasSavedCustomizationSettings()) { + usesavedsettingspopup.openPopup() + } else { + confirmwritepopup.askForConfirmation() + } + } + } } Text { @@ -1126,6 +1134,7 @@ ApplicationWindow { title: qsTr("Warning") onYes: { langbarRect.visible = false + writebutton.visible = false writebutton.enabled = false customizebutton.visible = false cancelwritebutton.enabled = true @@ -1138,6 +1147,7 @@ ApplicationWindow { progressBar.Material.accent = "#ffffff" osbutton.enabled = false dstbutton.enabled = false + hwbutton.enabled = false imageWriter.setVerifyEnabled(true) imageWriter.startWrite() } @@ -1259,6 +1269,7 @@ ApplicationWindow { customizebutton.visible = imageWriter.imageSupportsCustomization() osbutton.enabled = true dstbutton.enabled = true + hwbutton.enabled = true writebutton.visible = true writebutton.enabled = imageWriter.readyToWrite() cancelwritebutton.visible = false diff --git a/src/qml.qrc b/src/qml.qrc index d29ef7a..c2f462a 100644 --- a/src/qml.qrc +++ b/src/qml.qrc @@ -32,6 +32,7 @@ icons/cat_language_specific_operating_systems.png icons/cat_3d_printing.png icons/logo_stacked_imager.png + icons/logo_sxs_imager.png qmlcomponents/ImButton.qml qmlcomponents/ImCheckBox.qml qmlcomponents/ImRadioButton.qml From 900f36dc526955d1394bbe55e62a0b87f2349078 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Wed, 11 Oct 2023 13:18:33 +0100 Subject: [PATCH 13/25] logo: Use official asset --- src/icons/logo_sxs_imager.png | Bin 17413 -> 13916 bytes 1 file changed, 0 insertions(+), 0 deletions(-) diff --git a/src/icons/logo_sxs_imager.png b/src/icons/logo_sxs_imager.png index cbf2c375f2055500bb7a3317e93313030856ca0f..601847db1583c86ea8f636315a48c1f20088674c 100644 GIT binary patch literal 13916 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 literal 17413 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ⅅJl*hNtK@y612-<>P1(o6 z#%tY+;I9kBTgb;B#bS=VNIhEk8Xn<$fvRz_K39~h)aY!^p?h@vxIUl$4N%NMOp^xr zRrkd_+@pu4^I)ljk`)CcBOu+?LqZxYviCpkxxZXH#SOd%KvnmL+Sycl+YVy~lIHPE zpeXHG(lI;NrAH9Hd-`^k&x=>)aLx^+ykI(Pa{xBrp-xhr@% z-05l7g1yOMgbY7lJ(TW?zmlpaAH8re^&%FfP$8hF1oATX3MI!u^v9J=C zN)i?gYIu`8LWQcy;NxV*z4NUr^p{kl@=^Do*MAMNth%I-FYSpR&FexXzk51KY)kde zw>D4oCZ{58S~X81moaBP^Xxy4V8GSjncVtf#lz`Z4vW_9iR-<8aKHtAgut1nwpdGW zmcNy|F?^|{l!;*ljfh-+LGchc2msLCNG1SO zgnan_bUoft>;c2J8zCapo(JVtNK8lDG!%Sl(`#!L{P5!)I`FciW&u>u{&Dmf8JhB2 zGMq_Q?vwpqTJ|1?0&@}ApViSi+*zw9OPA2@Ct=ttV1z@W`pW=j>{o|+3F zGKVJ`m#1PSBF^jx>l8(q;S&YpC|RKX4JxntcE`@9Huw+Jaeki^KX;5Un1VXkFhv5= zrh4$aUJCmhu6d9?SMFu^wyj9p;Ax3$ESW!?X(b(bO$8oa+8m2(*H?K~qM}VD^v^6_ z{%anGj8mc;QZ5GaRN+_NDiAi6T|BvTxO^OhFBi)*CN#-;U`Gp1ht_XWk*>ef=zDX- zFEg#71Rx~us6N3}icFKvo$bT$e(;(H+=1jG45J(z)P6R6(_H;`d$AB_1shvkQ{cJB zL54w{Ii3``Z|6fx2Mm!KF@s+1jEuz6=h1;Sm(EnhO_)D!0a~o!!v4T9>VJ)?FGNoOED=`2}gnr>E!8xg!cm zA;hY8u~2@68EGZFZV7ZGLYMdZ&u?}6Yb*orCt0GpXqUl(Tc$DqH)Ui2_MgGaAW*2D z`BUsCyy??OO)M*~2y3qN*?F8n9O-A6Ly^`W=wfC=%uB^R@{eIqy)$^w6?bx?tcfHFW zy}pw7x?o2Kw)4LK^6fF(&WZQd^z!hBrnT7?m4jpOlF~)%2D^`^w;bEL+(hnhqIRg1 zQ70s1c|5-K9b_@sSu42z$iHPm2RLHcmMfNgpZ*?fZAXsB7q$eZA8gf*e?E0dpLuPe z*mEFNiSvl=(?a20vm(HmVv(atmGHw&4k0p=Hh?zIfC7+wLdn|oFVdQ&MBb@0FD019{>OV From 9fb9fca065b03d2a8f5847b13ce44e8f3072f5e1 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Wed, 11 Oct 2023 13:19:16 +0100 Subject: [PATCH 14/25] qml: use "Raspberry Pi Device" as selection hint --- src/main.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.qml b/src/main.qml index 387cc99..b2053ae 100644 --- a/src/main.qml +++ b/src/main.qml @@ -111,7 +111,7 @@ ApplicationWindow { Text { id: text0 color: "#ffffff" - text: qsTr("Select your device") + text: qsTr("Raspberry Pi Device") Layout.fillWidth: true Layout.preferredHeight: 17 Layout.preferredWidth: 100 From 2b2fd7de8abf493426c3accfe2d36b324efc0a63 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Wed, 11 Oct 2023 13:22:32 +0100 Subject: [PATCH 15/25] qml: Remove customisation button, roll into flow This patch carries a translation risk, as we change the default progression button. Remove the customisation button all together, and make the customisation options something we offer as part of flashing an image that has that capability. While this adds an additional click to the flash sequence, it should provide a steer to people who are flashing customisable images to make use of this capability, potentially avoiding an additional pass through the Imager. --- src/UseSavedSettingsPopup.qml | 7 +++++-- src/main.qml | 30 ++++-------------------------- 2 files changed, 9 insertions(+), 28 deletions(-) diff --git a/src/UseSavedSettingsPopup.qml b/src/UseSavedSettingsPopup.qml index ce09c97..f002763 100644 --- a/src/UseSavedSettingsPopup.qml +++ b/src/UseSavedSettingsPopup.qml @@ -70,7 +70,7 @@ Popup { Layout.topMargin: 10 font.family: roboto.name font.bold: true - text: qsTr("Warning: advanced settings set") + text: qsTr("Use image customisation?") } Text { @@ -83,8 +83,9 @@ Popup { Layout.fillHeight: true Layout.leftMargin: 25 Layout.topMargin: 25 + Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter Accessible.name: text.replace(/<\/?[^>]+(>|$)/g, "") - text: qsTr("Would you like to apply the image customization settings saved earlier?") + text: qsTr("Would you like to apply image customization settings?") } RowLayout { @@ -111,6 +112,7 @@ Popup { } Material.foreground: activeFocus ? "#d1dcfb" : "#ffffff" Material.background: "#c51a4a" + enabled: imageWriter.hasSavedCustomizationSettings() ? true : false } ImButton { @@ -121,6 +123,7 @@ Popup { } Material.foreground: activeFocus ? "#d1dcfb" : "#ffffff" Material.background: "#c51a4a" + enabled: imageWriter.hasSavedCustomizationSettings() ? true : false } ImButton { diff --git a/src/main.qml b/src/main.qml index b2053ae..d1c96ba 100644 --- a/src/main.qml +++ b/src/main.qml @@ -31,7 +31,7 @@ ApplicationWindow { * tags. */ property string hwTags - + /** 0: Exclusive, must match explicit device names only, no untagged 1: Exclusive by prefix, must match the device name as a prefix, no untagged 2: Inclusive, match explicit device names and untagged @@ -283,26 +283,9 @@ ApplicationWindow { visible: false } - ImButton { - Layout.bottomMargin: 25 - Layout.minimumHeight: 40 - Layout.preferredWidth: 200 - Layout.alignment: Qt.AlignRight - padding: 5 - id: customizebutton - onClicked: { - optionspopup.openPopup() - } - visible: imageWriter.imageSupportsCustomization() - Accessible.description: qsTr("Select this button to access advanced settings") - contentItem: Image { - source: "icons/ic_cog_red.svg" - fillMode: Image.PreserveAspectFit - } - } ImButton { id: writebutton - text: qsTr("WRITE") + text: qsTr("Next") Layout.bottomMargin: 25 Layout.minimumHeight: 40 Layout.preferredWidth: 200 @@ -315,7 +298,7 @@ ApplicationWindow { return } - if (!optionspopup.initialized && imageWriter.imageSupportsCustomization() && imageWriter.hasSavedCustomizationSettings()) { + if (!optionspopup.visible && imageWriter.imageSupportsCustomization()) { usesavedsettingspopup.openPopup() } else { confirmwritepopup.askForConfirmation() @@ -1136,7 +1119,6 @@ ApplicationWindow { langbarRect.visible = false writebutton.visible = false writebutton.enabled = false - customizebutton.visible = false cancelwritebutton.enabled = true cancelwritebutton.visible = true cancelverifybutton.enabled = true @@ -1266,7 +1248,6 @@ ApplicationWindow { function resetWriteButton() { progressText.visible = false progressBar.visible = false - customizebutton.visible = imageWriter.imageSupportsCustomization() osbutton.enabled = true dstbutton.enabled = true hwbutton.enabled = true @@ -1313,7 +1294,6 @@ ApplicationWindow { if (imageWriter.readyToWrite()) { writebutton.enabled = true } - customizebutton.visible = imageWriter.imageSupportsCustomization() } function onCancelled() { @@ -1597,9 +1577,8 @@ ApplicationWindow { function selectHWitem(hwmodel) { hwTags = hwmodel.tags - + if (hwmodel.matching_type) { - switch (hwmodel.matching_type) { case "exclusive": hwTagMatchingType = 0 @@ -1709,7 +1688,6 @@ ApplicationWindow { if (imageWriter.readyToWrite()) { writebutton.enabled = true } - customizebutton.visible = imageWriter.imageSupportsCustomization() } } From 69f80e5df35877b8cf7ae73444d5bcffe71be2cd Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Thu, 12 Oct 2023 10:48:16 +0100 Subject: [PATCH 16/25] i18n: Regenerate, sort translation files A long period of hand-editing caused these to fall out of sync with what would have been generated from the source. These were regnerated using the qt5_create_translation macro in the root CMakeLists, and then using lconvert to merge the completely blank translation files with the existing translations. --- src/i18n/rpi-imager_ca.ts | 299 +++++++++++---------- src/i18n/rpi-imager_de.ts | 381 +++++++++++++------------- src/i18n/rpi-imager_en.ts | 265 ++++++++++--------- src/i18n/rpi-imager_es.ts | 299 +++++++++++---------- src/i18n/rpi-imager_fr.ts | 419 +++++++++++++++-------------- src/i18n/rpi-imager_it.ts | 437 +++++++++++++++--------------- src/i18n/rpi-imager_ja.ts | 409 ++++++++++++++-------------- src/i18n/rpi-imager_ko.ts | 409 ++++++++++++++-------------- src/i18n/rpi-imager_nl.ts | 543 ++++++++++++++++++++------------------ src/i18n/rpi-imager_ru.ts | 375 +++++++++++++------------- src/i18n/rpi-imager_sk.ts | 543 ++++++++++++++++++++------------------ src/i18n/rpi-imager_sl.ts | 425 +++++++++++++++-------------- src/i18n/rpi-imager_tr.ts | 323 ++++++++++++----------- src/i18n/rpi-imager_uk.ts | 299 +++++++++++---------- src/i18n/rpi-imager_zh.ts | 513 ++++++++++++++++++----------------- 15 files changed, 3122 insertions(+), 2817 deletions(-) diff --git a/src/i18n/rpi-imager_ca.ts b/src/i18n/rpi-imager_ca.ts index 31bc51e..6ba84b5 100644 --- a/src/i18n/rpi-imager_ca.ts +++ b/src/i18n/rpi-imager_ca.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - S'ha produït un error en escriure a l'emmagatzematge - @@ -28,9 +24,23 @@ Error changing to directory '%1' S'ha produït un error en canviar al directori «%1» + + Error writing to storage + S'ha produït un error en escriure a l'emmagatzematge + DownloadThread + + + unmounting drive + S'està desmuntant el dispositiu + + + + opening drive + S'està obrint la unitat + Error running diskpart: %1 @@ -77,14 +87,19 @@ S'ha produït un error en esborrar amb zeros l'«MBR». - - Error reading from storage.<br>SD card may be broken. - S'ha produït un error en llegir l'emmagatzematge.<br>És possible que la targeta SD estigui malmesa. + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + 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ó) - - Customizing image - S'està personalitzant la imatge + + starting download + S'està iniciant la baixada + + + + Error downloading: %1 + S'ha produït un error en la baixada: %1 @@ -102,9 +117,9 @@ S'ha produït un error en escriure el fitxer al disc - - Error downloading: %1 - S'ha produït un error en la baixada: %1 + + Download corrupt. Hash does not match + La baixada està corrompuda. El «hash» no coincideix @@ -118,41 +133,26 @@ Error writing to storage (while fsync) S'ha produït un error en escriure a l'emmagatzematge (procés: fsync) - - - Download corrupt. Hash does not match - La baixada està corrompuda. El «hash» no coincideix - - - - unmounting drive - S'està desmuntant el dispositiu - - - - opening drive - S'està obrint la unitat - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - 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ó) - - - - starting download - S'està iniciant la baixada - Error writing first block (partition table) S'ha produït un error en escriure el primer bloc (taula de particions) + + + Error reading from storage.<br>SD card may be broken. + S'ha produït un error en llegir l'emmagatzematge.<br>És possible que la targeta SD estigui malmesa. + Verifying write failed. Contents of SD card is different from what was written to it. Ha fallat la verificació de l'escriptura. El contingut de la targeta SD és diferent del que s'hi ha escrit. + + + Customizing image + S'està personalitzant la imatge + DriveFormatThread @@ -320,6 +320,62 @@ Set hostname: Defineix un nom de la màquina (hostname): + + + Set username and password + Defineix el nom d'usuari i contrasenya + + + + Username: + Nom d'usuari: + + + + + Password: + Contrasenya: + + + + Configure wireless LAN + Configura la wifi + + + + SSID: + SSID: + + + + Show password + Mostra la contrasenya + + + + Hidden SSID + SSID oculta + + + + Wireless LAN country: + País del wifi: + + + + Set locale settings + Estableix la configuració regional + + + + Time zone: + Fus horari: + + + + Keyboard layout: + Disposició del teclat: + Enable SSH @@ -345,66 +401,6 @@ RUN SSH-KEYGEN - - - Configure wireless LAN - Configura la wifi - - - - SSID: - SSID: - - - - - Password: - Contrasenya: - - - - Set username and password - Defineix el nom d'usuari i contrasenya - - - - Username: - Nom d'usuari: - - - - Hidden SSID - SSID oculta - - - - Show password - Mostra la contrasenya - - - - Wireless LAN country: - País del wifi: - - - - Set locale settings - Estableix la configuració regional - - - - Time zone: - Fus horari: - - - - Keyboard layout: - Disposició del teclat: - - - Persistent settings - Configuració persistent - Play sound when finished @@ -425,6 +421,10 @@ SAVE DESA + + Persistent settings + Configuració persistent + QObject @@ -438,12 +438,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? Avís: hi ha opcions avançades establertes - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? Voleu aplicar la configuració personalitzada de la imatge desada anteriorment? @@ -474,6 +474,22 @@ Raspberry Pi Imager v%1 Raspberry Pi Imager v%1 + + + + Raspberry Pi Device + + + + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + + @@ -508,9 +524,9 @@ ESCRIU - - Select this button to start writing the image - Seleccioneu aquest botó per a començar l'escriptura de la imatge + + Select this button to change the destination storage device + Seleccioneu aquest botó per a canviar la destinació del dispositiu d'emmagatzematge @@ -535,6 +551,16 @@ Finalizing... S'està finalitzant... + + + Next + + + + + Select this button to start writing the image + Seleccioneu aquest botó per a començar l'escriptura de la imatge + Select this button to access advanced settings @@ -570,37 +596,11 @@ [ All ] - - - - Erase - Esborra - - - - Format card as FAT32 - Formata la targeta com a FAT32 - - - - Use custom - Utilitza una personalitzada - - - - Select a custom .img from your computer - Selecciona una imatge .img personalitzada de l'ordinador - Back Enrere - - - Select this button to change the destination storage device - Seleccioneu aquest botó per a canviar la destinació del dispositiu d'emmagatzematge - Go back to main menu @@ -658,6 +658,11 @@ Preparing to write... S'està preparant per a escriure... + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + Totes les dades existents a «%1» s'esborraràn.<br>Esteu segur que voleu continuar? + Update available @@ -668,21 +673,16 @@ There is a newer version of Imager available.<br>Would you like to visit the website to download it? Hi ha una nova versió de l'Imager disponible.<br>Voleu visitar el lloc web per baixar-la? - - - Writing... %1% - S'està escrivint... %1% - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Totes les dades existents a «%1» s'esborraràn.<br>Esteu segur que voleu continuar? - Error downloading OS list from Internet S'ha produït un error en baixar la llista dels SO d'internet + + + Writing... %1% + S'està escrivint... %1% + Verifying... %1% @@ -703,6 +703,12 @@ Write Successful S'ha escrit amb èxit + + + + Erase + Esborra + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader @@ -718,6 +724,21 @@ Error parsing os_list.json S'ha produït un error en analitzar os_lists.json + + + Format card as FAT32 + Formata la targeta com a FAT32 + + + + Use custom + Utilitza una personalitzada + + + + Select a custom .img from your computer + Selecciona una imatge .img personalitzada de l'ordinador + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. diff --git a/src/i18n/rpi-imager_de.ts b/src/i18n/rpi-imager_de.ts index 770e4a4..c605a7f 100644 --- a/src/i18n/rpi-imager_de.ts +++ b/src/i18n/rpi-imager_de.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - Fehler beim Schreiben auf den Speicher - @@ -28,6 +24,10 @@ Error changing to directory '%1' Fehler beim Wechseln in den Ordner "%1" + + Error writing to storage + Fehler beim Schreiben auf den Speicher + DownloadThread @@ -100,50 +100,9 @@ Bitte stellen Sie sicher, dass 'Raspberry Pi Imager' Zugriff auf &apos Download wird gestartet - - Error reading from storage.<br>SD card may be broken. - Fehler beim Lesen vom Speicher.<br>Die SD-Karte könnte defekt sein. - - - Waiting for FAT partition to be mounted - Warten auf das Einbinden der FAT-Partition - - - Error mounting FAT32 partition - Fehler beim Einbinden der FAT32-Partition - - - Operating system did not mount FAT32 partition - Das Betriebssystem hat die FAT32-Partition nicht eingebunden. - - - Unable to customize. File '%1' does not exist. - Modifizieren fehlgeschlagen. Die Datei '%1' existiert nicht. - - - - Customizing image - Image modifizieren - - - Error creating firstrun.sh on FAT partition - Fehler beim Erstellen von firstrun.sh auf der FAT-Partition - - - Error writing to config.txt on FAT partition - Fehler beim Schreiben in config.txt auf der FAT-Partition - - - Error creating user-data cloudinit file on FAT partition - Fehler beim Erstellen der user-data cloudinit Datei auf der FAT-Partition - - - Error creating network-config cloudinit file on FAT partition - Fehler beim Erstellen der network-config cloudinit Datei auf der FAT-Partition - - - Error writing to cmdline.txt on FAT partition - Fehler beim Schreiben in cmdline.txt auf der FAT-Partition + + Error downloading: %1 + Fehler beim Herunterladen: %1 @@ -163,11 +122,6 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Error writing file to disk Fehler beim Schreiben der Datei auf den Speicher - - - Error downloading: %1 - Fehler beim Herunterladen: %1 - Download corrupt. Hash does not match @@ -190,11 +144,57 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Error writing first block (partition table) Fehler beim Schreiben auf des ersten Blocks (Partitionstabelle) + + + Error reading from storage.<br>SD card may be broken. + Fehler beim Lesen vom Speicher.<br>Die SD-Karte könnte defekt sein. + Verifying write failed. Contents of SD card is different from what was written to it. Verifizierung fehlgeschlagen. Der Inhalt der SD-Karte weicht von dem Inhalt ab, der geschrieben werden sollte. + + + Customizing image + Image modifizieren + + + Waiting for FAT partition to be mounted + Warten auf das Einbinden der FAT-Partition + + + Error mounting FAT32 partition + Fehler beim Einbinden der FAT32-Partition + + + Operating system did not mount FAT32 partition + Das Betriebssystem hat die FAT32-Partition nicht eingebunden. + + + Unable to customize. File '%1' does not exist. + Modifizieren fehlgeschlagen. Die Datei '%1' existiert nicht. + + + Error creating firstrun.sh on FAT partition + Fehler beim Erstellen von firstrun.sh auf der FAT-Partition + + + Error writing to config.txt on FAT partition + Fehler beim Schreiben in config.txt auf der FAT-Partition + + + Error creating user-data cloudinit file on FAT partition + Fehler beim Erstellen der user-data cloudinit Datei auf der FAT-Partition + + + Error creating network-config cloudinit file on FAT partition + Fehler beim Erstellen der network-config cloudinit Datei auf der FAT-Partition + + + Error writing to cmdline.txt on FAT partition + Fehler beim Schreiben in cmdline.txt auf der FAT-Partition + DriveFormatThread @@ -342,75 +342,6 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- to always use Immer verwenden - - Disable overscan - Overscan deaktivieren - - - - Set hostname: - Hostname: - - - - Enable SSH - SSH aktivieren - - - - Use password authentication - Password zur Authentifizierung verwenden - - - - Allow public-key authentication only - Authentifizierung via Public-Key - - - Set password for '%1' user: - Passwort für '%1': - - - - Set authorized_keys for '%1': - authorized_keys für '%1': - - - - Configure wireless LAN - Wifi einrichten - - - - SSID: - SSID: - - - - - Password: - Passwort: - - - - Set username and password - Benutzername und Passwort setzen: - - - - Username: - Benutzername: - - - - Hidden SSID - Verborgene SSID - - - - Show password - Passwort anzeigen - General @@ -426,6 +357,47 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Options + + + Set hostname: + Hostname: + + + + Set username and password + Benutzername und Passwort setzen: + + + + Username: + Benutzername: + + + + + Password: + Passwort: + + + + Configure wireless LAN + Wifi einrichten + + + + SSID: + SSID: + + + + Show password + Passwort anzeigen + + + + Hidden SSID + Verborgene SSID + Wireless LAN country: @@ -446,19 +418,31 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Keyboard layout: Tastaturlayout: + + + Enable SSH + SSH aktivieren + + + + Use password authentication + Password zur Authentifizierung verwenden + + + + Allow public-key authentication only + Authentifizierung via Public-Key + + + + Set authorized_keys for '%1': + authorized_keys für '%1': + RUN SSH-KEYGEN - - Skip first-run wizard - Einrichtungsassistent überspringen - - - Persistent settings - Dauerhafte Einstellungen - Play sound when finished @@ -479,6 +463,22 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- SAVE SPEICHERN + + Disable overscan + Overscan deaktivieren + + + Set password for '%1' user: + Passwort für '%1': + + + Skip first-run wizard + Einrichtungsassistent überspringen + + + Persistent settings + Dauerhafte Einstellungen + QObject @@ -492,12 +492,12 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? Warnung: Erweiterte Optionen festgelegt - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? Möchten Sie die vorher festgelegten OS-Modifizierungen anwenden? @@ -528,6 +528,22 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Raspberry Pi Imager v%1 Raspberry Pi Imager v%1 + + + + Raspberry Pi Device + + + + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + + @@ -556,19 +572,15 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- CHOOSE STORAGE SD-KARTE WÄHLEN - - Select this button to change the destination SD card - Klicke auf diesen Knopf, um die Ziel-SD-Karte zu ändern - WRITE SCHREIBEN - - Select this button to start writing the image - Klicke auf diesen Knopf, um mit dem Schreiben zu beginnen + + Select this button to change the destination storage device + Klicken Sie auf diesen Knopf, um das Ziel-Speichermedium zu ändern @@ -594,35 +606,14 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Finalisieren... - - - Erase - Löschen + + Next + - - Format card as FAT32 - Karte als FAT32 formatieren - - - - Use custom - Eigenes Image - - - - Select a custom .img from your computer - Wählen Sie eine eigene .img-Datei von Ihrem Computer - - - - Back - Zurück - - - - Select this button to change the destination storage device - Klicken Sie auf diesen Knopf, um das Ziel-Speichermedium zu ändern + + Select this button to start writing the image + Klicke auf diesen Knopf, um mit dem Schreiben zu beginnen @@ -659,6 +650,11 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- [ All ] + + + Back + Zurück + Go back to main menu @@ -716,6 +712,11 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Preparing to write... Schreiben wird vorbereitet... + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + Alle vorhandenen Daten auf '%1' werden gelöscht.<br>Möchten Sie wirklich fortfahren? + Update available @@ -726,21 +727,16 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- There is a newer version of Imager available.<br>Would you like to visit the website to download it? Eine neuere Version von Imager ist verfügbar. <br>Möchten Sie die Webseite besuchen, um das Update herunterzuladen? - - - Writing... %1% - Schreiben... %1% - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Alle vorhandenen Daten auf '%1' werden gelöscht.<br>Möchten Sie wirklich fortfahren? - Error downloading OS list from Internet Fehler beim Herunterladen der Betriebssystemsliste aus dem Internet + + + Writing... %1% + Schreiben... %1% + Verifying... %1% @@ -761,15 +757,17 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Write Successful Schreiben erfolgreich + + + + Erase + Löschen + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader <b>%1</b> wurde geleert<br><br>Sie können die SD-Karte nun aus dem Lesegerät entfernen - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> wurde auf <b>%2</b> geschrieben - <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader @@ -780,6 +778,21 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Error parsing os_list.json Fehler beim Parsen von os_list.json + + + Format card as FAT32 + Karte als FAT32 formatieren + + + + Use custom + Eigenes Image + + + + Select a custom .img from your computer + Wählen Sie eine eigene .img-Datei von Ihrem Computer + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. @@ -790,5 +803,13 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. Die Speicherkarte ist schreibgeschützt.<br>Schieben Sie den Schutzschalter auf der linken Seite nach oben, und versuchen Sie es erneut. + + Select this button to change the destination SD card + Klicke auf diesen Knopf, um die Ziel-SD-Karte zu ändern + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> wurde auf <b>%2</b> geschrieben + diff --git a/src/i18n/rpi-imager_en.ts b/src/i18n/rpi-imager_en.ts index d80bbdf..0a302ee 100644 --- a/src/i18n/rpi-imager_en.ts +++ b/src/i18n/rpi-imager_en.ts @@ -27,6 +27,16 @@ DownloadThread + + + unmounting drive + + + + + opening drive + + Error running diskpart: %1 @@ -73,13 +83,18 @@ - - Error reading from storage.<br>SD card may be broken. + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - - Customizing image + + starting download + + + + + Error downloading: %1 @@ -98,8 +113,8 @@ - - Error downloading: %1 + + Download corrupt. Hash does not match @@ -114,41 +129,26 @@ Error writing to storage (while fsync) - - - Download corrupt. Hash does not match - - - - - unmounting drive - - - - - opening drive - - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - - - - - starting download - - Error writing first block (partition table) + + + Error reading from storage.<br>SD card may be broken. + + Verifying write failed. Contents of SD card is different from what was written to it. + + + Customizing image + + DriveFormatThread @@ -316,6 +316,62 @@ Set hostname: + + + Set username and password + + + + + Username: + + + + + + Password: + + + + + Configure wireless LAN + + + + + SSID: + + + + + Show password + + + + + Hidden SSID + + + + + Wireless LAN country: + + + + + Set locale settings + + + + + Time zone: + + + + + Keyboard layout: + + Enable SSH @@ -341,62 +397,6 @@ RUN SSH-KEYGEN - - - Configure wireless LAN - - - - - SSID: - - - - - - Password: - - - - - Set username and password - - - - - Username: - - - - - Hidden SSID - - - - - Show password - - - - - Wireless LAN country: - - - - - Set locale settings - - - - - Time zone: - - - - - Keyboard layout: - - Play sound when finished @@ -430,12 +430,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? @@ -466,6 +466,12 @@ Raspberry Pi Imager v%1 + + + + Raspberry Pi Device + + CHOOSE DEVICE @@ -510,8 +516,8 @@ - - Select this button to start writing the image + + Select this button to change the destination storage device @@ -537,6 +543,16 @@ Finalizing... + + + Next + + + + + Select this button to start writing the image + + Select this button to access advanced settings @@ -572,37 +588,11 @@ [ All ] - - - - Erase - - - - - Format card as FAT32 - - - - - Use custom - - - - - Select a custom .img from your computer - - Back - - - Select this button to change the destination storage device - - Go back to main menu @@ -660,6 +650,11 @@ Preparing to write... + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + Update available @@ -670,21 +665,16 @@ There is a newer version of Imager available.<br>Would you like to visit the website to download it? - - - Writing... %1% - - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - - Error downloading OS list from Internet + + + Writing... %1% + + Verifying... %1% @@ -705,6 +695,12 @@ Write Successful + + + + Erase + + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader @@ -720,6 +716,21 @@ Error parsing os_list.json + + + Format card as FAT32 + + + + + Use custom + + + + + Select a custom .img from your computer + + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. diff --git a/src/i18n/rpi-imager_es.ts b/src/i18n/rpi-imager_es.ts index 7dcc479..36c146e 100644 --- a/src/i18n/rpi-imager_es.ts +++ b/src/i18n/rpi-imager_es.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - Error escribiendo en la memoria - @@ -28,9 +24,23 @@ Error changing to directory '%1' Error cambiando al directorio '%1' + + Error writing to storage + Error escribiendo en la memoria + DownloadThread + + + unmounting drive + desmontando unidad + + + + opening drive + abriendo unidad + Error running diskpart: %1 @@ -77,14 +87,19 @@ Error de escritura al poner a cero MBR - - Error reading from storage.<br>SD card may be broken. - Error leyendo del almacenamiento.<br>La tarjeta SD puede estar rota. + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + Error de escritura al intentar poner a cero la última parte de la tarjeta.<br>La tarjeta podría estar anunciando una capacidad incorrecta (posible falsificación). - - Customizing image - Personalizando imagen + + starting download + iniciando descarga + + + + Error downloading: %1 + Error descargando: %1 @@ -102,9 +117,9 @@ Error escribiendo el archivo en el disco - - Error downloading: %1 - Error descargando: %1 + + Download corrupt. Hash does not match + Descarga corrupta. El hash no coincide @@ -118,41 +133,26 @@ Error writing to storage (while fsync) Error escribiendo en el almacenamiento (mientras fsync) - - - Download corrupt. Hash does not match - Descarga corrupta. El hash no coincide - - - - unmounting drive - desmontando unidad - - - - opening drive - abriendo unidad - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Error de escritura al intentar poner a cero la última parte de la tarjeta.<br>La tarjeta podría estar anunciando una capacidad incorrecta (posible falsificación). - - - - starting download - iniciando descarga - Error writing first block (partition table) Error escribiendo el primer bloque (tabla de particiones) + + + Error reading from storage.<br>SD card may be broken. + Error leyendo del almacenamiento.<br>La tarjeta SD puede estar rota. + Verifying write failed. Contents of SD card is different from what was written to it. Error verificando la escritura. El contenido de la tarjeta SD es diferente del que se escribió en ella. + + + Customizing image + Personalizando imagen + DriveFormatThread @@ -320,6 +320,62 @@ Set hostname: Establecer nombre de anfitrión: + + + Set username and password + Establecer nombre de usuario y contraseña + + + + Username: + Nombre de usuario: + + + + + Password: + Contraseña: + + + + Configure wireless LAN + Configurar LAN inalámbrica + + + + SSID: + SSID: + + + + Show password + Mostrar contraseña + + + + Hidden SSID + SSID oculta + + + + Wireless LAN country: + País de LAN inalámbrica: + + + + Set locale settings + Establecer ajustes regionales + + + + Time zone: + Zona horaria: + + + + Keyboard layout: + Distribución del teclado: + Enable SSH @@ -345,66 +401,6 @@ RUN SSH-KEYGEN EJECUTAR SSH-KEYGEN - - - Configure wireless LAN - Configurar LAN inalámbrica - - - - SSID: - SSID: - - - - - Password: - Contraseña: - - - - Set username and password - Establecer nombre de usuario y contraseña - - - - Username: - Nombre de usuario: - - - - Hidden SSID - SSID oculta - - - - Show password - Mostrar contraseña - - - - Wireless LAN country: - País de LAN inalámbrica: - - - - Set locale settings - Establecer ajustes regionales - - - - Time zone: - Zona horaria: - - - - Keyboard layout: - Distribución del teclado: - - - Persistent settings - Ajustes persistentes - Play sound when finished @@ -425,6 +421,10 @@ SAVE GUARDAR + + Persistent settings + Ajustes persistentes + QObject @@ -438,12 +438,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? Advertencia: ajustes avanzados establecidos - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? ¿Desea aplicar los ajustes de personalización de imagen guardados anteriormente? @@ -474,6 +474,22 @@ Raspberry Pi Imager v%1 Raspberry Pi Imager v%1 + + + + Raspberry Pi Device + + + + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + + @@ -508,9 +524,9 @@ ESCRIBIR - - Select this button to start writing the image - Seleccione este botón para empezar a escribir la imagen + + Select this button to change the destination storage device + Seleccione este botón para cambiar el dispositivo de almacenamiento de destino @@ -535,6 +551,16 @@ Finalizing... Finalizando... + + + Next + + + + + Select this button to start writing the image + Seleccione este botón para empezar a escribir la imagen + Select this button to access advanced settings @@ -570,37 +596,11 @@ [ All ] [ Todos ] - - - - Erase - Borrar - - - - Format card as FAT32 - Formatear tarjeta como FAT32 - - - - Use custom - Usar personalizado - - - - Select a custom .img from your computer - Seleccione un .img personalizado de su ordenador - Back Volver - - - Select this button to change the destination storage device - Seleccione este botón para cambiar el dispositivo de almacenamiento de destino - Go back to main menu @@ -658,6 +658,11 @@ Preparing to write... Preparando para escribir... + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + Se borrarán todos los datos existentes en '%1'.<br>¿Está seguro de que desea continuar? + Update available @@ -668,21 +673,16 @@ There is a newer version of Imager available.<br>Would you like to visit the website to download it? Hay una versión más reciente de Imager disponible.<br>¿Desea visitar el sitio web para descargarla? - - - Writing... %1% - Escribiendo... %1% - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Se borrarán todos los datos existentes en '%1'.<br>¿Está seguro de que desea continuar? - Error downloading OS list from Internet Error al descargar la lista de sistemas operativos de Internet + + + Writing... %1% + Escribiendo... %1% + Verifying... %1% @@ -703,6 +703,12 @@ Write Successful Escritura exitosa + + + + Erase + Borrar + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader @@ -718,6 +724,21 @@ Error parsing os_list.json Error al parsear os_list.json + + + Format card as FAT32 + Formatear tarjeta como FAT32 + + + + Use custom + Usar personalizado + + + + Select a custom .img from your computer + Seleccione un .img personalizado de su ordenador + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. diff --git a/src/i18n/rpi-imager_fr.ts b/src/i18n/rpi-imager_fr.ts index ecc4c61..88cd2b7 100644 --- a/src/i18n/rpi-imager_fr.ts +++ b/src/i18n/rpi-imager_fr.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - Erreur d'écriture dans le stockage - @@ -28,9 +24,23 @@ Error changing to directory '%1' Erreur lors du changement du répertoire '%1' + + Error writing to storage + Erreur d'écriture dans le stockage + DownloadThread + + + unmounting drive + démontage du disque + + + + opening drive + ouverture du disque + Error running diskpart: %1 @@ -76,11 +86,73 @@ Write error while zero'ing out MBR Erreur d'écriture lors du formatage du MBR + + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + 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). + + + + starting download + début du téléchargement + + + + Error downloading: %1 + Erreur de téléchargement : %1 + + + + Access denied error while writing file to disk. + Accès refusé lors de l'écriture d'un fichier sur le disque. + + + + 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. + L'accès contrôlé aux dossiers semble être activé. Veuillez ajouter rpi-imager.exe et fat32format.exe à la liste des applications autorisées et réessayez. + + + + Error writing file to disk + Erreur d'écriture de fichier sur le disque + + + + Download corrupt. Hash does not match + Téléchargement corrompu. La signature ne correspond pas + + + + + Error writing to storage (while flushing) + Erreur d'écriture dans le stockage (lors du formatage) + + + + + Error writing to storage (while fsync) + Erreur d'écriture dans le stockage (pendant l'exécution de fsync) + + + + Error writing first block (partition table) + Erreur lors de l'écriture du premier bloc (table de partition) + Error reading from storage.<br>SD card may be broken. Erreur de lecture du stockage.<br>La carte SD est peut-être défectueuse. + + + Verifying write failed. Contents of SD card is different from what was written to it. + La vérification de l'écriture à échoué. Le contenu de la carte SD est différent de ce qui y a été écrit. + + + + Customizing image + Personnalisation de l'image + Waiting for FAT partition to be mounted En attente du montage de la partition FAT @@ -97,11 +169,6 @@ Unable to customize. File '%1' does not exist. Impossible de personnaliser. Le fichier '%1' n'existe pas. - - - Customizing image - Personnalisation de l'image - Error creating firstrun.sh on FAT partition Erreur lors de la création de firstrun.sh sur la partition FAT @@ -122,73 +189,6 @@ Error writing to cmdline.txt on FAT partition Erreur lors de l'écriture de cmdline.txt sur la partition FAT - - - Access denied error while writing file to disk. - Accès refusé lors de l'écriture d'un fichier sur le disque. - - - - 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. - L'accès contrôlé aux dossiers semble être activé. Veuillez ajouter rpi-imager.exe et fat32format.exe à la liste des applications autorisées et réessayez. - - - - Error writing file to disk - Erreur d'écriture de fichier sur le disque - - - - Error downloading: %1 - Erreur de téléchargement : %1 - - - - - Error writing to storage (while flushing) - Erreur d'écriture dans le stockage (lors du formatage) - - - - - Error writing to storage (while fsync) - Erreur d'écriture dans le stockage (pendant l'exécution de fsync) - - - - Download corrupt. Hash does not match - Téléchargement corrompu. La signature ne correspond pas - - - - unmounting drive - démontage du disque - - - - opening drive - ouverture du disque - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - 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). - - - - starting download - début du téléchargement - - - - Error writing first block (partition table) - Erreur lors de l'écriture du premier bloc (table de partition) - - - - Verifying write failed. Contents of SD card is different from what was written to it. - La vérification de l'écriture à échoué. Le contenu de la carte SD est différent de ce qui y a été écrit. - DriveFormatThread @@ -356,6 +356,62 @@ Set hostname: Nom d'hôte + + + Set username and password + Définir nom d'utilisateur et mot de passe + + + + Username: + Nom d'utilisateur : + + + + + Password: + Mot de passe : + + + + Configure wireless LAN + Configurer le Wi-Fi + + + + SSID: + SSID : + + + + Show password + Afficher le mot de passe + + + + Hidden SSID + SSID caché + + + + Wireless LAN country: + Pays Wi-Fi : + + + + Set locale settings + Définir les réglages locaux + + + + Time zone: + Fuseau horaire : + + + + Keyboard layout: + Type de clavier : + Enable SSH @@ -381,66 +437,6 @@ RUN SSH-KEYGEN - - - Configure wireless LAN - Configurer le Wi-Fi - - - - SSID: - SSID : - - - - - Password: - Mot de passe : - - - - Set username and password - Définir nom d'utilisateur et mot de passe - - - - Username: - Nom d'utilisateur : - - - - Hidden SSID - SSID caché - - - - Show password - Afficher le mot de passe - - - - Wireless LAN country: - Pays Wi-Fi : - - - - Set locale settings - Définir les réglages locaux - - - - Time zone: - Fuseau horaire : - - - - Keyboard layout: - Type de clavier : - - - Persistent settings - Réglages permanents - Play sound when finished @@ -461,6 +457,10 @@ SAVE ENREGISTRER + + Persistent settings + Réglages permanents + QObject @@ -474,12 +474,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? Attention : réglages avancés définis - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? Voulez-vous appliquer les réglages de personnalisation de l'image enregistrés précédemment ? @@ -510,6 +510,22 @@ Raspberry Pi Imager v%1 Raspberry Pi Imager v%1 + + + + Raspberry Pi Device + + + + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + + @@ -538,19 +554,15 @@ CHOOSE STORAGE CHOISIR LE STOCKAGE - - Select this button to change the destination SD card - Sélectionnez ce bouton pour changer la carte SD de destination - WRITE ÉCRIRE - - Select this button to start writing the image - Sélectionner ce bouton pour commencer l'écriture de l'image + + Select this button to change the destination storage device + Sélectionner ce bouton pour modifier le périphérique de stockage de destination @@ -576,35 +588,14 @@ Finalisation... - - - Erase - Effacer + + Next + - - Format card as FAT32 - Formater la carte SD en FAT32 - - - - Use custom - Utiliser image personnalisée - - - - Select a custom .img from your computer - Sélectionner une image disque personnalisée (.img) sur votre ordinateur - - - - Back - Retour - - - - Select this button to change the destination storage device - Sélectionner ce bouton pour modifier le périphérique de stockage de destination + + Select this button to start writing the image + Sélectionner ce bouton pour commencer l'écriture de l'image @@ -641,6 +632,11 @@ [ All ] + + + Back + Retour + Go back to main menu @@ -688,11 +684,21 @@ Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? Raspberry Pi Imager est encore occupé.<br>Voulez-vous vraiment quitter ? + + + Warning + Attention + Preparing to write... Préparation de l'écriture... + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + Toutes les données sur le périphérique de stockage '%1' vont être supprimées.<br>Voulez-vous vraiment continuer ? + Update available @@ -704,44 +710,25 @@ Une version plus récente d'Imager est disponible.<br>Voulez-vous accéder au site web pour la télécharger ? - - Preparing to write... (%1) - Préparation de l'écriture... (%1) - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> a bien été écrit sur <b>%2</b> - - - - SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - La carte SD est protégée en écriture.<br>Poussez vers le haut le commutateur de verrouillage sur le côté gauche de la carte et essayez à nouveau. - - - - Warning - Attention + + Error downloading OS list from Internet + Erreur lors du téléchargement de la liste des systèmes d'exploitation à partir d'Internet Writing... %1% Écriture... %1% - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Toutes les données sur le périphérique de stockage '%1' vont être supprimées.<br>Voulez-vous vraiment continuer ? - - - - Error downloading OS list from Internet - Erreur lors du téléchargement de la liste des systèmes d'exploitation à partir d'Internet - Verifying... %1% Vérification... %1% + + + Preparing to write... (%1) + Préparation de l'écriture... (%1) + Error @@ -752,6 +739,12 @@ Write Successful Écriture réussie + + + + Erase + Effacer + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader @@ -767,10 +760,38 @@ Error parsing os_list.json Erreur de lecture du fichier os_list.json + + + Format card as FAT32 + Formater la carte SD en FAT32 + + + + Use custom + Utiliser image personnalisée + + + + Select a custom .img from your computer + Sélectionner une image disque personnalisée (.img) sur votre ordinateur + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. Connecter d'abord une clé USB contenant les images.<br>Les images doivent se trouver dans le dossier racine de la clé USB. + + + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. + La carte SD est protégée en écriture.<br>Poussez vers le haut le commutateur de verrouillage sur le côté gauche de la carte et essayez à nouveau. + + + Select this button to change the destination SD card + Sélectionnez ce bouton pour changer la carte SD de destination + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> a bien été écrit sur <b>%2</b> + diff --git a/src/i18n/rpi-imager_it.ts b/src/i18n/rpi-imager_it.ts index aea348b..f6337a9 100644 --- a/src/i18n/rpi-imager_it.ts +++ b/src/i18n/rpi-imager_it.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - Errore scrittura nello storage - @@ -28,9 +24,23 @@ Error changing to directory '%1' Errore passaggio a cartella '%1' + + Error writing to storage + Errore scrittura nello storage + DownloadThread + + + unmounting drive + smontaggio unità + + + + opening drive + apertura unità + Error running diskpart: %1 @@ -76,11 +86,74 @@ Write error while zero'ing out MBR Errore scrittura durante azzeramento MBR + + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + 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). + + + + starting download + avvio download + + + + Error downloading: %1 + Errore download: %1 + + + + Access denied error while writing file to disk. + Errore accesso negato durante la scrittura del file su disco. + + + + 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. + Sembra sia abilitato l'accesso controllato alle cartelle. +Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all'elenco delle app consentite e riprova. + + + + Error writing file to disk + Errore scrittura file su disco + + + + Download corrupt. Hash does not match + Download corrotto.<br>L'hash non corrisponde + + + + + Error writing to storage (while flushing) + Errore scrittura nello storage (durante flushing) + + + + + Error writing to storage (while fsync) + Errore scrittura nello storage (durante fsync) + + + + Error writing first block (partition table) + Errore scrittura primo blocco (tabella partizione) + Error reading from storage.<br>SD card may be broken. Errore lettura dallo storage.<br>La scheda SD potrebbe essere danneggiata. + + + Verifying write failed. Contents of SD card is different from what was written to it. + Verifica scrittura fallita.<br>Il contenuto della SD è differente da quello che vi è stato scritto. + + + + Customizing image + Personalizza immagine + Waiting for FAT partition to be mounted Attesa montaggio partizione FAT @@ -97,11 +170,6 @@ Unable to customize. File '%1' does not exist. Impossibile personalizzare. Il file '%1' non esiste. - - - Customizing image - Personalizza immagine - Error creating firstrun.sh on FAT partition Errore creazione firstrun.sh nella partizione FAT @@ -122,74 +190,6 @@ Error writing to cmdline.txt on FAT partition Errore scrittura in cmdline.txt nella partizione FAT - - - Access denied error while writing file to disk. - Errore accesso negato durante la scrittura del file su disco. - - - - 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. - Sembra sia abilitato l'accesso controllato alle cartelle. -Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all'elenco delle app consentite e riprova. - - - - Error writing file to disk - Errore scrittura file su disco - - - - Error downloading: %1 - Errore download: %1 - - - - - Error writing to storage (while flushing) - Errore scrittura nello storage (durante flushing) - - - - - Error writing to storage (while fsync) - Errore scrittura nello storage (durante fsync) - - - - Download corrupt. Hash does not match - Download corrotto.<br>L'hash non corrisponde - - - - unmounting drive - smontaggio unità - - - - opening drive - apertura unità - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - 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). - - - - starting download - avvio download - - - - Error writing first block (partition table) - Errore scrittura primo blocco (tabella partizione) - - - - Verifying write failed. Contents of SD card is different from what was written to it. - Verifica scrittura fallita.<br>Il contenuto della SD è differente da quello che vi è stato scritto. - DriveFormatThread @@ -337,79 +337,6 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos to always use da usare sempre - - Disable overscan - Disabilita overscan - - - - Set hostname: - Imposta nome host: - - - - Enable SSH - Abilita SSH - - - - Use password authentication - Usa password autenticazione - - - Set password for 'pi' user: - Imposta password utente 'pi': - - - - Allow public-key authentication only - Permetti solo autenticazione con chiave pubblica - - - Set authorized_keys for 'pi': - Imposta authorized_key per 'pi': - - - - Set authorized_keys for '%1': - Imposta authorized_keys per '%1': - - - - Configure wireless LAN - Configura WiFi - - - - SSID: - SSID: - - - - - Password: - Password: - - - - Set username and password - Imposta nome utente e password - - - - Username: - Nome utente: - - - - Hidden SSID - SSID nascosto - - - - Show password - Visualizza password - General @@ -425,6 +352,47 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos Options Opzioni + + + Set hostname: + Imposta nome host: + + + + Set username and password + Imposta nome utente e password + + + + Username: + Nome utente: + + + + + Password: + Password: + + + + Configure wireless LAN + Configura WiFi + + + + SSID: + SSID: + + + + Show password + Visualizza password + + + + Hidden SSID + SSID nascosto + Wireless LAN country: @@ -445,19 +413,31 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos Keyboard layout: Layout tastiera: + + + Enable SSH + Abilita SSH + + + + Use password authentication + Usa password autenticazione + + + + Allow public-key authentication only + Permetti solo autenticazione con chiave pubblica + + + + Set authorized_keys for '%1': + Imposta authorized_keys per '%1': + RUN SSH-KEYGEN ESEGUI SSH-KEYGEN - - Skip first-run wizard - Salta procedura prima impostazione - - - Persistent settings - Impostazioni persistenti - Play sound when finished @@ -478,6 +458,26 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos SAVE SALVA + + Disable overscan + Disabilita overscan + + + Set password for 'pi' user: + Imposta password utente 'pi': + + + Set authorized_keys for 'pi': + Imposta authorized_key per 'pi': + + + Skip first-run wizard + Salta procedura prima impostazione + + + Persistent settings + Impostazioni persistenti + QObject @@ -491,12 +491,12 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? Attenzione: impostazioni avanzate impostate - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? Vuoi applicare le impostazioni di personalizzazione dell'immagine salvate in precedenza? @@ -527,6 +527,22 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos Raspberry Pi Imager v%1 Raspberry Pi Imager v. %1 + + + + Raspberry Pi Device + + + + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + + @@ -555,19 +571,15 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos CHOOSE STORAGE SCEGLI SCHEDA SD - - Select this button to change the destination SD card - Seleziona questo pulsante per modificare la scheda SD destinazione - WRITE SCRIVI - - Select this button to start writing the image - Seleziona questo pulsante per avviare la scrittura del file immagine + + Select this button to change the destination storage device + Seleziona questo pulsante per modificare il dispositivo archiviazione destinazione @@ -593,35 +605,14 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos Finalizzazione... - - - Erase - Cancella + + Next + - - Format card as FAT32 - Formatta scheda come FAT32 - - - - Use custom - Usa immagine personalizzata - - - - Select a custom .img from your computer - Seleziona un file immagine .img personalizzato - - - - Back - Indietro - - - - Select this button to change the destination storage device - Seleziona questo pulsante per modificare il dispositivo archiviazione destinazione + + Select this button to start writing the image + Seleziona questo pulsante per avviare la scrittura del file immagine @@ -658,6 +649,11 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos [ All ] [ Tutti ] + + + Back + Indietro + Go back to main menu @@ -715,6 +711,11 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos Preparing to write... Preparazione scrittura... + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + Tutti i dati esistenti in '%1' verranno eliminati.<br>Sei sicuro di voler continuare? + Update available @@ -725,21 +726,16 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos There is a newer version of Imager available.<br>Would you like to visit the website to download it? È disponibile una nuova versione di Imager.<br>Vuoi visitare il sito web per scaricare la nuova versione? - - - Writing... %1% - Scrittura...%1 - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Tutti i dati esistenti in '%1' verranno eliminati.<br>Sei sicuro di voler continuare? - Error downloading OS list from Internet Errore durante download elenco SO da internet + + + Writing... %1% + Scrittura...%1 + Verifying... %1% @@ -760,15 +756,17 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos Write Successful Scrittura completata senza errori + + + + Erase + Cancella + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader Azzeramento di <b>%1</b> completato<br><br>Ora puoi rimuovere la scheda SD dal lettore - - <b>%1</b> has been written to <b>%2</b> - Scrittura di <b>%1</b> in <b>%2</b>completata - <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader @@ -779,6 +777,21 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos Error parsing os_list.json Errore durante analisi file os_list.json + + + Format card as FAT32 + Formatta scheda come FAT32 + + + + Use custom + Usa immagine personalizzata + + + + Select a custom .img from your computer + Seleziona un file immagine .img personalizzato + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. @@ -789,5 +802,13 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. La scheda SD è protetta da scrittura.<br>Sposta verso l'alto l'interruttore LOCK sul lato sinistro della scheda SD e riprova. + + Select this button to change the destination SD card + Seleziona questo pulsante per modificare la scheda SD destinazione + + + <b>%1</b> has been written to <b>%2</b> + Scrittura di <b>%1</b> in <b>%2</b>completata + diff --git a/src/i18n/rpi-imager_ja.ts b/src/i18n/rpi-imager_ja.ts index d80dd71..0fe9488 100644 --- a/src/i18n/rpi-imager_ja.ts +++ b/src/i18n/rpi-imager_ja.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - ストレージに書き込むのに失敗しました - @@ -28,9 +24,23 @@ Error changing to directory '%1' カレントディレクトリを%1に変更できませんでした + + Error writing to storage + ストレージに書き込むのに失敗しました + DownloadThread + + + unmounting drive + + + + + opening drive + デバイスを開いています + Error running diskpart: %1 @@ -76,11 +86,73 @@ Write error while zero'ing out MBR MBRを削除している際にエラーが発生しました。 + + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + カードの最後のパートを0で書き込む際書き込みエラーが発生しました。カードが示している容量と実際のカードの容量が違う可能性があります。 + + + + starting download + ダウンロードを開始中 + + + + Error downloading: %1 + %1をダウンロードする際エラーが発生しました + + + + Access denied error while writing file to disk. + ディスクにファイルを書き込む際にアクセスが拒否されました。 + + + + 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. + フォルダーへのアクセスが制限されています。許可されたアプリにrpi-imager.exeとfat32format.exeを入れてもう一度お試しください。 + + + + Error writing file to disk + ファイルをディスクに書き込んでいる際にエラーが発生しました + + + + Download corrupt. Hash does not match + ダウンロードに失敗しました。ハッシュ値が一致していません。 + + + + + Error writing to storage (while flushing) + ストレージへの書き込み中にエラーが発生しました (フラッシング中) + + + + + Error writing to storage (while fsync) + ストレージへの書き込み中にエラーが発生しました(fsync中) + + + + Error writing first block (partition table) + 最初のブロック(パーティションテーブル)を書き込み中にエラーが発生しました + Error reading from storage.<br>SD card may be broken. ストレージを読むのに失敗しました。SDカードが壊れている可能性があります。 + + + Verifying write failed. Contents of SD card is different from what was written to it. + 確認中にエラーが発生しました。書き込んだはずのデータが実際にSDカードに記録されたデータと一致していません。 + + + + Customizing image + イメージをカスタマイズしています + Waiting for FAT partition to be mounted FATパーティションがマウントされるのを待っています @@ -97,11 +169,6 @@ Unable to customize. File '%1' does not exist. カスタマイズできません。%1が存在しません。 - - - Customizing image - イメージをカスタマイズしています - Error creating firstrun.sh on FAT partition FATパーティションにfirstrun.shを作成する際にエラーが発生しました @@ -122,73 +189,6 @@ Error writing to cmdline.txt on FAT partition FATパーティションにcmdline.txtを書き込む際にエラーが発生しました - - - Access denied error while writing file to disk. - ディスクにファイルを書き込む際にアクセスが拒否されました。 - - - - 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. - フォルダーへのアクセスが制限されています。許可されたアプリにrpi-imager.exeとfat32format.exeを入れてもう一度お試しください。 - - - - Error writing file to disk - ファイルをディスクに書き込んでいる際にエラーが発生しました - - - - Error downloading: %1 - %1をダウンロードする際エラーが発生しました - - - - - Error writing to storage (while flushing) - ストレージへの書き込み中にエラーが発生しました (フラッシング中) - - - - - Error writing to storage (while fsync) - ストレージへの書き込み中にエラーが発生しました(fsync中) - - - - Download corrupt. Hash does not match - ダウンロードに失敗しました。ハッシュ値が一致していません。 - - - - unmounting drive - - - - - opening drive - デバイスを開いています - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - カードの最後のパートを0で書き込む際書き込みエラーが発生しました。カードが示している容量と実際のカードの容量が違う可能性があります。 - - - - starting download - ダウンロードを開始中 - - - - Error writing first block (partition table) - 最初のブロック(パーティションテーブル)を書き込み中にエラーが発生しました - - - - Verifying write failed. Contents of SD card is different from what was written to it. - 確認中にエラーが発生しました。書き込んだはずのデータが実際にSDカードに記録されたデータと一致していません。 - DriveFormatThread @@ -336,71 +336,6 @@ to always use いつも使う設定にする - - Disable overscan - オーバースキャンを無効化する - - - - Set hostname: - ホスト名: - - - - Enable SSH - SSHを有効化する - - - - Use password authentication - パスワード認証を使う - - - - Allow public-key authentication only - 公開鍵認証のみを許可する - - - - Set authorized_keys for '%1': - ユーザー%1のためのauthorized_keys - - - - Configure wireless LAN - Wi-Fiを設定する - - - - SSID: - SSID: - - - - - Password: - パスワード: - - - - Set username and password - ユーザー名とパスワードを設定する - - - - Username: - ユーザー名 - - - - Hidden SSID - ステルスSSID - - - - Show password - パスワードを見る - General @@ -416,6 +351,47 @@ Options + + + Set hostname: + ホスト名: + + + + Set username and password + ユーザー名とパスワードを設定する + + + + Username: + ユーザー名 + + + + + Password: + パスワード: + + + + Configure wireless LAN + Wi-Fiを設定する + + + + SSID: + SSID: + + + + Show password + パスワードを見る + + + + Hidden SSID + ステルスSSID + Wireless LAN country: @@ -436,19 +412,31 @@ Keyboard layout: キーボードレイアウト: + + + Enable SSH + SSHを有効化する + + + + Use password authentication + パスワード認証を使う + + + + Allow public-key authentication only + 公開鍵認証のみを許可する + + + + Set authorized_keys for '%1': + ユーザー%1のためのauthorized_keys + RUN SSH-KEYGEN - - Skip first-run wizard - 最初のセットアップウィザートをスキップする - - - Persistent settings - 永続的な設定 - Play sound when finished @@ -469,6 +457,18 @@ SAVE 保存 + + Disable overscan + オーバースキャンを無効化する + + + Skip first-run wizard + 最初のセットアップウィザートをスキップする + + + Persistent settings + 永続的な設定 + QObject @@ -482,12 +482,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? 警告: 詳細な設定が設定されています - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? カスタマイズを適用しますか? @@ -518,6 +518,22 @@ Raspberry Pi Imager v%1 Raspberry Pi Imager v%1 + + + + Raspberry Pi Device + + + + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + + @@ -552,9 +568,9 @@ 書き込む - - Select this button to start writing the image - 書き込みをスタートさせるにはこのボタンを押してください + + Select this button to change the destination storage device + 書き込み先のストレージデバイスを選択するにはこのボタンを押してください @@ -579,6 +595,16 @@ Finalizing... 最終処理をしています... + + + Next + + + + + Select this button to start writing the image + 書き込みをスタートさせるにはこのボタンを押してください + Select this button to access advanced settings @@ -614,37 +640,11 @@ [ All ] - - - - Erase - 削除 - - - - Format card as FAT32 - カードをFAT32でフォーマットする - - - - Use custom - カスタムイメージを使う - - - - Select a custom .img from your computer - 自分で用意したイメージファイルを使う - Back 戻る - - - Select this button to change the destination storage device - 書き込み先のストレージデバイスを選択するにはこのボタンを押してください - Go back to main menu @@ -702,6 +702,11 @@ Preparing to write... 書き込み準備中... + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + %1に存在するすべてのデータは完全に削除されます。本当に続けますか? + Update available @@ -712,21 +717,16 @@ There is a newer version of Imager available.<br>Would you like to visit the website to download it? 新しいバージョンのImagerがあります。<br>ダウンロードするためにウェブサイトに行きますか? - - - Writing... %1% - 書き込み中... %1% - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - %1に存在するすべてのデータは完全に削除されます。本当に続けますか? - Error downloading OS list from Internet OSのリストをダウンロードする際にエラーが発生しました。 + + + Writing... %1% + 書き込み中... %1% + Verifying... %1% @@ -747,15 +747,17 @@ Write Successful 書き込みが正常に終了しました + + + + Erase + 削除 + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader <b%gt;%1</b> は削除されました。<br><bt>SDカードをSDカードリーダーから取り出しても良いです。 - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> は<b>%2</b>に書き込まれました。 - <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader @@ -766,6 +768,21 @@ Error parsing os_list.json os_list.jsonの処理中にエラーが発生しました + + + Format card as FAT32 + カードをFAT32でフォーマットする + + + + Use custom + カスタムイメージを使う + + + + Select a custom .img from your computer + 自分で用意したイメージファイルを使う + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. @@ -776,5 +793,9 @@ SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. SDカードは書き込みが制限されています。<br>カードの左上にあるロックスイッチを上げてロックを解除し、もう一度お試しください。 + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> は<b>%2</b>に書き込まれました。 + diff --git a/src/i18n/rpi-imager_ko.ts b/src/i18n/rpi-imager_ko.ts index 2a7b163..eaf23ae 100644 --- a/src/i18n/rpi-imager_ko.ts +++ b/src/i18n/rpi-imager_ko.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - 저장소에 쓰는 중 오류 발생 - @@ -28,9 +24,23 @@ Error changing to directory '%1' 디렉토리 변경 오류 '%1' + + Error writing to storage + 저장소에 쓰는 중 오류 발생 + DownloadThread + + + unmounting drive + 드라이브 마운트 해제 + + + + opening drive + 드라이브 열기 + Error running diskpart: %1 @@ -76,11 +86,73 @@ Write error while zero'ing out MBR MBR을 zero'ing out 하는 동안 쓰기 오류 발생 + + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + SD card의 마지막 부분을 비워내는 동안 오류가 발생했습니다.<br>카드가 잘못된 용량을 표기하고 있을 수 있습니다(위조 품목). + + + + starting download + 다운로드 시작 + + + + Error downloading: %1 + 다운로드 중 오류: %1 + + + + Access denied error while writing file to disk. + 디스크에 파일을 쓰는 동안 액세스 거부 오류가 발생했습니다. + + + + 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. + 제어된 폴더 액세스가 설정된 것 같습니다. rpi-imager.exe 및 fat32format.exe를 허용된 앱 리스트에서 추가하고 다시 시도하십시오. + + + + Error writing file to disk + 디스크에 파일 쓰기 오류 + + + + Download corrupt. Hash does not match + 다운로드가 손상되었습니다. 해시가 일치하지 않습니다. + + + + + Error writing to storage (while flushing) + 저장소에 쓰는 중 오류 발생(flushing..) + + + + + Error writing to storage (while fsync) + 스토리지에 쓰는 중 오류 발생(fsync..) + + + + Error writing first block (partition table) + 첫 번째 블록을 쓰는 중 오류 발생 (파티션 테이블) + Error reading from storage.<br>SD card may be broken. 저장소에서 읽는 동안 오류가 발생했습니다.<br>SD 카드가 고장 났을 수 있습니다. + + + Verifying write failed. Contents of SD card is different from what was written to it. + 쓰기를 확인하지 못했습니다. SD카드 내용과 쓰인 내용이 다릅니다. + + + + Customizing image + 이미지 사용자 정의 + Waiting for FAT partition to be mounted FAT 파티션이 마운트되기를 기다리는 중 @@ -97,11 +169,6 @@ Unable to customize. File '%1' does not exist. 지정할 수 없습니다. 파일이 '%1' 존재하지 않습니다. - - - Customizing image - 이미지 사용자 정의 - Error creating firstrun.sh on FAT partition FAT 파티션에 firstrun.sh을 만드는 동안 오류 발생 @@ -122,73 +189,6 @@ Error writing to cmdline.txt on FAT partition FAT 파티션에 cmdline.txt 쓰던 중 오류 발생 - - - Access denied error while writing file to disk. - 디스크에 파일을 쓰는 동안 액세스 거부 오류가 발생했습니다. - - - - 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. - 제어된 폴더 액세스가 설정된 것 같습니다. rpi-imager.exe 및 fat32format.exe를 허용된 앱 리스트에서 추가하고 다시 시도하십시오. - - - - Error writing file to disk - 디스크에 파일 쓰기 오류 - - - - Error downloading: %1 - 다운로드 중 오류: %1 - - - - - Error writing to storage (while flushing) - 저장소에 쓰는 중 오류 발생(flushing..) - - - - - Error writing to storage (while fsync) - 스토리지에 쓰는 중 오류 발생(fsync..) - - - - Download corrupt. Hash does not match - 다운로드가 손상되었습니다. 해시가 일치하지 않습니다. - - - - unmounting drive - 드라이브 마운트 해제 - - - - opening drive - 드라이브 열기 - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - SD card의 마지막 부분을 비워내는 동안 오류가 발생했습니다.<br>카드가 잘못된 용량을 표기하고 있을 수 있습니다(위조 품목). - - - - starting download - 다운로드 시작 - - - - Error writing first block (partition table) - 첫 번째 블록을 쓰는 중 오류 발생 (파티션 테이블) - - - - Verifying write failed. Contents of SD card is different from what was written to it. - 쓰기를 확인하지 못했습니다. SD카드 내용과 쓰인 내용이 다릅니다. - DriveFormatThread @@ -336,71 +336,6 @@ to always use 항상 사용 - - Disable overscan - overscan 사용 안 함 - - - - Set hostname: - hostname 설정: - - - - Enable SSH - SSH 사용 - - - - Use password authentication - 비밀번호 인증 사용 - - - - Allow public-key authentication only - 공개 키만 인증 허용 - - - - Set authorized_keys for '%1': - '%1' 인증키 설정: - - - - Configure wireless LAN - 무선 LAN 설정 - - - - SSID: - SSID: - - - - - Password: - 비밀번호: - - - - Set username and password - 사용자 이름 및 비밀번호 설정 - - - - Username: - 사용자 이름: - - - - Hidden SSID - 숨겨진 SSID - - - - Show password - 비밀번호 표시 - General @@ -416,6 +351,47 @@ Options + + + Set hostname: + hostname 설정: + + + + Set username and password + 사용자 이름 및 비밀번호 설정 + + + + Username: + 사용자 이름: + + + + + Password: + 비밀번호: + + + + Configure wireless LAN + 무선 LAN 설정 + + + + SSID: + SSID: + + + + Show password + 비밀번호 표시 + + + + Hidden SSID + 숨겨진 SSID + Wireless LAN country: @@ -436,19 +412,31 @@ Keyboard layout: 키보드 레이아웃: + + + Enable SSH + SSH 사용 + + + + Use password authentication + 비밀번호 인증 사용 + + + + Allow public-key authentication only + 공개 키만 인증 허용 + + + + Set authorized_keys for '%1': + '%1' 인증키 설정: + RUN SSH-KEYGEN - - Skip first-run wizard - 초기 실행 마법사 건너뛰기 - - - Persistent settings - 영구적으로 설정 - Play sound when finished @@ -469,6 +457,18 @@ SAVE 저장 + + Disable overscan + overscan 사용 안 함 + + + Skip first-run wizard + 초기 실행 마법사 건너뛰기 + + + Persistent settings + 영구적으로 설정 + QObject @@ -482,12 +482,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? 경고: 고급 설정이 설정됨 - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? 이전에 저장한 이미지 사용자 지정 설정을 적용하시겠습니까? @@ -518,6 +518,22 @@ Raspberry Pi Imager v%1 Raspberry Pi Imager v%1 + + + + Raspberry Pi Device + + + + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + + @@ -552,9 +568,9 @@ 쓰기 - - Select this button to start writing the image - 이미지 쓰기를 시작하려면 버튼을 선택합니다. + + Select this button to change the destination storage device + 저장 디바이스를 변경하려면 버튼을 선택합니다. @@ -579,6 +595,16 @@ Finalizing... 마무리 중... + + + Next + + + + + Select this button to start writing the image + 이미지 쓰기를 시작하려면 버튼을 선택합니다. + Select this button to access advanced settings @@ -614,37 +640,11 @@ [ All ] - - - - Erase - 삭제 - - - - Format card as FAT32 - FAT32로 카드 형식 지정 - - - - Use custom - 사용자 정의 사용 - - - - Select a custom .img from your computer - 컴퓨터에서 사용자 지정 .img를 선택합니다. - Back 뒤로 가기 - - - Select this button to change the destination storage device - 저장 디바이스를 변경하려면 버튼을 선택합니다. - Go back to main menu @@ -702,6 +702,11 @@ Preparing to write... 쓰기 준비 중... + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + '%1'에 존재하는 모든 데이터가 지워집니다.<br>계속하시겠습니까? + Update available @@ -712,21 +717,16 @@ There is a newer version of Imager available.<br>Would you like to visit the website to download it? Raspberry Pi Imager의 최신 버전을 사용할 수 있습니다.<br>다운받기 위해 웹사이트를 방문하시겠습니까?? - - - Writing... %1% - 쓰는 중... %1% - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - '%1'에 존재하는 모든 데이터가 지워집니다.<br>계속하시겠습니까? - Error downloading OS list from Internet 인터넷에서 OS 목록을 다운로드하는 중 오류 발생 + + + Writing... %1% + 쓰는 중... %1% + Verifying... %1% @@ -747,15 +747,17 @@ Write Successful 쓰기 완료 + + + + Erase + 삭제 + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader <b>%1</b> 가 지워졌습니다.<br><br>이제 SD card를 제거할 수 있습니다. - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b>가 <b>%2</b>에 쓰여졌습니다. - <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader @@ -766,6 +768,21 @@ Error parsing os_list.json 구문 분석 오류 os_list.json + + + Format card as FAT32 + FAT32로 카드 형식 지정 + + + + Use custom + 사용자 정의 사용 + + + + Select a custom .img from your computer + 컴퓨터에서 사용자 지정 .img를 선택합니다. + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. @@ -776,5 +793,9 @@ SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. 쓰기 금지된 SD card<br>카드 왼쪽에 있는 잠금 스위치를 위쪽으로 누른 후 다시 시도하십시오. + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b>가 <b>%2</b>에 쓰여졌습니다. + diff --git a/src/i18n/rpi-imager_nl.ts b/src/i18n/rpi-imager_nl.ts index 232b395..9a89719 100644 --- a/src/i18n/rpi-imager_nl.ts +++ b/src/i18n/rpi-imager_nl.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - Fout bij schrijven naar opslag - @@ -28,9 +24,23 @@ Error changing to directory '%1' Fout bij openen map '%1' + + Error writing to storage + Fout bij schrijven naar opslag + DownloadThread + + + unmounting drive + unmounten van schijf + + + + opening drive + openen van opslag + Error running diskpart: %1 @@ -76,11 +86,73 @@ Write error while zero'ing out MBR Fout bij wissen MBR + + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + Fout bij wissen laatste deel van de SD kaart.<br>Kaart geeft mogelijk onjuiste capaciteit aan (mogelijk counterfeit). + + + + starting download + beginnen met downloaden + + + + Error downloading: %1 + Fout bij downloaden: %1 + + + + Access denied error while writing file to disk. + Toegang geweigerd bij het schrijven naar opslag. + + + + 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. + 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. + + + + Error writing file to disk + Fout bij schrijven naar opslag + + + + Download corrupt. Hash does not match + Download corrupt. Hash komt niet overeen + + + + + Error writing to storage (while flushing) + Fout bij schrijven naar opslag (tijdens flushen) + + + + + Error writing to storage (while fsync) + Fout bij schrijven naar opslag (tijdens fsync) + + + + Error writing first block (partition table) + Fout bij schrijven naar eerste deel van kaart (partitie tabel) + Error reading from storage.<br>SD card may be broken. Fout bij lezen van SD kaart.<br>Kaart is mogelijk defect. + + + Verifying write failed. Contents of SD card is different from what was written to it. + Verificatie mislukt. De gegevens die op de SD kaart staan wijken af van wat er naar geschreven is. + + + + Customizing image + Bezig met aanpassen besturingssysteem + Waiting for FAT partition to be mounted Wachten op mounten FAT partitie @@ -97,11 +169,6 @@ Unable to customize. File '%1' does not exist. Fout bij aanpassen besturingssysteem. Bestand '%1' bestaat niet. - - - Customizing image - Bezig met aanpassen besturingssysteem - Error creating firstrun.sh on FAT partition Fout bij het aanmaken van firstrun.sh op FAT partitie @@ -122,73 +189,6 @@ Error writing to cmdline.txt on FAT partition Fout bij schrijven cmdline.txt op FAT partitie - - - Access denied error while writing file to disk. - Toegang geweigerd bij het schrijven naar opslag. - - - - 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. - 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. - - - - Error writing file to disk - Fout bij schrijven naar opslag - - - - Error downloading: %1 - Fout bij downloaden: %1 - - - - - Error writing to storage (while flushing) - Fout bij schrijven naar opslag (tijdens flushen) - - - - - Error writing to storage (while fsync) - Fout bij schrijven naar opslag (tijdens fsync) - - - - Download corrupt. Hash does not match - Download corrupt. Hash komt niet overeen - - - - unmounting drive - unmounten van schijf - - - - opening drive - openen van opslag - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Fout bij wissen laatste deel van de SD kaart.<br>Kaart geeft mogelijk onjuiste capaciteit aan (mogelijk counterfeit). - - - - starting download - beginnen met downloaden - - - - Error writing first block (partition table) - Fout bij schrijven naar eerste deel van kaart (partitie tabel) - - - - Verifying write failed. Contents of SD card is different from what was written to it. - Verificatie mislukt. De gegevens die op de SD kaart staan wijken af van wat er naar geschreven is. - DriveFormatThread @@ -336,79 +336,6 @@ to always use om altijd te gebruiken - - Disable overscan - Overscan uitschakelen - - - - Set hostname: - Hostnaam: - - - - Enable SSH - SSH inschakelen - - - Set username: - Gebruikersnaam: - - - - Use password authentication - Gebruik wachtwoord authenticatie - - - - Allow public-key authentication only - Gebruik uitsluitend public-key authenticatie - - - Set password for '%1' user: - Wachtwoord voor '%1' gebruiker: - - - - Set authorized_keys for '%1': - authorized_keys voor '%1': - - - - Configure wireless LAN - Wifi instellen - - - - SSID: - SSID: - - - - - Password: - Wachtwoord: - - - - Set username and password - Gebruikersnaam en wachtwoord instellen - - - - Username: - Gebruikersnaam: - - - - Hidden SSID - Verborgen SSID - - - - Show password - Wachtwoord laten zien - General @@ -424,6 +351,47 @@ Options Opties + + + Set hostname: + Hostnaam: + + + + Set username and password + Gebruikersnaam en wachtwoord instellen + + + + Username: + Gebruikersnaam: + + + + + Password: + Wachtwoord: + + + + Configure wireless LAN + Wifi instellen + + + + SSID: + SSID: + + + + Show password + Wachtwoord laten zien + + + + Hidden SSID + Verborgen SSID + Wireless LAN country: @@ -444,19 +412,31 @@ Keyboard layout: Toetsenbord indeling: + + + Enable SSH + SSH inschakelen + + + + Use password authentication + Gebruik wachtwoord authenticatie + + + + Allow public-key authentication only + Gebruik uitsluitend public-key authenticatie + + + + Set authorized_keys for '%1': + authorized_keys voor '%1': + RUN SSH-KEYGEN START SSH-KEYGEN - - Skip first-run wizard - Eerste gebruik wizard overslaan - - - Persistent settings - Permanente instellingen - Play sound when finished @@ -477,6 +457,26 @@ SAVE OPSLAAN + + Disable overscan + Overscan uitschakelen + + + Set username: + Gebruikersnaam: + + + Set password for '%1' user: + Wachtwoord voor '%1' gebruiker: + + + Skip first-run wizard + Eerste gebruik wizard overslaan + + + Persistent settings + Permanente instellingen + QObject @@ -490,12 +490,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? Opgeslagen instellingen toepassen - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? Wilt u de eerder opgeslagen image customization instellingen toepassen? @@ -527,14 +527,20 @@ Raspberry Pi Imager v%1 - - Are you sure you want to quit? - Weet u zeker dat u wilt afsluiten? + + + Raspberry Pi Device + - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imager is nog niet klaar.<br>Weet u zeker dat u wilt afsluiten? + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + @@ -547,6 +553,11 @@ CHOOSE OS SELECTEER OS + + + Select this button to change the operating system + Kies deze knop om een besturingssysteem te kiezen + @@ -565,29 +576,15 @@ SCHRIJF - - Writing... %1% - Schrijven... %1% + + Select this button to change the destination storage device + Klik op deze knop om het opslagapparaat te wijzigen CANCEL WRITE Annuleer schrijven - - - Select this button to change the operating system - Kies deze knop om een besturingssysteem te kiezen - - - Select this button to change the destination SD card - Kies deze knop om de SD kaart te kiezen - - - - Select this button to start writing the image - Kies deze knop om te beginnen met het schrijven van de image - @@ -606,6 +603,16 @@ Finalizing... Afronden... + + + Next + + + + + Select this button to start writing the image + Kies deze knop om te beginnen met het schrijven van de image + Select this button to access advanced settings @@ -642,36 +649,57 @@ [ Alle modellen ] - - - Erase - Wissen + + Back + Terug - - Format card as FAT32 - Formatteer kaart als FAT32 + + Go back to main menu + Terug naar hoofdmenu - - Use custom - Gebruik eigen bestand + + Released: %1 + Release datum: %1 - - Select a custom .img from your computer - Selecteer een eigen .img bestand + + Cached on your computer + Opgeslagen op computer Local file Lokaal bestand + + + Online - %1 GB download + Online %1 GB download + + + + + + Mounted as %1 + Mounted op %1 + [WRITE PROTECTED] [ALLEEN LEZEN] + + + Are you sure you want to quit? + Weet u zeker dat u wilt afsluiten? + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + Raspberry Pi Imager is nog niet klaar.<br>Weet u zeker dat u wilt afsluiten? + Warning @@ -697,82 +725,26 @@ There is a newer version of Imager available.<br>Would you like to visit the website to download it? Er is een nieuwere versie van Imager beschikbaar.<br>Wilt u de website bezoeken om deze te downloaden? - - - Preparing to write... (%1) - Voorbereiden... (%1) - - - - <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1</b> is gewist<br><br>U kunt nu de SD kaart uit de lezer halen - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> is geschreven naar <b>%2</b> - - - - Error parsing os_list.json - Fout bij parsen os_list.json - - - - Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Sluit eerst een USB stick met images aan.<br>De images moeten in de hoofdmap van de USB stick staan. - - - - SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - SD kaart is tegen schrijven beveiligd.<br>Druk het schuifje aan de linkerkant van de SD kaart omhoog, en probeer nogmaals. - - - - Back - Terug - - - - Select this button to change the destination storage device - Klik op deze knop om het opslagapparaat te wijzigen - - - - Go back to main menu - Terug naar hoofdmenu - - - - Released: %1 - Release datum: %1 - - - - Cached on your computer - Opgeslagen op computer - - - - Online - %1 GB download - Online %1 GB download - - - - - - Mounted as %1 - Mounted op %1 - Error downloading OS list from Internet Fout bij downloaden van lijst met besturingssystemen + + + Writing... %1% + Schrijven... %1% + Verifying... %1% Verifiëren... %1% + + + Preparing to write... (%1) + Voorbereiden... (%1) + Error @@ -783,10 +755,59 @@ Write Successful Klaar met schrijven + + + + Erase + Wissen + + + + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader + <b>%1</b> is gewist<br><br>U kunt nu de SD kaart uit de lezer halen + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader <b>%1</b> is geschreven naar <b>%2</b><br><br>U kunt nu de SD kaart uit de lezer halen + + + Error parsing os_list.json + Fout bij parsen os_list.json + + + + Format card as FAT32 + Formatteer kaart als FAT32 + + + + Use custom + Gebruik eigen bestand + + + + Select a custom .img from your computer + Selecteer een eigen .img bestand + + + + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. + Sluit eerst een USB stick met images aan.<br>De images moeten in de hoofdmap van de USB stick staan. + + + + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. + SD kaart is tegen schrijven beveiligd.<br>Druk het schuifje aan de linkerkant van de SD kaart omhoog, en probeer nogmaals. + + + Select this button to change the destination SD card + Kies deze knop om de SD kaart te kiezen + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> is geschreven naar <b>%2</b> + diff --git a/src/i18n/rpi-imager_ru.ts b/src/i18n/rpi-imager_ru.ts index c6c5284..1476155 100644 --- a/src/i18n/rpi-imager_ru.ts +++ b/src/i18n/rpi-imager_ru.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - Ошибка записи на запоминающее устройство - @@ -28,9 +24,23 @@ Error changing to directory '%1' Ошибка перехода в каталог «%1» + + Error writing to storage + Ошибка записи на запоминающее устройство + DownloadThread + + + unmounting drive + + + + + opening drive + открытие диска + Error running diskpart: %1 @@ -76,11 +86,73 @@ Write error while zero'ing out MBR Ошибка записи при обнулении MBR + + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + Ошибка записи при попытке обнулить последнюю часть карты.<br>Заявленный картой объём может не соответствовать действительности (возможно, карта является поддельной). + + + + starting download + начало загрузки + + + + Error downloading: %1 + Ошибка загрузки: %1 + + + + Access denied error while writing file to disk. + Ошибка доступа при записи файла на диск. + + + + 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. + Похоже, что включён контролируемый доступ к папкам (Controlled Folder Access). Добавьте rpi-imager.exe и fat32format.exe в список разрешённых программ и попробуйте снова. + + + + Error writing file to disk + Ошибка записи файла на диск + + + + Download corrupt. Hash does not match + Загруженные данные повреждены. Хэш не совпадает + + + + + Error writing to storage (while flushing) + Ошибка записи на запоминающее устройство (при сбросе) + + + + + Error writing to storage (while fsync) + Ошибка записи на запоминающее устройство (при выполнении fsync) + + + + Error writing first block (partition table) + Ошибка записи первого блока (таблица разделов) + Error reading from storage.<br>SD card may be broken. Ошибка чтения с запоминающего устройства.<br>SD-карта может быть повреждена. + + + Verifying write failed. Contents of SD card is different from what was written to it. + Ошибка по результатам проверки записи. Содержимое SD-карты отличается от того, что было на неё записано. + + + + Customizing image + Настройка образа + Waiting for FAT partition to be mounted Ожидание подключения раздела FAT @@ -97,11 +169,6 @@ Unable to customize. File '%1' does not exist. Не удалось настроить. Файл «%1» не существует. - - - Customizing image - Настройка образа - Error creating firstrun.sh on FAT partition Ошибка создания firstrun.sh в разделе FAT @@ -122,73 +189,6 @@ Error writing to cmdline.txt on FAT partition Ошибка записи в cmdline.txt в разделе FAT - - - Access denied error while writing file to disk. - Ошибка доступа при записи файла на диск. - - - - 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. - Похоже, что включён контролируемый доступ к папкам (Controlled Folder Access). Добавьте rpi-imager.exe и fat32format.exe в список разрешённых программ и попробуйте снова. - - - - Error writing file to disk - Ошибка записи файла на диск - - - - Error downloading: %1 - Ошибка загрузки: %1 - - - - - Error writing to storage (while flushing) - Ошибка записи на запоминающее устройство (при сбросе) - - - - - Error writing to storage (while fsync) - Ошибка записи на запоминающее устройство (при выполнении fsync) - - - - Download corrupt. Hash does not match - Загруженные данные повреждены. Хэш не совпадает - - - - unmounting drive - - - - - opening drive - открытие диска - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Ошибка записи при попытке обнулить последнюю часть карты.<br>Заявленный картой объём может не соответствовать действительности (возможно, карта является поддельной). - - - - starting download - начало загрузки - - - - Error writing first block (partition table) - Ошибка записи первого блока (таблица разделов) - - - - Verifying write failed. Contents of SD card is different from what was written to it. - Ошибка по результатам проверки записи. Содержимое SD-карты отличается от того, что было на неё записано. - DriveFormatThread @@ -356,6 +356,62 @@ Set hostname: Имя хоста: + + + Set username and password + Указать имя пользователя и пароль + + + + Username: + Имя пользователя: + + + + + Password: + Пароль: + + + + Configure wireless LAN + Настроить Wi-Fi + + + + SSID: + SSID: + + + + Show password + Показывать пароль + + + + Hidden SSID + Скрытый идентификатор SSID + + + + Wireless LAN country: + Страна Wi-Fi: + + + + Set locale settings + Указать параметры региона + + + + Time zone: + Часовой пояс: + + + + Keyboard layout: + Раскладка клавиатуры: + Enable SSH @@ -381,66 +437,6 @@ RUN SSH-KEYGEN - - - Configure wireless LAN - Настроить Wi-Fi - - - - SSID: - SSID: - - - - - Password: - Пароль: - - - - Set username and password - Указать имя пользователя и пароль - - - - Username: - Имя пользователя: - - - - Hidden SSID - Скрытый идентификатор SSID - - - - Show password - Показывать пароль - - - - Wireless LAN country: - Страна Wi-Fi: - - - - Set locale settings - Указать параметры региона - - - - Time zone: - Часовой пояс: - - - - Keyboard layout: - Раскладка клавиатуры: - - - Persistent settings - Постоянные параметры - Play sound when finished @@ -461,6 +457,10 @@ SAVE СОХРАНИТЬ + + Persistent settings + Постоянные параметры + QObject @@ -474,12 +474,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? Внимание: установлены дополнительные параметры - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? Применить сохранённые ранее параметры настройки образа? @@ -510,6 +510,22 @@ Raspberry Pi Imager v%1 Raspberry Pi Imager, версия %1 + + + + Raspberry Pi Device + + + + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + + @@ -544,9 +560,9 @@ ЗАПИСАТЬ - - Select this button to start writing the image - Нажмите эту кнопку, чтобы начать запись образа + + Select this button to change the destination storage device + Нажмите эту кнопку, чтобы изменить целевое запоминающее устройство @@ -571,6 +587,16 @@ Finalizing... Завершение... + + + Next + + + + + Select this button to start writing the image + Нажмите эту кнопку, чтобы начать запись образа + Select this button to access advanced settings @@ -606,37 +632,11 @@ [ All ] - - - - Erase - Стереть - - - - Format card as FAT32 - Отформатировать карту как FAT32 - - - - Use custom - Использовать настраиваемый образ - - - - Select a custom .img from your computer - Выбрать настраиваемый файл .img на компьютере - Back Назад - - - Select this button to change the destination storage device - Нажмите эту кнопку, чтобы изменить целевое запоминающее устройство - Go back to main menu @@ -694,6 +694,11 @@ Preparing to write... Подготовка к записи… + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + Все существующие на «%1» данные будут стёрты.<br>Продолжить? + Update available @@ -704,21 +709,16 @@ There is a newer version of Imager available.<br>Would you like to visit the website to download it? Доступна новая версия Imager.<br>Перейти на веб-сайт для её загрузки? - - - Writing... %1% - Запись... %1% - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Все существующие на «%1» данные будут стёрты.<br>Продолжить? - Error downloading OS list from Internet Ошибка загрузки списка ОС из Интернета + + + Writing... %1% + Запись... %1% + Verifying... %1% @@ -739,6 +739,12 @@ Write Successful Запись успешно выполнена + + + + Erase + Стереть + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader @@ -754,6 +760,21 @@ Error parsing os_list.json Ошибка синтаксического анализа os_list.json + + + Format card as FAT32 + Отформатировать карту как FAT32 + + + + Use custom + Использовать настраиваемый образ + + + + Select a custom .img from your computer + Выбрать настраиваемый файл .img на компьютере + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. diff --git a/src/i18n/rpi-imager_sk.ts b/src/i18n/rpi-imager_sk.ts index 65da202..d76e748 100644 --- a/src/i18n/rpi-imager_sk.ts +++ b/src/i18n/rpi-imager_sk.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - Chyba pri zápise na úložisko - @@ -28,9 +24,23 @@ Error changing to directory '%1' Chyba pri vstupe do adresára '%1' + + Error writing to storage + Chyba pri zápise na úložisko + DownloadThread + + + unmounting drive + + + + + opening drive + otváram disk + Error running diskpart: %1 @@ -76,11 +86,73 @@ Write error while zero'ing out MBR Chyba zápisu pri prepisovaní MBR nulami + + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + Chyba zápisu pri prepisovaní poslednej časti karty nulami.<br>Karta pravdepodobne udáva nesprávnu kapacitu (a môže byť falošná). + + + + starting download + začína sťahovanie + + + + Error downloading: %1 + Chyba pri sťahovaní: %1 + + + + Access denied error while writing file to disk. + Odopretý prístup pri zápise súboru na disk. + + + + 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. + 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. + + + + Error writing file to disk + Chyba pri zápise na disk + + + + Download corrupt. Hash does not match + Stiahnutý súbor je poškodený. Kontrolný súčet nesedí + + + + + Error writing to storage (while flushing) + Chyba pri zápise na úložisko (počas volania flush) + + + + + Error writing to storage (while fsync) + Chyba pri zápise na úložisko (počas volania fsync) + + + + Error writing first block (partition table) + Chyba pri zápise prvého bloku (tabuľky partícií) + Error reading from storage.<br>SD card may be broken. Chyba pri čítaní z úložiska.<br>Karta SD môže byť poškodená. + + + Verifying write failed. Contents of SD card is different from what was written to it. + Overovanie zápisu skončilo s chybou. Obsah karty SD sa nezhoduje s tým, čo na ňu bolo zapísané. + + + + Customizing image + Upravujem obraz + Waiting for FAT partition to be mounted Čakám a pripojenie FAT partície @@ -97,11 +169,6 @@ Unable to customize. File '%1' does not exist. Prispôsobenie skončilo s chybou. Súbor '%1' neexistuje. - - - Customizing image - Upravujem obraz - Error creating firstrun.sh on FAT partition Pri vytváraní firstrun.sh na partícii FAT nastala chyba @@ -122,73 +189,6 @@ Error writing to cmdline.txt on FAT partition Chyba pri zápise cmdline.txt na FAT partíciu - - - Access denied error while writing file to disk. - Odopretý prístup pri zápise súboru na disk. - - - - 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. - 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. - - - - Error writing file to disk - Chyba pri zápise na disk - - - - Error downloading: %1 - Chyba pri sťahovaní: %1 - - - - - Error writing to storage (while flushing) - Chyba pri zápise na úložisko (počas volania flush) - - - - - Error writing to storage (while fsync) - Chyba pri zápise na úložisko (počas volania fsync) - - - - Download corrupt. Hash does not match - Stiahnutý súbor je poškodený. Kontrolný súčet nesedí - - - - unmounting drive - - - - - opening drive - otváram disk - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Chyba zápisu pri prepisovaní poslednej časti karty nulami.<br>Karta pravdepodobne udáva nesprávnu kapacitu (a môže byť falošná). - - - - starting download - začína sťahovanie - - - - Error writing first block (partition table) - Chyba pri zápise prvého bloku (tabuľky partícií) - - - - Verifying write failed. Contents of SD card is different from what was written to it. - Overovanie zápisu skončilo s chybou. Obsah karty SD sa nezhoduje s tým, čo na ňu bolo zapísané. - DriveFormatThread @@ -336,79 +336,6 @@ to always use použiť vždy - - Disable overscan - Vypnúť presnímanie (overscan) - - - - Set hostname: - Nastaviť meno počítača (hostname): - - - - Enable SSH - Povoliť SSH - - - - Use password authentication - Použiť heslo na prihlásenie - - - Set password for 'pi' user: - Nastaviť heslo pre používateľa 'pi': - - - - Allow public-key authentication only - Povoliť iba prihlásenie pomocou verejného kľúča - - - Set authorized_keys for 'pi': - Nastaviť authorized_keys pre 'pi': - - - - Set authorized_keys for '%1': - Nastaviť authorized_keys pre '%1': - - - - Configure wireless LAN - Nastaviť wifi - - - - SSID: - SSID: - - - - - Password: - Heslo: - - - - Set username and password - Nastaviť meno používateľa a heslo - - - - Username: - Meno používateľa: - - - - Hidden SSID - Skryté SSID - - - - Show password - Zobraziť heslo - General @@ -424,6 +351,47 @@ Options + + + Set hostname: + Nastaviť meno počítača (hostname): + + + + Set username and password + Nastaviť meno používateľa a heslo + + + + Username: + Meno používateľa: + + + + + Password: + Heslo: + + + + Configure wireless LAN + Nastaviť wifi + + + + SSID: + SSID: + + + + Show password + Zobraziť heslo + + + + Hidden SSID + Skryté SSID + Wireless LAN country: @@ -444,19 +412,31 @@ Keyboard layout: Rozloženie klávesnice: + + + Enable SSH + Povoliť SSH + + + + Use password authentication + Použiť heslo na prihlásenie + + + + Allow public-key authentication only + Povoliť iba prihlásenie pomocou verejného kľúča + + + + Set authorized_keys for '%1': + Nastaviť authorized_keys pre '%1': + RUN SSH-KEYGEN - - Skip first-run wizard - Vypnúť sprievodcu prvým spustením - - - Persistent settings - Trvalé nastavenia - Play sound when finished @@ -477,6 +457,26 @@ SAVE ULOŽIŤ + + Disable overscan + Vypnúť presnímanie (overscan) + + + Set password for 'pi' user: + Nastaviť heslo pre používateľa 'pi': + + + Set authorized_keys for 'pi': + Nastaviť authorized_keys pre 'pi': + + + Skip first-run wizard + Vypnúť sprievodcu prvým spustením + + + Persistent settings + Trvalé nastavenia + QObject @@ -490,12 +490,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? Varovanie: používajú sa pokročilé možnosti - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? Chcete použiť uložené nastavenia úprav obrazu? @@ -527,14 +527,20 @@ Raspberry Pi Imager v%1 - - Are you sure you want to quit? - Skutočne chcete skončiť? + + + Raspberry Pi Device + - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imager ešte neskončil.<br>Ste si istý, že chcete skončiť? + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + @@ -547,6 +553,11 @@ CHOOSE OS VYBERTE OS + + + Select this button to change the operating system + Pre zmenu operačného systému kliknite na toto tlačidlo + @@ -565,29 +576,15 @@ ZAPÍSAŤ - - Writing... %1% - Zapisujem... %1% + + Select this button to change the destination storage device + Pre zmenu cieľového zariadenia úložiska kliknite na toto tlačidlo CANCEL WRITE ZRUŠIŤ ZÁPIS - - - Select this button to change the operating system - Pre zmenu operačného systému kliknite na toto tlačidlo - - - Select this button to change the destination SD card - Pre zmenu cieľovej SD karty kliknite na toto tlačidlo - - - - Select this button to start writing the image - Kliknutím na toto tlačidlo spustíte zápis - @@ -606,6 +603,16 @@ Finalizing... Ukončujem... + + + Next + + + + + Select this button to start writing the image + Kliknutím na toto tlačidlo spustíte zápis + Select this button to access advanced settings @@ -642,36 +649,57 @@ - - - Erase - Vymazať + + Back + Späť - - Format card as FAT32 - Formátovať kartu ako FAT32 + + Go back to main menu + Prejsť do hlavnej ponuky - - Use custom - Použiť vlastný + + Released: %1 + Vydané: %1 - - Select a custom .img from your computer - Použiť vlastný súbor img. na Vašom počítači + + Cached on your computer + Uložené na počítači Local file Miestny súbor + + + Online - %1 GB download + Online %1 GB na stiahnutie + + + + + + Mounted as %1 + Pripojená ako %1 + [WRITE PROTECTED] [OCHRANA PROTI ZÁPISU] + + + Are you sure you want to quit? + Skutočne chcete skončiť? + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + Raspberry Pi Imager ešte neskončil.<br>Ste si istý, že chcete skončiť? + Warning @@ -697,82 +725,26 @@ There is a newer version of Imager available.<br>Would you like to visit the website to download it? Je dostupná nová verzia Imagera.<br>Chcete prejsť na webovú stránku s programom a stiahnuť ho? - - - Preparing to write... (%1) - Príprava zápisu... (%1) - - - - <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1</b> bola vymazaná<br><br>Teraz môžete odstrániť SD kartu z čítačky - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> bol zapísaný na <b>%2</b> - - - - Error parsing os_list.json - Chyba pri spracovaní os_list.json - - - - Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Najprv pripojte USB kľúč, ktorý obsahuje diskové obrazy.<br>Obrazy sa musia nachádzať v koreňovom priečinku USB kľúča. - - - - SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - 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. - - - - Back - Späť - - - - Select this button to change the destination storage device - Pre zmenu cieľového zariadenia úložiska kliknite na toto tlačidlo - - - - Go back to main menu - Prejsť do hlavnej ponuky - - - - Released: %1 - Vydané: %1 - - - - Cached on your computer - Uložené na počítači - - - - Online - %1 GB download - Online %1 GB na stiahnutie - - - - - - Mounted as %1 - Pripojená ako %1 - Error downloading OS list from Internet Chyba pri sťahovaní zoznamu OS z Internetu + + + Writing... %1% + Zapisujem... %1% + Verifying... %1% Overujem... %1% + + + Preparing to write... (%1) + Príprava zápisu... (%1) + Error @@ -783,10 +755,59 @@ Write Successful Zápis úspešne skončil + + + + Erase + Vymazať + + + + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader + <b>%1</b> bola vymazaná<br><br>Teraz môžete odstrániť SD kartu z čítačky + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader <b>%1</b> bol zapísaný na <b>%2</b><br><br>Teraz môžete odstrániť SD kartu z čítačky + + + Error parsing os_list.json + Chyba pri spracovaní os_list.json + + + + Format card as FAT32 + Formátovať kartu ako FAT32 + + + + Use custom + Použiť vlastný + + + + Select a custom .img from your computer + Použiť vlastný súbor img. na Vašom počítači + + + + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. + Najprv pripojte USB kľúč, ktorý obsahuje diskové obrazy.<br>Obrazy sa musia nachádzať v koreňovom priečinku USB kľúča. + + + + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. + 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. + + + Select this button to change the destination SD card + Pre zmenu cieľovej SD karty kliknite na toto tlačidlo + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> bol zapísaný na <b>%2</b> + diff --git a/src/i18n/rpi-imager_sl.ts b/src/i18n/rpi-imager_sl.ts index 1fd80f7..0f89509 100644 --- a/src/i18n/rpi-imager_sl.ts +++ b/src/i18n/rpi-imager_sl.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - Napaka pisanja na disk - @@ -28,9 +24,23 @@ Error changing to directory '%1' Napaka spremembe direktorija '%1%' + + Error writing to storage + Napaka pisanja na disk + DownloadThread + + + unmounting drive + + + + + opening drive + Odpiranje pogona + Error running diskpart: %1 @@ -76,11 +86,73 @@ Write error while zero'ing out MBR Napaka zapisovanja med ničenjem MBR + + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + Napaka ničenja zadnjega dela diska.<br>Disk morebiti sporoča napačno velikost(možen ponaredek). + + + + starting download + Začetek prenosa + + + + Error downloading: %1 + Napaka prenosa:%1 + + + + Access denied error while writing file to disk. + Napaka zavrnitve dostopa med pisanjem na disk. + + + + 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. + Izgleda, da jevklopljen nadzor dostopa do map. Prosim dodajte oba rpi-imager.exe in fat32format.exe na seznam dovoljenih aplikacij in poizkusite znova. + + + + Error writing file to disk + Napaka pisanja na disk + + + + Download corrupt. Hash does not match + Prenos poškodovan.Hash se ne ujema + + + + + Error writing to storage (while flushing) + Napaka pisanja na disk (med brisanjem) + + + + + Error writing to storage (while fsync) + Napaka pisanja na disk (med fsync) + + + + Error writing first block (partition table) + Napaka pisanja prvega bloka (particijska tabela) + Error reading from storage.<br>SD card may be broken. Napaka branja iz diska.<br>SD kartica/disk je mogoče v okvari. + + + Verifying write failed. Contents of SD card is different from what was written to it. + Preverjanje pisanja spodletelo. Vsebina diska je drugačna, od tega, kar je bilo nanj zapisano. + + + + Customizing image + Prilagajanje slike diska + Waiting for FAT partition to be mounted Čakanje na priklop FAT particije @@ -97,11 +169,6 @@ Unable to customize. File '%1' does not exist. Prilagoditev ni možna. Datoteka '%1' ne obstaja. - - - Customizing image - Prilagajanje slike diska - Error creating firstrun.sh on FAT partition Napaka ustvarjanja firstrun.sh na FAT particiji @@ -122,73 +189,6 @@ Error writing to cmdline.txt on FAT partition Napaka pisanja v cmdline.txt na FAT particiji - - - Access denied error while writing file to disk. - Napaka zavrnitve dostopa med pisanjem na disk. - - - - 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. - Izgleda, da jevklopljen nadzor dostopa do map. Prosim dodajte oba rpi-imager.exe in fat32format.exe na seznam dovoljenih aplikacij in poizkusite znova. - - - - Error writing file to disk - Napaka pisanja na disk - - - - Error downloading: %1 - Napaka prenosa:%1 - - - - - Error writing to storage (while flushing) - Napaka pisanja na disk (med brisanjem) - - - - - Error writing to storage (while fsync) - Napaka pisanja na disk (med fsync) - - - - Download corrupt. Hash does not match - Prenos poškodovan.Hash se ne ujema - - - - unmounting drive - - - - - opening drive - Odpiranje pogona - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Napaka ničenja zadnjega dela diska.<br>Disk morebiti sporoča napačno velikost(možen ponaredek). - - - - starting download - Začetek prenosa - - - - Error writing first block (partition table) - Napaka pisanja prvega bloka (particijska tabela) - - - - Verifying write failed. Contents of SD card is different from what was written to it. - Preverjanje pisanja spodletelo. Vsebina diska je drugačna, od tega, kar je bilo nanj zapisano. - DriveFormatThread @@ -336,79 +336,6 @@ to always use vedno - - Disable overscan - Onemogoči overscan - - - - Set hostname: - Ime naprave: - - - - Enable SSH - Omogoči SSH - - - Set username: - Nastavi uporabniško ime: - - - - Use password authentication - Uporabi geslo za avtentifikacijo - - - - Allow public-key authentication only - Dovoli le avtentifikacijo z javnim kjučem - - - Set password for '%1' user: - Nastavi geslo za uporabnika '%1': - - - - Set authorized_keys for '%1': - Nastavi authorized_keys za '%1': - - - - Configure wireless LAN - Nastavi WiFi - - - - SSID: - SSID: - - - - - Password: - Geslo: - - - - Set username and password - - - - - Username: - - - - - Hidden SSID - - - - - Show password - Pokaži geslo - General @@ -424,6 +351,47 @@ Options + + + Set hostname: + Ime naprave: + + + + Set username and password + + + + + Username: + + + + + + Password: + Geslo: + + + + Configure wireless LAN + Nastavi WiFi + + + + SSID: + SSID: + + + + Show password + Pokaži geslo + + + + Hidden SSID + + Wireless LAN country: @@ -444,19 +412,31 @@ Keyboard layout: Razporeditev tipkovnice: + + + Enable SSH + Omogoči SSH + + + + Use password authentication + Uporabi geslo za avtentifikacijo + + + + Allow public-key authentication only + Dovoli le avtentifikacijo z javnim kjučem + + + + Set authorized_keys for '%1': + Nastavi authorized_keys za '%1': + RUN SSH-KEYGEN - - Skip first-run wizard - Preskoči čarovnika prvega zagona - - - Persistent settings - Trajne nastavitve - Play sound when finished @@ -477,6 +457,26 @@ SAVE SHRANI + + Disable overscan + Onemogoči overscan + + + Set username: + Nastavi uporabniško ime: + + + Set password for '%1' user: + Nastavi geslo za uporabnika '%1': + + + Skip first-run wizard + Preskoči čarovnika prvega zagona + + + Persistent settings + Trajne nastavitve + QObject @@ -490,12 +490,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? Opozorilo: nastavljene napredne nastavitve - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? Bi želeli uporabit prilagoditve slike diska shranjene nazadnje? @@ -526,6 +526,22 @@ Raspberry Pi Imager v%1 Raspberry Pi Imager v%1 + + + + Raspberry Pi Device + + + + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + + @@ -560,9 +576,9 @@ ZAPIŠI - - Select this button to start writing the image - Izberite za gumb za začetek pisanja slike diska + + Select this button to change the destination storage device + Uporabite ta gumb za spremembo ciljnega diska @@ -587,6 +603,16 @@ Finalizing... Zakjučujem... + + + Next + + + + + Select this button to start writing the image + Izberite za gumb za začetek pisanja slike diska + Select this button to access advanced settings @@ -622,37 +648,11 @@ [ All ] - - - - Erase - Odstrani - - - - Format card as FAT32 - Formatiraj disk v FAT32 - - - - Use custom - Uporabi drugo - - - - Select a custom .img from your computer - Izberite drug .img iz vašega računalnika - Back Nazaj - - - Select this button to change the destination storage device - Uporabite ta gumb za spremembo ciljnega diska - Go back to main menu @@ -710,6 +710,11 @@ Preparing to write... Priprava na pisanje... + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + VSI obstoječi podatki na '%1' bodo izbrisani.<br>A ste prepričani, da želite nadaljevati? + Update available @@ -720,21 +725,16 @@ There is a newer version of Imager available.<br>Would you like to visit the website to download it? Na voljo je nova verzija tega programa. <br>Želite obiskati spletno stran za prenos? - - - Writing... %1% - Pišem...%1% - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - VSI obstoječi podatki na '%1' bodo izbrisani.<br>A ste prepričani, da želite nadaljevati? - Error downloading OS list from Internet Napaka prenosa seznama OS iz interneta + + + Writing... %1% + Pišem...%1% + Verifying... %1% @@ -755,15 +755,17 @@ Write Successful Zapisovanje uspešno + + + + Erase + Odstrani + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader <b>%1</b> je pobrisan<br><br>Sedaj lahko odstranite SD kartico iz čitalca oz iztaknete USB disk - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> je zapisan na <b>%2</b> - <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader @@ -774,6 +776,21 @@ Error parsing os_list.json Napaka procesiranja os_list.json + + + Format card as FAT32 + Formatiraj disk v FAT32 + + + + Use custom + Uporabi drugo + + + + Select a custom .img from your computer + Izberite drug .img iz vašega računalnika + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. @@ -784,5 +801,9 @@ SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. SD kartica je zaščitena pred pisanjem.<br>Premaknite stikalo zaklepanja, na levi strani kartice in poizkusite znova. + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> je zapisan na <b>%2</b> + diff --git a/src/i18n/rpi-imager_tr.ts b/src/i18n/rpi-imager_tr.ts index bd89f2e..42f9b86 100644 --- a/src/i18n/rpi-imager_tr.ts +++ b/src/i18n/rpi-imager_tr.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - Depolama birimine yazma hatası - @@ -28,9 +24,23 @@ Error changing to directory '%1' Dizin değiştirirken hata oluştu '%1' + + Error writing to storage + Depolama birimine yazma hatası + DownloadThread + + + unmounting drive + + + + + opening drive + sürücü açılıyor + Error running diskpart: %1 @@ -77,22 +87,19 @@ MBR sıfırlanırken yazma hatası - - Error reading from storage.<br>SD card may be broken. - Depolamadan okuma hatası.<br>SD kart arızalı olabilir. + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + 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ı) - Error mounting FAT32 partition - FAT32 bölümü bağlanırken hata oluştu + + starting download + indirmeye başlanıyor - Operating system did not mount FAT32 partition - İşletim sistemi FAT32 bölümünü bağlamadı - - - - Customizing image - + + Error downloading: %1 + İndirilirken hata oluştu: %1 @@ -110,9 +117,9 @@ Dosyayı diske yazma hatası - - Error downloading: %1 - İndirilirken hata oluştu: %1 + + Download corrupt. Hash does not match + İndirme bozuk. Hash eşleşmiyor @@ -126,41 +133,34 @@ Error writing to storage (while fsync) Depoya yazma hatası (fsync sırasında) - - - Download corrupt. Hash does not match - İndirme bozuk. Hash eşleşmiyor - - - - unmounting drive - - - - - opening drive - sürücü açılıyor - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - 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ı) - - - - starting download - indirmeye başlanıyor - Error writing first block (partition table) İlk bloğu yazma hatası (bölüm tablosu) + + + Error reading from storage.<br>SD card may be broken. + Depolamadan okuma hatası.<br>SD kart arızalı olabilir. + Verifying write failed. Contents of SD card is different from what was written to it. Yazma doğrulanamadı. SD kartın içeriği, üzerine yazılandan farklı. + + + Customizing image + + + + Error mounting FAT32 partition + FAT32 bölümü bağlanırken hata oluştu + + + Operating system did not mount FAT32 partition + İşletim sistemi FAT32 bölümünü bağlamadı + DriveFormatThread @@ -328,6 +328,62 @@ Set hostname: + + + Set username and password + + + + + Username: + + + + + + Password: + + + + + Configure wireless LAN + + + + + SSID: + + + + + Show password + + + + + Hidden SSID + + + + + Wireless LAN country: + + + + + Set locale settings + + + + + Time zone: + + + + + Keyboard layout: + + Enable SSH @@ -353,62 +409,6 @@ RUN SSH-KEYGEN - - - Configure wireless LAN - - - - - SSID: - - - - - - Password: - - - - - Set username and password - - - - - Username: - - - - - Hidden SSID - - - - - Show password - - - - - Wireless LAN country: - - - - - Set locale settings - - - - - Time zone: - - - - - Keyboard layout: - - Play sound when finished @@ -442,12 +442,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? @@ -478,6 +478,22 @@ Raspberry Pi Imager v%1 Raspberry Pi Imaj Yöneticisi v%1 + + + + Raspberry Pi Device + + + + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + + @@ -506,19 +522,15 @@ CHOOSE STORAGE SD KART SEÇİN - - Select this button to change the destination SD card - Hedef SD kartı değiştirmek için bu düğmeyi seçin - WRITE YAZ - - Select this button to start writing the image - Görüntüyü yazmaya başlamak için bu düğmeyi seçin + + Select this button to change the destination storage device + @@ -544,36 +556,15 @@ Bitiriliyor... - - - Erase - Sil - - - - Format card as FAT32 - Kartı FAT32 olarak biçimlendir - - - - Use custom - Özel imaj kullan - - - - Select a custom .img from your computer - Bilgisayarınızdan özel bir .img seçin - - - - Back - Geri - - - - Select this button to change the destination storage device + + Next + + + Select this button to start writing the image + Görüntüyü yazmaya başlamak için bu düğmeyi seçin + Select this button to access advanced settings @@ -609,6 +600,11 @@ [ All ] + + + Back + Geri + Go back to main menu @@ -667,6 +663,11 @@ Preparing to write... Yazdırmaya hazırlanıyor... + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + '%1' üzerindeki mevcut tüm veriler silinecek.<br>Devam etmek istediğinizden emin misiniz? + Update available @@ -677,21 +678,16 @@ There is a newer version of Imager available.<br>Would you like to visit the website to download it? Görüntüleyicinin daha yeni bir sürümü var. <br> İndirmek için web sitesini ziyaret etmek ister misiniz? - - - Writing... %1% - Yazılıyor... %1% - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - '%1' üzerindeki mevcut tüm veriler silinecek.<br>Devam etmek istediğinizden emin misiniz? - Error downloading OS list from Internet İnternetten işletim sistemi listesi indirilirken hata oluştu + + + Writing... %1% + Yazılıyor... %1% + Verifying... %1% @@ -712,15 +708,17 @@ Write Successful Başarılı Yazıldı + + + + Erase + Sil + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader <b>%1</b> silindi <br><br> Artık SD kartı okuyucudan çıkarabilirsiniz - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> <b>%2</b><br><br> üzerine yazıldı - <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader @@ -731,6 +729,21 @@ Error parsing os_list.json os_list.json ayrıştırma hatası + + + Format card as FAT32 + Kartı FAT32 olarak biçimlendir + + + + Use custom + Özel imaj kullan + + + + Select a custom .img from your computer + Bilgisayarınızdan özel bir .img seçin + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. @@ -741,5 +754,13 @@ SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. SD kart yazma korumalı. <br> Kartın sol tarafındaki kilit anahtarını yukarı itin ve tekrar deneyin. + + Select this button to change the destination SD card + Hedef SD kartı değiştirmek için bu düğmeyi seçin + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> <b>%2</b><br><br> üzerine yazıldı + diff --git a/src/i18n/rpi-imager_uk.ts b/src/i18n/rpi-imager_uk.ts index 380fe57..a82f914 100644 --- a/src/i18n/rpi-imager_uk.ts +++ b/src/i18n/rpi-imager_uk.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - Помилка запису на накопичувач - @@ -28,9 +24,23 @@ Error changing to directory '%1' Помилка при зміні каталогу на '%1' + + Error writing to storage + Помилка запису на накопичувач + DownloadThread + + + unmounting drive + диск від'єднується + + + + opening drive + диск відкривається + Error running diskpart: %1 @@ -77,14 +87,19 @@ Помилка при обнулюванні MBR - - Error reading from storage.<br>SD card may be broken. - Помилка читання накопичувача.<br>SD-карта пам'яті може бути пошкоджена. + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + Помилка запису під час обнулювання останнього розділу карти пам'яті.<br>Можливо заявлений об'єм карти не збігається з реальним (можливо карта є підробленою). - - Customizing image - Налаштування образа + + starting download + початок завантаження + + + + Error downloading: %1 + Помилка завантаження: %1 @@ -102,9 +117,9 @@ Помилка запису файлу на диск - - Error downloading: %1 - Помилка завантаження: %1 + + Download corrupt. Hash does not match + Завантаження пошкоджено. Хеш сума не збігається @@ -118,41 +133,26 @@ Error writing to storage (while fsync) Помилка запису на накопичувач (при виконанні fsync) - - - Download corrupt. Hash does not match - Завантаження пошкоджено. Хеш сума не збігається - - - - unmounting drive - диск від'єднується - - - - opening drive - диск відкривається - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Помилка запису під час обнулювання останнього розділу карти пам'яті.<br>Можливо заявлений об'єм карти не збігається з реальним (можливо карта є підробленою). - - - - starting download - початок завантаження - Error writing first block (partition table) Помилка під час запису першого блоку (таблиця розділів) + + + Error reading from storage.<br>SD card may be broken. + Помилка читання накопичувача.<br>SD-карта пам'яті може бути пошкоджена. + Verifying write failed. Contents of SD card is different from what was written to it. Помилка перевірки запису. Зміст SD-карти пам'яті відрізняється від того, що було записано туди. + + + Customizing image + Налаштування образа + DriveFormatThread @@ -320,6 +320,62 @@ Set hostname: Змінити ім'я хосту + + + Set username and password + Встановити ім'я користувача і пароль + + + + Username: + Ім'я користувача: + + + + + Password: + Пароль: + + + + Configure wireless LAN + Налаштувати Wi-Fi + + + + SSID: + SSID: + + + + Show password + Показати пароль + + + + Hidden SSID + Схована SSID + + + + Wireless LAN country: + Країна Wi-Fi: + + + + Set locale settings + Змінити налаштування регіону + + + + Time zone: + Часова зона: + + + + Keyboard layout: + Розкладка клавіатури: + Enable SSH @@ -345,66 +401,6 @@ RUN SSH-KEYGEN - - - Configure wireless LAN - Налаштувати Wi-Fi - - - - SSID: - SSID: - - - - - Password: - Пароль: - - - - Set username and password - Встановити ім'я користувача і пароль - - - - Username: - Ім'я користувача: - - - - Hidden SSID - Схована SSID - - - - Show password - Показати пароль - - - - Wireless LAN country: - Країна Wi-Fi: - - - - Set locale settings - Змінити налаштування регіону - - - - Time zone: - Часова зона: - - - - Keyboard layout: - Розкладка клавіатури: - - - Persistent settings - Постійні налаштування - Play sound when finished @@ -425,6 +421,10 @@ SAVE ЗБЕРЕГТИ + + Persistent settings + Постійні налаштування + QObject @@ -438,12 +438,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? Увага: змінені розширені налаштування - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? Прийняти збережені раніше налаштування образу? @@ -474,6 +474,22 @@ Raspberry Pi Imager v%1 Raspberry Pi Imager, версія %1 + + + + Raspberry Pi Device + + + + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + + @@ -508,9 +524,9 @@ ЗАПИСАТИ - - Select this button to start writing the image - Натисніть цю кнопку, щоб розпочати запис образу + + Select this button to change the destination storage device + Натисніть цю кнопку, щоб змінити пристрій призначення @@ -535,6 +551,16 @@ Finalizing... Завершення... + + + Next + + + + + Select this button to start writing the image + Натисніть цю кнопку, щоб розпочати запис образу + Select this button to access advanced settings @@ -570,37 +596,11 @@ [ All ] - - - - Erase - Видалити - - - - Format card as FAT32 - Форматувати карту у FAT32 - - - - Use custom - Власний образ - - - - Select a custom .img from your computer - Обрати власний .img з вашого комп'ютера - Back Назад - - - Select this button to change the destination storage device - Натисніть цю кнопку, щоб змінити пристрій призначення - Go back to main menu @@ -658,6 +658,11 @@ Preparing to write... Підготовка до запису... + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + Усі уснуючі дані у '%1' будуть видалені.<br> Ви впевнені, що бажаєте продовжити? + Update available @@ -668,21 +673,16 @@ There is a newer version of Imager available.<br>Would you like to visit the website to download it? Доступна нова версія Imager.<br>Бажаєте завітати на сайт та завантажити її? - - - Writing... %1% - Записування...%1% - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Усі уснуючі дані у '%1' будуть видалені.<br> Ви впевнені, що бажаєте продовжити? - Error downloading OS list from Internet Помилка завантаження списку ОС із Інтернету + + + Writing... %1% + Записування...%1% + Verifying... %1% @@ -703,6 +703,12 @@ Write Successful Успішно записано + + + + Erase + Видалити + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader @@ -718,6 +724,21 @@ Error parsing os_list.json Помилка парсування os_list.json + + + Format card as FAT32 + Форматувати карту у FAT32 + + + + Use custom + Власний образ + + + + Select a custom .img from your computer + Обрати власний .img з вашого комп'ютера + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. diff --git a/src/i18n/rpi-imager_zh.ts b/src/i18n/rpi-imager_zh.ts index 8581d86..81a2bf0 100644 --- a/src/i18n/rpi-imager_zh.ts +++ b/src/i18n/rpi-imager_zh.ts @@ -3,10 +3,6 @@ DownloadExtractThread - - Error writing to storage - 写入时出错 - @@ -28,9 +24,23 @@ Error changing to directory '%1' 进入文件夹 “%1” 错误 + + Error writing to storage + 写入时出错 + DownloadThread + + + unmounting drive + + + + + opening drive + 打开驱动器 + Error running diskpart: %1 @@ -77,38 +87,19 @@ 将MBR清零时写入错误 - - Error reading from storage.<br>SD card may be broken. - 从存储读取数据时错误。<br>SD卡可能已损坏。 + + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). + 写入镜像失败<br>SD卡可能损坏。 - Waiting for FAT partition to be mounted - 等待FAT分区挂载 + + starting download + 开始下载 - Error mounting FAT32 partition - 挂载FAT32分区错误 - - - Operating system did not mount FAT32 partition - 操作系统未能挂载FAT32分区 - - - - Customizing image - 使用自定义镜像 - - - Error creating firstrun.sh on FAT partition - 在FAT分区上创建firstrun.sh脚本文件时出错 - - - Error writing to config.txt on FAT partition - 在FAT分区上写入config.txt时出错 - - - Error writing to cmdline.txt on FAT partition - 在FAT分区上写入cmdline.txt时出错 + + Error downloading: %1 + 下载文件错误,已下载:%1 @@ -126,9 +117,9 @@ 将文件写入磁盘时出错 - - Error downloading: %1 - 下载文件错误,已下载:%1 + + Download corrupt. Hash does not match + 下载的文件损坏。 哈希值不匹配 @@ -142,41 +133,50 @@ Error writing to storage (while fsync) 在fsync时写入存储时出错 - - - Download corrupt. Hash does not match - 下载的文件损坏。 哈希值不匹配 - - - - unmounting drive - - - - - opening drive - 打开驱动器 - - - - Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - 写入镜像失败<br>SD卡可能损坏。 - - - - starting download - 开始下载 - Error writing first block (partition table) 写入第一个块(分区表)时出错 + + + Error reading from storage.<br>SD card may be broken. + 从存储读取数据时错误。<br>SD卡可能已损坏。 + Verifying write failed. Contents of SD card is different from what was written to it. 验证写入失败。 SD卡的内容与写入的内容不同。 + + + Customizing image + 使用自定义镜像 + + + Waiting for FAT partition to be mounted + 等待FAT分区挂载 + + + Error mounting FAT32 partition + 挂载FAT32分区错误 + + + Operating system did not mount FAT32 partition + 操作系统未能挂载FAT32分区 + + + Error creating firstrun.sh on FAT partition + 在FAT分区上创建firstrun.sh脚本文件时出错 + + + Error writing to config.txt on FAT partition + 在FAT分区上写入config.txt时出错 + + + Error writing to cmdline.txt on FAT partition + 在FAT分区上写入cmdline.txt时出错 + DriveFormatThread @@ -324,75 +324,6 @@ to always use 永久保存 - - Disable overscan - 禁用扫描 - - - - Set hostname: - 设置主机名: - - - - Enable SSH - 开启SSH服务 - - - - Use password authentication - 使用密码登录 - - - - Allow public-key authentication only - 只允许使用公匙登录 - - - Set password for '%1' user: - 设置'%1'用户的密码: - - - - Set authorized_keys for '%1': - 设置%1用户的登录密匙: - - - - Configure wireless LAN - 配置WiFi - - - - SSID: - 热点名: - - - - - Password: - 密码: - - - - Set username and password - - - - - Username: - - - - - Hidden SSID - - - - - Show password - 显示密码 - General @@ -408,6 +339,47 @@ Options + + + Set hostname: + 设置主机名: + + + + Set username and password + + + + + Username: + + + + + + Password: + 密码: + + + + Configure wireless LAN + 配置WiFi + + + + SSID: + 热点名: + + + + Show password + 显示密码 + + + + Hidden SSID + + Wireless LAN country: @@ -428,19 +400,31 @@ Keyboard layout: 键盘布局: + + + Enable SSH + 开启SSH服务 + + + + Use password authentication + 使用密码登录 + + + + Allow public-key authentication only + 只允许使用公匙登录 + + + + Set authorized_keys for '%1': + 设置%1用户的登录密匙: + RUN SSH-KEYGEN - - Skip first-run wizard - 跳过首次启动向导 - - - Persistent settings - 永久设置 - Play sound when finished @@ -461,6 +445,22 @@ SAVE 保存 + + Disable overscan + 禁用扫描 + + + Set password for '%1' user: + 设置'%1'用户的密码: + + + Skip first-run wizard + 跳过首次启动向导 + + + Persistent settings + 永久设置 + QObject @@ -474,12 +474,12 @@ UseSavedSettingsPopup - Warning: advanced settings set + Use image customisation? 警告:高级设置已设置 - Would you like to apply the image customization settings saved earlier? + Would you like to apply image customization settings? 您要应用之前保存的自定义镜像设置吗? @@ -511,14 +511,20 @@ 树莓派镜像烧录器 v%1 - - Are you sure you want to quit? - 你确定你要退出吗? + + + Raspberry Pi Device + - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imager还未完成任务。<br>您确定要退出吗? + + CHOOSE DEVICE + + + + + Select this button to choose your target Raspberry Pi + @@ -531,6 +537,11 @@ CHOOSE OS 选择操作系统 + + + Select this button to change the operating system + 更改操作系统 + @@ -553,30 +564,11 @@ WRITE 烧录 - - - Writing... %1% - 写入中...%1% - CANCEL WRITE 取消写入 - - - Select this button to change the operating system - 更改操作系统 - - - Select this button to change the destination SD card - 更改目标SD卡 - - - - Select this button to start writing the image - 开始写入 - @@ -595,6 +587,16 @@ Finalizing... 正在完成... + + + Next + + + + + Select this button to start writing the image + 开始写入 + Select this button to access advanced settings @@ -631,36 +633,57 @@ - - - Erase - 擦除 + + Back + 返回 - - Format card as FAT32 - 将SD卡格式化为FAT32格式 + + Go back to main menu + 回到主页 - - Use custom - 使用自定义镜像 + + Released: %1 + 发布时间:%1 - - Select a custom .img from your computer - 使用下载的系统镜像文件烧录 + + Cached on your computer + 缓存在本地磁盘里 Local file 本地文件 + + + Online - %1 GB download + 需要下载:%1 GB + + + + + + Mounted as %1 + 挂载到:%1 上 + [WRITE PROTECTED] [写保护] + + + Are you sure you want to quit? + 你确定你要退出吗? + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + Raspberry Pi Imager还未完成任务。<br>您确定要退出吗? + Warning @@ -686,85 +709,26 @@ There is a newer version of Imager available.<br>Would you like to visit the website to download it? 有较新版本的rpi-imager。<br>需要下载更新吗? - - - Preparing to write... (%1) - 写入中 (%1) - - - - <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1 </ b>已被删除<br> <br>您现在可以从读取器中取出SD卡 - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> 已经成功烧录到 <b>%2</b> - - - - Error parsing os_list.json - 解析 os_list.json 错误 - - - - Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - 连接包含镜像的U盘。<br>镜像必须位于U盘的根文件夹中。 - - - - SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - SD卡具有写保护。<br>尝试向上推SD卡的左侧的锁定开关,然后重试。 - - - - Back - 返回 - - - - Go back to main menu - 回到主页 - - - - Released: %1 - 发布时间:%1 - - - - Cached on your computer - 缓存在本地磁盘里 - - - - Online - %1 GB download - 需要下载:%1 GB - - - - - - Mounted as %1 - 挂载到:%1 上 - - - QUIT APP - 退出 - - - CONTINUE - 继续 - Error downloading OS list from Internet 下载镜像列表错误 + + + Writing... %1% + 写入中...%1% + Verifying... %1% 验证文件中...%1% + + + Preparing to write... (%1) + 写入中 (%1) + Error @@ -775,10 +739,67 @@ Write Successful 烧录成功 + + + + Erase + 擦除 + + + + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader + <b>%1 </ b>已被删除<br> <br>您现在可以从读取器中取出SD卡 + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader <b>%1</b> 已经成功烧录到 <b>%2</b><br><br>上了,你可以卸载SD卡了 + + + Error parsing os_list.json + 解析 os_list.json 错误 + + + + Format card as FAT32 + 将SD卡格式化为FAT32格式 + + + + Use custom + 使用自定义镜像 + + + + Select a custom .img from your computer + 使用下载的系统镜像文件烧录 + + + + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. + 连接包含镜像的U盘。<br>镜像必须位于U盘的根文件夹中。 + + + + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. + SD卡具有写保护。<br>尝试向上推SD卡的左侧的锁定开关,然后重试。 + + + Select this button to change the destination SD card + 更改目标SD卡 + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> 已经成功烧录到 <b>%2</b> + + + QUIT APP + 退出 + + + CONTINUE + 继续 + From 2047461e9a5591015680cfaab4e3a40246449d52 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Thu, 12 Oct 2023 12:24:53 +0100 Subject: [PATCH 17/25] i18n: Remove stale translations In order to better highlight the strings we'll need updated translations for, and to avoid confusion, remove obselete and now inaccurate translations. --- src/i18n/rpi-imager_ca.ts | 4 ++-- src/i18n/rpi-imager_de.ts | 4 ++-- src/i18n/rpi-imager_es.ts | 4 ++-- src/i18n/rpi-imager_fr.ts | 4 ++-- src/i18n/rpi-imager_it.ts | 4 ++-- src/i18n/rpi-imager_ja.ts | 4 ++-- src/i18n/rpi-imager_ko.ts | 4 ++-- src/i18n/rpi-imager_nl.ts | 4 ++-- src/i18n/rpi-imager_ru.ts | 4 ++-- src/i18n/rpi-imager_sk.ts | 4 ++-- src/i18n/rpi-imager_sl.ts | 4 ++-- src/i18n/rpi-imager_uk.ts | 4 ++-- src/i18n/rpi-imager_zh.ts | 4 ++-- 13 files changed, 26 insertions(+), 26 deletions(-) diff --git a/src/i18n/rpi-imager_ca.ts b/src/i18n/rpi-imager_ca.ts index 6ba84b5..4239a25 100644 --- a/src/i18n/rpi-imager_ca.ts +++ b/src/i18n/rpi-imager_ca.ts @@ -439,12 +439,12 @@ Use image customisation? - Avís: hi ha opcions avançades establertes + Would you like to apply image customization settings? - Voleu aplicar la configuració personalitzada de la imatge desada anteriorment? + diff --git a/src/i18n/rpi-imager_de.ts b/src/i18n/rpi-imager_de.ts index c605a7f..79faf72 100644 --- a/src/i18n/rpi-imager_de.ts +++ b/src/i18n/rpi-imager_de.ts @@ -493,12 +493,12 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Use image customisation? - Warnung: Erweiterte Optionen festgelegt + Would you like to apply image customization settings? - Möchten Sie die vorher festgelegten OS-Modifizierungen anwenden? + diff --git a/src/i18n/rpi-imager_es.ts b/src/i18n/rpi-imager_es.ts index 36c146e..5e05324 100644 --- a/src/i18n/rpi-imager_es.ts +++ b/src/i18n/rpi-imager_es.ts @@ -439,12 +439,12 @@ Use image customisation? - Advertencia: ajustes avanzados establecidos + Would you like to apply image customization settings? - ¿Desea aplicar los ajustes de personalización de imagen guardados anteriormente? + diff --git a/src/i18n/rpi-imager_fr.ts b/src/i18n/rpi-imager_fr.ts index 88cd2b7..20ff127 100644 --- a/src/i18n/rpi-imager_fr.ts +++ b/src/i18n/rpi-imager_fr.ts @@ -475,12 +475,12 @@ Use image customisation? - Attention : réglages avancés définis + Would you like to apply image customization settings? - Voulez-vous appliquer les réglages de personnalisation de l'image enregistrés précédemment ? + diff --git a/src/i18n/rpi-imager_it.ts b/src/i18n/rpi-imager_it.ts index f6337a9..24bedab 100644 --- a/src/i18n/rpi-imager_it.ts +++ b/src/i18n/rpi-imager_it.ts @@ -492,12 +492,12 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos Use image customisation? - Attenzione: impostazioni avanzate impostate + Would you like to apply image customization settings? - Vuoi applicare le impostazioni di personalizzazione dell'immagine salvate in precedenza? + diff --git a/src/i18n/rpi-imager_ja.ts b/src/i18n/rpi-imager_ja.ts index 0fe9488..20e4acc 100644 --- a/src/i18n/rpi-imager_ja.ts +++ b/src/i18n/rpi-imager_ja.ts @@ -483,12 +483,12 @@ Use image customisation? - 警告: 詳細な設定が設定されています + Would you like to apply image customization settings? - カスタマイズを適用しますか? + diff --git a/src/i18n/rpi-imager_ko.ts b/src/i18n/rpi-imager_ko.ts index eaf23ae..e1a36f3 100644 --- a/src/i18n/rpi-imager_ko.ts +++ b/src/i18n/rpi-imager_ko.ts @@ -483,12 +483,12 @@ Use image customisation? - 경고: 고급 설정이 설정됨 + Would you like to apply image customization settings? - 이전에 저장한 이미지 사용자 지정 설정을 적용하시겠습니까? + diff --git a/src/i18n/rpi-imager_nl.ts b/src/i18n/rpi-imager_nl.ts index 9a89719..60e2d5e 100644 --- a/src/i18n/rpi-imager_nl.ts +++ b/src/i18n/rpi-imager_nl.ts @@ -491,12 +491,12 @@ Use image customisation? - Opgeslagen instellingen toepassen + Would you like to apply image customization settings? - Wilt u de eerder opgeslagen image customization instellingen toepassen? + diff --git a/src/i18n/rpi-imager_ru.ts b/src/i18n/rpi-imager_ru.ts index 1476155..f32d4b1 100644 --- a/src/i18n/rpi-imager_ru.ts +++ b/src/i18n/rpi-imager_ru.ts @@ -475,12 +475,12 @@ Use image customisation? - Внимание: установлены дополнительные параметры + Would you like to apply image customization settings? - Применить сохранённые ранее параметры настройки образа? + diff --git a/src/i18n/rpi-imager_sk.ts b/src/i18n/rpi-imager_sk.ts index d76e748..be70d81 100644 --- a/src/i18n/rpi-imager_sk.ts +++ b/src/i18n/rpi-imager_sk.ts @@ -491,12 +491,12 @@ Use image customisation? - Varovanie: používajú sa pokročilé možnosti + Would you like to apply image customization settings? - Chcete použiť uložené nastavenia úprav obrazu? + diff --git a/src/i18n/rpi-imager_sl.ts b/src/i18n/rpi-imager_sl.ts index 0f89509..07965dc 100644 --- a/src/i18n/rpi-imager_sl.ts +++ b/src/i18n/rpi-imager_sl.ts @@ -491,12 +491,12 @@ Use image customisation? - Opozorilo: nastavljene napredne nastavitve + Would you like to apply image customization settings? - Bi želeli uporabit prilagoditve slike diska shranjene nazadnje? + diff --git a/src/i18n/rpi-imager_uk.ts b/src/i18n/rpi-imager_uk.ts index a82f914..eab21fb 100644 --- a/src/i18n/rpi-imager_uk.ts +++ b/src/i18n/rpi-imager_uk.ts @@ -439,12 +439,12 @@ Use image customisation? - Увага: змінені розширені налаштування + Would you like to apply image customization settings? - Прийняти збережені раніше налаштування образу? + diff --git a/src/i18n/rpi-imager_zh.ts b/src/i18n/rpi-imager_zh.ts index 81a2bf0..3ab8a83 100644 --- a/src/i18n/rpi-imager_zh.ts +++ b/src/i18n/rpi-imager_zh.ts @@ -475,12 +475,12 @@ Use image customisation? - 警告:高级设置已设置 + Would you like to apply image customization settings? - 您要应用之前保存的自定义镜像设置吗? + From 2fb58dc01c1159f1ea11b056f086e9fc21c5c281 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Mon, 16 Oct 2023 11:46:54 +0100 Subject: [PATCH 18/25] i18n: Advanced Settings -> OS Customisation --- README.md | 4 +- src/OptionsPopup.qml | 6 +- src/UseSavedSettingsPopup.qml | 12 +- src/i18n/rpi-imager_ca.ts | 513 +++++++++++++++--------------- src/i18n/rpi-imager_de.ts | 549 ++++++++++++++------------------ src/i18n/rpi-imager_en.ts | 155 +++++---- src/i18n/rpi-imager_es.ts | 501 ++++++++++++++--------------- src/i18n/rpi-imager_fr.ts | 557 +++++++++++++++------------------ src/i18n/rpi-imager_it.ts | 562 ++++++++++++++------------------- src/i18n/rpi-imager_ja.ts | 559 +++++++++++++++------------------ src/i18n/rpi-imager_ko.ts | 561 +++++++++++++++------------------ src/i18n/rpi-imager_nl.ts | 561 ++++++++++++++------------------- src/i18n/rpi-imager_ru.ts | 547 +++++++++++++++----------------- src/i18n/rpi-imager_sk.ts | 571 +++++++++++++++------------------- src/i18n/rpi-imager_sl.ts | 553 ++++++++++++++------------------ src/i18n/rpi-imager_tr.ts | 416 +++++++++++-------------- src/i18n/rpi-imager_uk.ts | 511 +++++++++++++++--------------- src/i18n/rpi-imager_zh.ts | 519 +++++++++++++----------------- 18 files changed, 3390 insertions(+), 4267 deletions(-) diff --git a/README.md b/README.md index 525cb00..9a9c03b 100644 --- a/README.md +++ b/README.md @@ -197,8 +197,8 @@ On macOS, disable it by editing the property list for the application: defaults write org.raspberrypi.Imager.plist telemetry -bool NO ``` -### Advanced options +### OS Customization -When using the app, press CTRL + SHIFT + X to reveal the **Advanced options** dialog. +When using the app, press CTRL + SHIFT + X to reveal the **OS Customization** dialog. In here, you can specify several things you would otherwise set in the boot configuration files. For example, you can enable SSH, set the Wi-Fi login, and specify your locale settings for the system image. diff --git a/src/OptionsPopup.qml b/src/OptionsPopup.qml index 568d1cd..db43505 100644 --- a/src/OptionsPopup.qml +++ b/src/OptionsPopup.qml @@ -17,7 +17,7 @@ Window { maximumWidth: width minimumHeight: 125 height: Math.min(750, cl.implicitHeight) - title: qsTr("Advanced options") + title: qsTr("OS Customization") property bool initialized: false property bool hasSavedSettings: false @@ -49,7 +49,7 @@ Window { RowLayout { Label { - text: qsTr("Image customization options") + text: qsTr("OS customization options") } ComboBox { id: comboSaveSettings @@ -539,7 +539,7 @@ Window { /* Lacking an easy cross-platform to fetch keyboard layout from host system, just default to "gb" for people in UK time zone for now, and "us" for everyone else */ - if (tz == "Europe/London") { + if (tz === "Europe/London") { fieldKeyboardLayout.currentIndex = fieldKeyboardLayout.find("gb") } else { fieldKeyboardLayout.currentIndex = fieldKeyboardLayout.find("us") diff --git a/src/UseSavedSettingsPopup.qml b/src/UseSavedSettingsPopup.qml index f002763..d17790d 100644 --- a/src/UseSavedSettingsPopup.qml +++ b/src/UseSavedSettingsPopup.qml @@ -70,7 +70,7 @@ Popup { Layout.topMargin: 10 font.family: roboto.name font.bold: true - text: qsTr("Use image customisation?") + text: qsTr("Use OS customization?") } Text { @@ -85,7 +85,7 @@ Popup { Layout.topMargin: 25 Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter Accessible.name: text.replace(/<\/?[^>]+(>|$)/g, "") - text: qsTr("Would you like to apply image customization settings?") + text: qsTr("Would you like to apply OS customization settings?") } RowLayout { @@ -95,10 +95,10 @@ Popup { id: buttons ImButton { - text: qsTr("NO") + text: qsTr("EDIT SETTINGS") onClicked: { msgpopup.close() - msgpopup.no() + msgpopup.editSettings() } Material.foreground: activeFocus ? "#d1dcfb" : "#ffffff" Material.background: "#c51a4a" @@ -127,10 +127,10 @@ Popup { } ImButton { - text: qsTr("EDIT SETTINGS") + text: qsTr("NO") onClicked: { msgpopup.close() - msgpopup.editSettings() + msgpopup.no() } Material.foreground: activeFocus ? "#d1dcfb" : "#ffffff" Material.background: "#c51a4a" diff --git a/src/i18n/rpi-imager_ca.ts b/src/i18n/rpi-imager_ca.ts index 4239a25..b3e486a 100644 --- a/src/i18n/rpi-imager_ca.ts +++ b/src/i18n/rpi-imager_ca.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - S'ha produït un error en extreure l'arxiu: %1 + Error mounting FAT32 partition - S'ha produït un error en muntar la partició FAT32 + Operating system did not mount FAT32 partition - El sistema operatiu no ha muntat la partició FAT32 + Error changing to directory '%1' - S'ha produït un error en canviar al directori «%1» - - - Error writing to storage - S'ha produït un error en escriure a l'emmagatzematge + @@ -34,124 +30,124 @@ unmounting drive - S'està desmuntant el dispositiu + opening drive - S'està obrint la unitat + Error running diskpart: %1 - S'ha produït un error en executar «diskpart»: %1 + Error removing existing partitions - S'ha produït un error en eliminar les particions existents. + Authentication cancelled - S'ha cancel·lat l'autenticació + Error running authopen to gain access to disk device '%1' - S'ha produït un error en executar «authopen» per a obtenir l'accés al dispositiu de disc «%1» + 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'). - 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») + Cannot open storage device '%1'. - No s'ha pogut obrir el dispositiu d'emmagatzematge «%1» + discarding existing data on drive - S'estan descartant les dades existents a la unitat + zeroing out first and last MB of drive - S'està esborrant amb zeros el primer i l'últim MB de la unitat + Write error while zero'ing out MBR - S'ha produït un error en esborrar amb zeros l'«MBR». + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - 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ó) + starting download - S'està iniciant la baixada + Error downloading: %1 - S'ha produït un error en la baixada: %1 + Access denied error while writing file to disk. - S'ha produït un error d'accés denegat en escriure el fitxer al disc. + 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. - 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. + Error writing file to disk - S'ha produït un error en escriure el fitxer al disc + Download corrupt. Hash does not match - La baixada està corrompuda. El «hash» no coincideix + Error writing to storage (while flushing) - S'ha produït un error en escriure a l'emmagatzematge (procés: Flushing) + Error writing to storage (while fsync) - S'ha produït un error en escriure a l'emmagatzematge (procés: fsync) + Error writing first block (partition table) - S'ha produït un error en escriure el primer bloc (taula de particions) + Error reading from storage.<br>SD card may be broken. - S'ha produït un error en llegir l'emmagatzematge.<br>És possible que la targeta SD estigui malmesa. + Verifying write failed. Contents of SD card is different from what was written to it. - Ha fallat la verificació de l'escriptura. El contingut de la targeta SD és diferent del que s'hi ha escrit. + Customizing image - S'està personalitzant la imatge + @@ -161,85 +157,85 @@ Error partitioning: %1 - S'ha produït un error durant la partició: %1 + Error starting fat32format - S'ha produït un error en iniciar «fat32format» + Error running fat32format: %1 - S'ha produït un error en executar «fat32format»: %1 + Error determining new drive letter - S'ha produït un error en determinar la lletra de la nova unitat + Invalid device: %1 - El dispositiu no és vàlid: %1 + Error formatting (through udisks2) - S'ha produït un error en formatar (a través d'«udisks2») + Error starting sfdisk - S'ha produït un error en iniciar «sfdisk» + Partitioning did not create expected FAT partition %1 - No s'ha pogut crear la partició FAT %1 esperada + Error starting mkfs.fat - S'ha produït un error en iniciar «mkfs.fat» + Error running mkfs.fat: %1 - S'ha produït un error en executar «mkfs.fat»: %1 + Formatting not implemented for this platform - Aquesta plataforma no té implementada la formatació + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - La capacitat de l'emmagatzematge no és suficient.<br>Ha de ser de %1 GB com a mínim. + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - 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. + - + Downloading and writing image - S'està baixant i escrivint la imatge + - + Select image - Selecciona una imatge + - + Would you like to prefill the wifi password from the system keychain? - Voleu emplenar la contrasenya del wifi des del clauer del sistema? + @@ -247,12 +243,12 @@ opening image file - S'està obrint el fitxer de la imatge + Error opening image file - S'ha produït un error en obrir el fitxer de la imatge + @@ -260,22 +256,22 @@ NO - NO + YES - + CONTINUE - CONTINUA + QUIT - SURT + @@ -283,22 +279,22 @@ Advanced options - Opcions avançades + Image customization options - Opcions de personalització de les imatges + for this session only - per a aquesta sessió només + to always use - per utilitzar sempre + @@ -318,83 +314,83 @@ Set hostname: - Defineix un nom de la màquina (hostname): + Set username and password - Defineix el nom d'usuari i contrasenya + Username: - Nom d'usuari: + Password: - Contrasenya: + Configure wireless LAN - Configura la wifi + SSID: - SSID: + Show password - Mostra la contrasenya + Hidden SSID - SSID oculta + Wireless LAN country: - País del wifi: + Set locale settings - Estableix la configuració regional + Time zone: - Fus horari: + Keyboard layout: - Disposició del teclat: + Enable SSH - Activa el protocol SSH + Use password authentication - Utilitza l'autenticació de contrasenya + Allow public-key authentication only - Permet només l'autenticació de claus públiques + Set authorized_keys for '%1': - Establiu «authorized_keys» per a l'usuari «%1»: + @@ -404,26 +400,22 @@ Play sound when finished - Fes un so quan acabi + Eject media when finished - Expulsa el mitjà quan acabi + Enable telemetry - Activa la telemetria + SAVE - DESA - - - Persistent settings - Configuració persistent + @@ -431,7 +423,7 @@ Internal SD card reader - Lector de targetes SD intern + @@ -442,29 +434,29 @@ - + Would you like to apply image customization settings? - - NO - NO - - - - NO, CLEAR SETTINGS - NO, ESBORRA LA CONFIGURACIÓ - - - - YES - - - - + EDIT SETTINGS - EDITA LA CONFIGURACIÓ + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -472,7 +464,7 @@ Raspberry Pi Imager v%1 - Raspberry Pi Imager v%1 + @@ -491,65 +483,60 @@ - - + + Operating System - Sistema operatiu + - + CHOOSE OS - ESCULL SO + - + Select this button to change the operating system - Seleccioneu aquest botó si voleu canviar el sistema operatiu + - - + + Storage - Emmagatzematge + - - + + CHOOSE STORAGE - ESCULL L'EMMAGATZEMATGE + - - WRITE - ESCRIU - - - + Select this button to change the destination storage device - Seleccioneu aquest botó per a canviar la destinació del dispositiu d'emmagatzematge + - + CANCEL WRITE - CANCEL·LA L'ESCRIPTURA + - - + + Cancelling... - S'està cancel·lant... + - + CANCEL VERIFY - CANCEL·LA LA VERIFICACIÓ + - - - + + + Finalizing... - S'està finalitzant... + @@ -557,197 +544,187 @@ - + Select this button to start writing the image - Seleccioneu aquest botó per a començar l'escriptura de la imatge - - - - Select this button to access advanced settings - Seleccioneu aquest botó per accedir a la configuració avançada - - - - Using custom repository: %1 - S'està usant el repositori personalitzat: %1 - - - - Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - Navegació per teclat: <tab> navega al botó següent <espai> prem el botó o selecciona l'element <fletxa amunt o avall> desplaçament per les llistes - - - - Language: - Idioma: - - - - Keyboard: - Teclat: - - - - Pi model: - + + Using custom repository: %1 + + + + + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists + + + + + Language: + + + + + Keyboard: + + + + [ All ] - + Back - Enrere + - + Go back to main menu - Torna al menú principal + - + Released: %1 - Llançat el: %1 + - + Cached on your computer - A la memòria cau de l'ordinador + - + Local file - Fitxer local + - - Online - %1 GB download - Disponible en línia (%1 GB) - - - - - Mounted as %1 - Muntat com a %1 - - - - [WRITE PROTECTED] - [PROTEGIT CONTRA ESCRIPTURA] - - - - Are you sure you want to quit? - N'esteu segur que voleu sortir? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - El Raspberry Pi Imager està ocupat.<br>N'esteu segur que voleu sortir? - - - - Warning - Avís - - - - Preparing to write... - S'està preparant per a escriure... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Totes les dades existents a «%1» s'esborraràn.<br>Esteu segur que voleu continuar? - - - - Update available - Hi ha una actualització disponible - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - Hi ha una nova versió de l'Imager disponible.<br>Voleu visitar el lloc web per baixar-la? - - - - Error downloading OS list from Internet - S'ha produït un error en baixar la llista dels SO d'internet - - - - Writing... %1% - S'està escrivint... %1% - - - - Verifying... %1% - S'està verificant... %1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - S'està preparant per escriure... (%1) + - + Error - S'ha produït un error + - + Write Successful - S'ha escrit amb èxit + - - + + Erase - Esborra + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - S'ha esborrat <b>%1</b><br><br>Ja podeu retirar la targeta SD del lector + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - S'ha escrit el «<b>%1</b>» a <b>%2</b><br><br>Ja podeu retirar la targeta SD del lector + - + Error parsing os_list.json - S'ha produït un error en analitzar os_lists.json + - + Format card as FAT32 - Formata la targeta com a FAT32 + - + Use custom - Utilitza una personalitzada + - + Select a custom .img from your computer - Selecciona una imatge .img personalitzada de l'ordinador + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Connecteu una memòria USB que contingui primer imatges.<br>Les imatges s'han de trobar a la carpeta arrel de la memòria. + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - 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. + diff --git a/src/i18n/rpi-imager_de.ts b/src/i18n/rpi-imager_de.ts index 79faf72..78bf0aa 100644 --- a/src/i18n/rpi-imager_de.ts +++ b/src/i18n/rpi-imager_de.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - Fehler beim Entpacken des Archivs: %1 + Error mounting FAT32 partition - Fehler beim Einbinden der FAT32-Partition + Operating system did not mount FAT32 partition - Das Betriebssystem band die FAT32-Partition nicht ein + Error changing to directory '%1' - Fehler beim Wechseln in den Ordner "%1" - - - Error writing to storage - Fehler beim Schreiben auf den Speicher + @@ -39,161 +35,119 @@ opening drive - Gerät wird geöffnet + Error running diskpart: %1 - Fehler beim Ausführen von Diskpart: %1 + Error removing existing partitions - Fehler beim Entfernen von existierenden Partitionen + Authentication cancelled - Authentifizierung abgebrochen + Error running authopen to gain access to disk device '%1' - Fehler beim Ausführen von authopen, um Zugriff auf Geräte zu erhalten '%1' + 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'). - I don't use Mac OS, I would need help here. Unfinished translation: - -Bitte stellen Sie sicher, dass 'Raspberry Pi Imager' Zugriff auf 'removable volumes' in privacy settings hat (unter 'files and folders'. Sie können ihm auch 'full disk access' geben). Cannot open storage device '%1'. - Speichergerät '%1' kann nicht geöffnet werden. + discarding existing data on drive - Vorhandene Daten auf dem Medium werden gelöscht + zeroing out first and last MB of drive - Erstes und letztes Megabyte des Mediums werden überschrieben + Write error while zero'ing out MBR - Schreibfehler während des Löschens des MBR + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Fehler beim Löschen des letzten Teiles der Speicherkarte.<br>Die Speicherkarte könnte mit einer falschen Größe beworben sein (möglicherweise Betrug). + starting download - Download wird gestartet + Error downloading: %1 - Fehler beim Herunterladen: %1 + Access denied error while writing file to disk. - Zugriff verweigert-Fehler beim Schreiben auf den Datenträger. + 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. - I don't use Windows either. What is "Controlled Folder Access" in the German version? - -Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-imager.exe als auch fat32format.exe zur Liste der erlaubten Apps hinzu und versuchen sie es erneut. Error writing file to disk - Fehler beim Schreiben der Datei auf den Speicher + Download corrupt. Hash does not match - Download beschädigt. Prüfsumme stimmt nicht überein + Error writing to storage (while flushing) - Fehler beim Schreiben auf den Speicher (während flushing) + Error writing to storage (while fsync) - Fehler beim Schreiben auf den Speicher (während fsync) + Error writing first block (partition table) - Fehler beim Schreiben auf des ersten Blocks (Partitionstabelle) + Error reading from storage.<br>SD card may be broken. - Fehler beim Lesen vom Speicher.<br>Die SD-Karte könnte defekt sein. + Verifying write failed. Contents of SD card is different from what was written to it. - Verifizierung fehlgeschlagen. Der Inhalt der SD-Karte weicht von dem Inhalt ab, der geschrieben werden sollte. + Customizing image - Image modifizieren - - - Waiting for FAT partition to be mounted - Warten auf das Einbinden der FAT-Partition - - - Error mounting FAT32 partition - Fehler beim Einbinden der FAT32-Partition - - - Operating system did not mount FAT32 partition - Das Betriebssystem hat die FAT32-Partition nicht eingebunden. - - - Unable to customize. File '%1' does not exist. - Modifizieren fehlgeschlagen. Die Datei '%1' existiert nicht. - - - Error creating firstrun.sh on FAT partition - Fehler beim Erstellen von firstrun.sh auf der FAT-Partition - - - Error writing to config.txt on FAT partition - Fehler beim Schreiben in config.txt auf der FAT-Partition - - - Error creating user-data cloudinit file on FAT partition - Fehler beim Erstellen der user-data cloudinit Datei auf der FAT-Partition - - - Error creating network-config cloudinit file on FAT partition - Fehler beim Erstellen der network-config cloudinit Datei auf der FAT-Partition - - - Error writing to cmdline.txt on FAT partition - Fehler beim Schreiben in cmdline.txt auf der FAT-Partition + @@ -203,85 +157,85 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Error partitioning: %1 - Fehler beim Partitionieren: %1 + Error starting fat32format - Fehler beim Starten von fat32format + Error running fat32format: %1 - Fehler beim Verwenden von fat32format: %1 + Error determining new drive letter - Fehler beim Festlegen eines neuen Laufwerksbuchstabens + Invalid device: %1 - Ungültiges Gerät: %1 + Error formatting (through udisks2) - Fehler beim Formatieren (mit udisks2) + Error starting sfdisk - Fehler beim Starten von sfdisk + Partitioning did not create expected FAT partition %1 - Partitionierung hat nicht die erwartete FAT-partition %1 erstellt + Error starting mkfs.fat - Fehler beim Starten von mkfs.fat + Error running mkfs.fat: %1 - Fehler beim Verwenden von mkfs.fat: %1 + Formatting not implemented for this platform - Formatieren wird auf dieser Platform nicht unterstützt + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - Die Speicherkapazität ist nicht groß genug.<br>Sie muss mindestens %1 GB betragen. + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - Die Eingabedatei ist kein gültiges Disk-Image.<br>Die Dateigröße%1 Bytes ist kein Vielfaches von 512 Bytes. + - + Downloading and writing image - Image herunterladen und schreiben + - + Select image - Image wählen + - + Would you like to prefill the wifi password from the system keychain? - Möchten Sie das Wifi-Passwort aus dem System-Schlüsselbund vorab ausfüllen? + @@ -289,12 +243,12 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- opening image file - Abbilddatei wird geöffnet + Error opening image file - Fehler beim Öffnen der Imagedatei + @@ -302,22 +256,22 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- NO - NEIN + YES - JA + CONTINUE - WEITER + QUIT - BEENDEN + @@ -325,22 +279,22 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Advanced options - Erweiterte Optionen + Image customization options - OS-Modifizierungen + for this session only - Nur für diese Sitzung + to always use - Immer verwenden + @@ -360,83 +314,83 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Set hostname: - Hostname: + Set username and password - Benutzername und Passwort setzen: + Username: - Benutzername: + Password: - Passwort: + Configure wireless LAN - Wifi einrichten + SSID: - SSID: + Show password - Passwort anzeigen + Hidden SSID - Verborgene SSID + Wireless LAN country: - Wifi-Land: + Set locale settings - Spracheinstellungen festlegen + Time zone: - Zeitzone: + Keyboard layout: - Tastaturlayout: + Enable SSH - SSH aktivieren + Use password authentication - Password zur Authentifizierung verwenden + Allow public-key authentication only - Authentifizierung via Public-Key + Set authorized_keys for '%1': - authorized_keys für '%1': + @@ -446,38 +400,22 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Play sound when finished - Tonsignal nach Beenden abspielen + Eject media when finished - Medien nach Beenden auswerfen + Enable telemetry - Telemetry aktivieren + SAVE - SPEICHERN - - - Disable overscan - Overscan deaktivieren - - - Set password for '%1' user: - Passwort für '%1': - - - Skip first-run wizard - Einrichtungsassistent überspringen - - - Persistent settings - Dauerhafte Einstellungen + @@ -485,7 +423,7 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Internal SD card reader - Interner SD-Kartenleser + @@ -496,29 +434,29 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- - + Would you like to apply image customization settings? - - NO - NEIN - - - - NO, CLEAR SETTINGS - NEIN, EINSTELLUNGEN LÖSCHEN - - - - YES - JA - - - + EDIT SETTINGS - EINSTELLUNGEN BEARBEITEN + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -526,7 +464,7 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- Raspberry Pi Imager v%1 - Raspberry Pi Imager v%1 + @@ -545,65 +483,60 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- - - + + Operating System - Betriebssystem + - + CHOOSE OS - OS WÄHLEN + - + Select this button to change the operating system - Klicke auf diesen Knopf, um das Betriebssystem zu ändern + - - + + Storage - SD-Karte + - - + + CHOOSE STORAGE - SD-KARTE WÄHLEN + - - WRITE - SCHREIBEN - - - + Select this button to change the destination storage device - Klicken Sie auf diesen Knopf, um das Ziel-Speichermedium zu ändern + - + CANCEL WRITE - SCHREIBEN ABBRECHEN + - - + + Cancelling... - Abbrechen... + - + CANCEL VERIFY - VERIFIZIERUNG ABBRECHEN + - - - + + + Finalizing... - Finalisieren... + @@ -611,205 +544,187 @@ Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi- - + Select this button to start writing the image - Klicke auf diesen Knopf, um mit dem Schreiben zu beginnen + - - Select this button to access advanced settings - Klicken Sie auf diesen Knopf, um zu den erweiterten Einstellungen zu gelangen. - - - + Using custom repository: %1 - Verwende benutzerdefiniertes Repository: %1 + - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Language: - Sprache: - - - - Keyboard: - Tastatur: - - - - Pi model: - + + Keyboard: + + + + [ All ] - + Back - Zurück + - + Go back to main menu - Zurück zum Hauptmenü + - + Released: %1 - Veröffentlicht: %1 + - + Cached on your computer - Auf Ihrem Computer zwischengespeichert + - + Local file - Lokale Datei + - - Online - %1 GB download - Online - %1 GB Download - - - - - Mounted as %1 - Als %1 eingebunden - - - - [WRITE PROTECTED] - [SCHREIBGESCHÜTZT] - - - - Are you sure you want to quit? - Sind Sie sicher, dass Sie beenden möchten? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Der Raspberry Pi Imager ist noch beschäftigt. <br>Möchten Sie wirklich beenden? - - - - Warning - Warnung - - - - Preparing to write... - Schreiben wird vorbereitet... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Alle vorhandenen Daten auf '%1' werden gelöscht.<br>Möchten Sie wirklich fortfahren? - - - - Update available - Update verfügbar - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - Eine neuere Version von Imager ist verfügbar. <br>Möchten Sie die Webseite besuchen, um das Update herunterzuladen? - - - - Error downloading OS list from Internet - Fehler beim Herunterladen der Betriebssystemsliste aus dem Internet - - - - Writing... %1% - Schreiben... %1% - - - - Verifying... %1% - Verifizierung... %1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - Schreiben wird vorbereitet... (%1) + - + Error - Fehler + - + Write Successful - Schreiben erfolgreich + - - + + Erase - Löschen + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1</b> wurde geleert<br><br>Sie können die SD-Karte nun aus dem Lesegerät entfernen + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - <b>%1</b> wurde auf <b>%2</b> geschrieben<br><br>Sie können die SD-Karte nun aus dem Lesegerät entfernen + - + Error parsing os_list.json - Fehler beim Parsen von os_list.json + - + Format card as FAT32 - Karte als FAT32 formatieren + - + Use custom - Eigenes Image + - + Select a custom .img from your computer - Wählen Sie eine eigene .img-Datei von Ihrem Computer + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Verbinden Sie zuerst einen USB-Stick mit Images.<br>Die Images müssen sich im Wurzelverzeichnes des USB-Sticks befinden. + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - Die Speicherkarte ist schreibgeschützt.<br>Schieben Sie den Schutzschalter auf der linken Seite nach oben, und versuchen Sie es erneut. - - - Select this button to change the destination SD card - Klicke auf diesen Knopf, um die Ziel-SD-Karte zu ändern - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> wurde auf <b>%2</b> geschrieben + diff --git a/src/i18n/rpi-imager_en.ts b/src/i18n/rpi-imager_en.ts index 0a302ee..53a2b96 100644 --- a/src/i18n/rpi-imager_en.ts +++ b/src/i18n/rpi-imager_en.ts @@ -213,27 +213,27 @@ ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + Downloading and writing image - + Select image - + Would you like to prefill the wifi password from the system keychain? @@ -434,28 +434,28 @@ - + Would you like to apply image customization settings? - - NO - + + EDIT SETTINGS + - + NO, CLEAR SETTINGS - + YES - - EDIT SETTINGS + + NO @@ -473,73 +473,68 @@ - + CHOOSE DEVICE - + Select this button to choose your target Raspberry Pi - - + + Operating System - + CHOOSE OS - + Select this button to change the operating system - - + + Storage - - + + CHOOSE STORAGE - - WRITE - - - - + Select this button to change the destination storage device - + CANCEL WRITE - - + + Cancelling... - + CANCEL VERIFY - - - + + + Finalizing... @@ -549,195 +544,185 @@ - + Select this button to start writing the image - - Select this button to access advanced settings - - - - + Using custom repository: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Language: - + Keyboard: - - Pi model: - - - - + [ All ] - + Back - + Go back to main menu - + Released: %1 - + Cached on your computer - + Local file - + Online - %1 GB download - - - + + + Mounted as %1 - + [WRITE PROTECTED] - + Are you sure you want to quit? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Warning - + Preparing to write... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + Update available - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Error downloading OS list from Internet - + Writing... %1% - + Verifying... %1% - + Preparing to write... (%1) - + Error - + Write Successful - - + + Erase - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + Error parsing os_list.json - + Format card as FAT32 - + Use custom - + Select a custom .img from your computer - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. diff --git a/src/i18n/rpi-imager_es.ts b/src/i18n/rpi-imager_es.ts index 5e05324..746263c 100644 --- a/src/i18n/rpi-imager_es.ts +++ b/src/i18n/rpi-imager_es.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - Error extrayendo el archivo: %1 + Error mounting FAT32 partition - Error montando la partición FAT32 + Operating system did not mount FAT32 partition - El sistema operativo no montó la partición FAT32 + Error changing to directory '%1' - Error cambiando al directorio '%1' - - - Error writing to storage - Error escribiendo en la memoria + @@ -34,124 +30,124 @@ unmounting drive - desmontando unidad + opening drive - abriendo unidad + Error running diskpart: %1 - Error ejecutando diskpart: %1 + Error removing existing partitions - Error eliminando las particiones existentes + Authentication cancelled - Autenticación cancelada + Error running authopen to gain access to disk device '%1' - Error ejecutando authopen para acceder al dispositivo de disco '%1' + 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'). - Por favor, compruebe si 'Raspberry Pi Imager' tiene permitido el acceso a 'volúmenes extraíbles' en los ajustes de privacidad (en 'archivos y carpetas' o alternativamente dele 'acceso total al disco'). + Cannot open storage device '%1'. - No se puede abrir el dispositivo de almacenamiento '%1'. + discarding existing data on drive - descartando datos existentes en la unidad + zeroing out first and last MB of drive - poniendo a cero el primer y el último MB de la unidad + Write error while zero'ing out MBR - Error de escritura al poner a cero MBR + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Error de escritura al intentar poner a cero la última parte de la tarjeta.<br>La tarjeta podría estar anunciando una capacidad incorrecta (posible falsificación). + starting download - iniciando descarga + Error downloading: %1 - Error descargando: %1 + Access denied error while writing file to disk. - Error de acceso denegado escribiendo el archivo en el disco. + 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. - El acceso controlado a carpetas parece estar activado. Añada rpi-imager.exe y fat32format.exe a la lista de aplicaciones permitidas y vuelva a intentarlo. + Error writing file to disk - Error escribiendo el archivo en el disco + Download corrupt. Hash does not match - Descarga corrupta. El hash no coincide + Error writing to storage (while flushing) - Error escribiendo en la memoria (durante la limpieza) + Error writing to storage (while fsync) - Error escribiendo en el almacenamiento (mientras fsync) + Error writing first block (partition table) - Error escribiendo el primer bloque (tabla de particiones) + Error reading from storage.<br>SD card may be broken. - Error leyendo del almacenamiento.<br>La tarjeta SD puede estar rota. + Verifying write failed. Contents of SD card is different from what was written to it. - Error verificando la escritura. El contenido de la tarjeta SD es diferente del que se escribió en ella. + Customizing image - Personalizando imagen + @@ -161,85 +157,85 @@ Error partitioning: %1 - Error particionando: %1 + Error starting fat32format - Error iniciando fat32format + Error running fat32format: %1 - Error ejecutando fat32format: %1 + Error determining new drive letter - Error determinando la nueva letra de unidad + Invalid device: %1 - Dispositivo no válido: %1 + Error formatting (through udisks2) - Error formateando (a través de udisks2) + Error starting sfdisk - Error iniciando sfdisk + Partitioning did not create expected FAT partition %1 - El particionado no creó la partición FAT %1 esperada + Error starting mkfs.fat - Error iniciando mkfs.fat + Error running mkfs.fat: %1 - Error ejecutando mkfs.fat: %1 + Formatting not implemented for this platform - Formateo no implementado para esta plataforma + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - La capacidad de almacenamiento no es lo suficientemente grande.<br>Necesita ser de al menos %1 GB. + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - El archivo de entrada no es una imagen de disco válida.<br>El tamaño del archivo %1 bytes no es múltiplo de 512 bytes. + - + Downloading and writing image - Descargando y escribiendo imagen + - + Select image - Seleccionar imagen + - + Would you like to prefill the wifi password from the system keychain? - ¿Desea rellenar previamente la contraseña wifi desde el llavero del sistema? + @@ -247,12 +243,12 @@ opening image file - abriendo archivo de imagen + Error opening image file - Error abriendo archivo de imagen + @@ -260,22 +256,22 @@ NO - NO + YES - + CONTINUE - CONTINUAR + QUIT - SALIR + @@ -283,147 +279,143 @@ Advanced options - Opciones avanzadas + Image customization options - Opciones de personalización de imagen + for this session only - solo para esta sesión + to always use - para usar siempre + General - General + Services - Servicios + Options - Opciones + Set hostname: - Establecer nombre de anfitrión: + Set username and password - Establecer nombre de usuario y contraseña + Username: - Nombre de usuario: + Password: - Contraseña: + Configure wireless LAN - Configurar LAN inalámbrica + SSID: - SSID: + Show password - Mostrar contraseña + Hidden SSID - SSID oculta + Wireless LAN country: - País de LAN inalámbrica: + Set locale settings - Establecer ajustes regionales + Time zone: - Zona horaria: + Keyboard layout: - Distribución del teclado: + Enable SSH - Activar SSH + Use password authentication - Usar autenticación por contraseña + Allow public-key authentication only - Permitir solo la autenticación de clave pública + Set authorized_keys for '%1': - Establecer authorized_keys para '%1': + RUN SSH-KEYGEN - EJECUTAR SSH-KEYGEN + Play sound when finished - Reproducir sonido al finalizar + Eject media when finished - Expulsar soporte al finalizar + Enable telemetry - Activar telemetría + SAVE - GUARDAR - - - Persistent settings - Ajustes persistentes + @@ -431,7 +423,7 @@ Internal SD card reader - Lector de tarjetas SD interno + @@ -442,29 +434,29 @@ - + Would you like to apply image customization settings? - - NO - NO - - - - NO, CLEAR SETTINGS - NO, BORRAR AJUSTES - - - - YES - - - - + EDIT SETTINGS - EDITAR AJUSTES + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -472,7 +464,7 @@ Raspberry Pi Imager v%1 - Raspberry Pi Imager v%1 + @@ -491,65 +483,60 @@ - - + + Operating System - Sistema operativo + - + CHOOSE OS - ELEGIR SO + - + Select this button to change the operating system - Seleccione este botón para cambiar el sistema operativo + - - + + Storage - Almacenamiento + - - + + CHOOSE STORAGE - ELEGIR ALMACENAMIENTO + - - WRITE - ESCRIBIR - - - + Select this button to change the destination storage device - Seleccione este botón para cambiar el dispositivo de almacenamiento de destino + - + CANCEL WRITE - CANCELAR ESCRITURA + - - + + Cancelling... - Cancelando... + - + CANCEL VERIFY - CANCELAR VERIFICACIÓN + - - - + + + Finalizing... - Finalizando... + @@ -557,197 +544,187 @@ - + Select this button to start writing the image - Seleccione este botón para empezar a escribir la imagen + - - Select this button to access advanced settings - Seleccione este botón para acceder a los ajustes avanzados - - - + Using custom repository: %1 - Usando repositorio personalizado: %1 + - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - Navegación por teclado: <tab> navegar al botón siguiente <space> pulsar botón/seleccionar elemento <arrow up/down> subir/bajar en listas + - + Language: - Idioma: + - + Keyboard: - Teclado: + - - Pi model: - Modelo Pi: - - - + [ All ] - [ Todos ] + - + Back - Volver + - + Go back to main menu - Volver al menú principal + - + Released: %1 - Publicado: %1 + - + Cached on your computer - En caché en su ordenador + - + Local file - Archivo local + - - Online - %1 GB download - En línea - %1 GB descarga - - - - - Mounted as %1 - Montado como %1 - - - - [WRITE PROTECTED] - [PROTEGIDO CONTRA ESCRITURA] - - - - Are you sure you want to quit? - ¿Está seguro de que quiere salir? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imager sigue ocupado.<br>¿Está seguro de que quiere salir? - - - - Warning - Advertencia - - - - Preparing to write... - Preparando para escribir... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Se borrarán todos los datos existentes en '%1'.<br>¿Está seguro de que desea continuar? - - - - Update available - Actualización disponible - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - Hay una versión más reciente de Imager disponible.<br>¿Desea visitar el sitio web para descargarla? - - - - Error downloading OS list from Internet - Error al descargar la lista de sistemas operativos de Internet - - - - Writing... %1% - Escribiendo... %1% - - - - Verifying... %1% - Verificando... %1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - Preparando para escribir... (%1) + - + Error - Error + - + Write Successful - Escritura exitosa + - - + + Erase - Borrar + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1</b> se ha borrado<br><br>Ya puede retirar la tarjeta SD del lector + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - <b>%1</b> se ha escrito en <b>%2</b><br><br>Ya puede retirar la tarjeta SD del lector + - + Error parsing os_list.json - Error al parsear os_list.json + - + Format card as FAT32 - Formatear tarjeta como FAT32 + - + Use custom - Usar personalizado + - + Select a custom .img from your computer - Seleccione un .img personalizado de su ordenador + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Conecte primero una memoria USB que contenga imágenes.<br>Las imágenes deben estar ubicadas en la carpeta raíz de la memoria USB. + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - La tarjeta SD está protegida contra escritura.<br>Pulse hacia arriba el interruptor de bloqueo situado en el lado izquierdo de la tarjeta y vuelva a intentarlo. + diff --git a/src/i18n/rpi-imager_fr.ts b/src/i18n/rpi-imager_fr.ts index 20ff127..b57e2dd 100644 --- a/src/i18n/rpi-imager_fr.ts +++ b/src/i18n/rpi-imager_fr.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - Erreur lors de l'extraction de l'archive : %1 + Error mounting FAT32 partition - Erreur lors du montage de la partition FAT32 + Operating system did not mount FAT32 partition - Le système d'exploitation n'a pas monté la partition FAT32 + Error changing to directory '%1' - Erreur lors du changement du répertoire '%1' - - - Error writing to storage - Erreur d'écriture dans le stockage + @@ -34,160 +30,124 @@ unmounting drive - démontage du disque + opening drive - ouverture du disque + Error running diskpart: %1 - Erreur lors de l'exécution de diskpart : %1 + Error removing existing partitions - Erreur lors de la suppression des partitions existantes + Authentication cancelled - Authentification annulée + Error running authopen to gain access to disk device '%1' - Erreur lors de l'exécution d'authopen pour accéder au périphérique du stockage '%1' + 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'). - Veuillez vérifier dans les réglages de confidentialité (sous 'fichiers et dossiers') si 'Raspberry Pi Imager' est autorisé à accéder aux volumes amovibles (ou bien donnez-lui accès complet au disque). + Cannot open storage device '%1'. - Impossible d'ouvrir le périphérique de stockage '%1'. + discarding existing data on drive - suppression des données existantes sur le disque + zeroing out first and last MB of drive - mise à zéro du premier et du dernier Mo du disque + Write error while zero'ing out MBR - Erreur d'écriture lors du formatage du MBR + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - 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). + starting download - début du téléchargement + Error downloading: %1 - Erreur de téléchargement : %1 + Access denied error while writing file to disk. - Accès refusé lors de l'écriture d'un fichier sur le disque. + 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. - L'accès contrôlé aux dossiers semble être activé. Veuillez ajouter rpi-imager.exe et fat32format.exe à la liste des applications autorisées et réessayez. + Error writing file to disk - Erreur d'écriture de fichier sur le disque + Download corrupt. Hash does not match - Téléchargement corrompu. La signature ne correspond pas + Error writing to storage (while flushing) - Erreur d'écriture dans le stockage (lors du formatage) + Error writing to storage (while fsync) - Erreur d'écriture dans le stockage (pendant l'exécution de fsync) + Error writing first block (partition table) - Erreur lors de l'écriture du premier bloc (table de partition) + Error reading from storage.<br>SD card may be broken. - Erreur de lecture du stockage.<br>La carte SD est peut-être défectueuse. + Verifying write failed. Contents of SD card is different from what was written to it. - La vérification de l'écriture à échoué. Le contenu de la carte SD est différent de ce qui y a été écrit. + Customizing image - Personnalisation de l'image - - - Waiting for FAT partition to be mounted - En attente du montage de la partition FAT - - - Error mounting FAT32 partition - Erreur lors du montage de la partition FAT32 - - - Operating system did not mount FAT32 partition - Le système d'exploitation n'a pas monté la partition FAT32 - - - Unable to customize. File '%1' does not exist. - Impossible de personnaliser. Le fichier '%1' n'existe pas. - - - Error creating firstrun.sh on FAT partition - Erreur lors de la création de firstrun.sh sur la partition FAT - - - Error writing to config.txt on FAT partition - Erreur lors de la création de config.txt sur la partition FAT - - - Error creating user-data cloudinit file on FAT partition - Erreur lors de la création du fichier user-data cloudinit sur la partition FAT - - - Error creating network-config cloudinit file on FAT partition - Erreur lors de la création du fichier network-config cloudinit sur la partition FAT - - - Error writing to cmdline.txt on FAT partition - Erreur lors de l'écriture de cmdline.txt sur la partition FAT + @@ -197,85 +157,85 @@ Error partitioning: %1 - Erreur de partitionnement : %1 + Error starting fat32format - Erreur lors du démarrage de fat32format + Error running fat32format: %1 - Erreur lors de l'exécution de fat32format : %1 + Error determining new drive letter - Erreur lors de la détermination de la nouvelle lettre du stockage + Invalid device: %1 - Périphérique non valide : %1 + Error formatting (through udisks2) - Erreur de formatage (via udisks2) + Error starting sfdisk - Erreur lors du démarrage de sfdisk + Partitioning did not create expected FAT partition %1 - Le partitionnement n'a pas créé la partition FAT %1 attendue + Error starting mkfs.fat - Erreur lors du démarrage de mkfs.fat + Error running mkfs.fat: %1 - Erreur lors de l'exécution de mkfs.fat : %1 + Formatting not implemented for this platform - Formatage non implémenté pour cette plateforme + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - La capacité de stockage n'est pas assez grande.<br>Elle doit être d'au moins %1 Go. + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - 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. + - + Downloading and writing image - Téléchargement et écriture de l'image + - + Select image - Sélectionner l'image + - + Would you like to prefill the wifi password from the system keychain? - Voulez-vous pré-remplir le mot de passe Wi-Fi à partir du trousseau du système ? + @@ -283,12 +243,12 @@ opening image file - ouverture de l'image disque + Error opening image file - Erreur lors de l'ouverture de l'image disque + @@ -296,22 +256,22 @@ NO - NON + YES - OUI + CONTINUE - CONTINUER + QUIT - QUITTER + @@ -319,22 +279,22 @@ Advanced options - Réglages avancés + Image customization options - Options de personnalisation de l'image + for this session only - pour cette session uniquement + to always use - pour toutes les sessions + @@ -354,83 +314,83 @@ Set hostname: - Nom d'hôte + Set username and password - Définir nom d'utilisateur et mot de passe + Username: - Nom d'utilisateur : + Password: - Mot de passe : + Configure wireless LAN - Configurer le Wi-Fi + SSID: - SSID : + Show password - Afficher le mot de passe + Hidden SSID - SSID caché + Wireless LAN country: - Pays Wi-Fi : + Set locale settings - Définir les réglages locaux + Time zone: - Fuseau horaire : + Keyboard layout: - Type de clavier : + Enable SSH - Activer SSH + Use password authentication - Utiliser un mot de passe pour l'authentification + Allow public-key authentication only - Authentification via clef publique + Set authorized_keys for '%1': - Définir authorized_keys pour '%1' : + @@ -440,26 +400,22 @@ Play sound when finished - Jouer un son quand terminé + Eject media when finished - Éjecter le média quand terminé + Enable telemetry - Activer la télémétrie + SAVE - ENREGISTRER - - - Persistent settings - Réglages permanents + @@ -467,7 +423,7 @@ Internal SD card reader - Lecteur de carte SD interne + @@ -478,29 +434,29 @@ - + Would you like to apply image customization settings? - - NO - NON - - - - NO, CLEAR SETTINGS - NON, EFFACER LES RÉGLAGES - - - - YES - OUI - - - + EDIT SETTINGS - MODIFIER RÉGLAGES + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -508,7 +464,7 @@ Raspberry Pi Imager v%1 - Raspberry Pi Imager v%1 + @@ -527,65 +483,60 @@ - - + + Operating System - Système d'exploitation + - + CHOOSE OS - CHOISIR L'OS + - + Select this button to change the operating system - Sélectionner ce bouton pour changer le système d'exploitation + - - + + Storage - Stockage + - - + + CHOOSE STORAGE - CHOISIR LE STOCKAGE + - - WRITE - ÉCRIRE - - - + Select this button to change the destination storage device - Sélectionner ce bouton pour modifier le périphérique de stockage de destination + - + CANCEL WRITE - ANNULER L'ÉCRITURE + - - + + Cancelling... - Annulation... + - + CANCEL VERIFY - ANNULER LA VÉRIFICATION + - - - + + + Finalizing... - Finalisation... + @@ -593,205 +544,187 @@ - + Select this button to start writing the image - Sélectionner ce bouton pour commencer l'écriture de l'image - - - - Select this button to access advanced settings - Sélectionner ce bouton pour accéder aux réglages avancés - - - - Using custom repository: %1 - Utilisation d'un dépôt personnalisé : %1 - - - - Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - Navigation au clavier : <tab> passer au bouton suivant <espace> presser un bouton/sélectionner un élément <flèche haut/bas> monter/descendre dans les listes - - - - Language: - Langue : - - - - Keyboard: - Clavier : - - - - Pi model: - + + Using custom repository: %1 + + + + + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists + + + + + Language: + + + + + Keyboard: + + + + [ All ] - + Back - Retour + - + Go back to main menu - Retour au menu principal + - + Released: %1 - Publié le : %1 + - + Cached on your computer - Mis en cache sur votre ordinateur + - + Local file - Fichier local + - - Online - %1 GB download - En ligne - %1 GO à télécharger - - - - - Mounted as %1 - Monté sur %1 - - - - [WRITE PROTECTED] - [PROTÉGÉ EN ÉCRITURE] - - - - Are you sure you want to quit? - Voulez-vous vraiment quitter ? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imager est encore occupé.<br>Voulez-vous vraiment quitter ? - - - - Warning - Attention - - - - Preparing to write... - Préparation de l'écriture... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Toutes les données sur le périphérique de stockage '%1' vont être supprimées.<br>Voulez-vous vraiment continuer ? - - - - Update available - Mise à jour disponible - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - Une version plus récente d'Imager est disponible.<br>Voulez-vous accéder au site web pour la télécharger ? - - - - Error downloading OS list from Internet - Erreur lors du téléchargement de la liste des systèmes d'exploitation à partir d'Internet - - - - Writing... %1% - Écriture... %1% - - - - Verifying... %1% - Vérification... %1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - Préparation de l'écriture... (%1) + - + Error - Erreur + - + Write Successful - Écriture réussie + - - + + Erase - Effacer + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1</b> a bien été effacé<br><br>Vous pouvez retirer la carte SD du lecteur + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - <b>%1</b> a bien été écrit sur <b>%2</b><br><br>Vous pouvez retirer la carte SD du lecteur + - + Error parsing os_list.json - Erreur de lecture du fichier os_list.json + - + Format card as FAT32 - Formater la carte SD en FAT32 + - + Use custom - Utiliser image personnalisée + - + Select a custom .img from your computer - Sélectionner une image disque personnalisée (.img) sur votre ordinateur + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Connecter d'abord une clé USB contenant les images.<br>Les images doivent se trouver dans le dossier racine de la clé USB. + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - La carte SD est protégée en écriture.<br>Poussez vers le haut le commutateur de verrouillage sur le côté gauche de la carte et essayez à nouveau. - - - Select this button to change the destination SD card - Sélectionnez ce bouton pour changer la carte SD de destination - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> a bien été écrit sur <b>%2</b> + diff --git a/src/i18n/rpi-imager_it.ts b/src/i18n/rpi-imager_it.ts index 24bedab..f443d13 100644 --- a/src/i18n/rpi-imager_it.ts +++ b/src/i18n/rpi-imager_it.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - Errore estrazione archivio: %1 + Error mounting FAT32 partition - Errore montaggio partizione FAT32 + Operating system did not mount FAT32 partition - Il sistema operativo non ha montato la partizione FAT32 + Error changing to directory '%1' - Errore passaggio a cartella '%1' - - - Error writing to storage - Errore scrittura nello storage + @@ -34,161 +30,124 @@ unmounting drive - smontaggio unità + opening drive - apertura unità + Error running diskpart: %1 - Errore esecuzione diskpart: %1 + Error removing existing partitions - Errore rimozione partizioni esistenti + Authentication cancelled - Autenticazione annullata + Error running authopen to gain access to disk device '%1' - Errore esecuzione auhopen per ottenere accesso al dispositivo disco %1 + 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'). - 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'). + Cannot open storage device '%1'. - Impossibile aprire dispositivo storage '%1'. + discarding existing data on drive - elimina i dati esistenti nell'unità + zeroing out first and last MB of drive - azzera il primo e l'ultimo MB dell'unità + Write error while zero'ing out MBR - Errore scrittura durante azzeramento MBR + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - 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). + starting download - avvio download + Error downloading: %1 - Errore download: %1 + Access denied error while writing file to disk. - Errore accesso negato durante la scrittura del file su disco. + 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. - Sembra sia abilitato l'accesso controllato alle cartelle. -Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all'elenco delle app consentite e riprova. + Error writing file to disk - Errore scrittura file su disco + Download corrupt. Hash does not match - Download corrotto.<br>L'hash non corrisponde + Error writing to storage (while flushing) - Errore scrittura nello storage (durante flushing) + Error writing to storage (while fsync) - Errore scrittura nello storage (durante fsync) + Error writing first block (partition table) - Errore scrittura primo blocco (tabella partizione) + Error reading from storage.<br>SD card may be broken. - Errore lettura dallo storage.<br>La scheda SD potrebbe essere danneggiata. + Verifying write failed. Contents of SD card is different from what was written to it. - Verifica scrittura fallita.<br>Il contenuto della SD è differente da quello che vi è stato scritto. + Customizing image - Personalizza immagine - - - Waiting for FAT partition to be mounted - Attesa montaggio partizione FAT - - - Error mounting FAT32 partition - Errore montaggio partizione FAT32 - - - Operating system did not mount FAT32 partition - Il sistema operativo non ha montato la partizione FAT32 - - - Unable to customize. File '%1' does not exist. - Impossibile personalizzare. Il file '%1' non esiste. - - - Error creating firstrun.sh on FAT partition - Errore creazione firstrun.sh nella partizione FAT - - - Error writing to config.txt on FAT partition - Errore scrittura in config.txt nella partizione FAT - - - Error creating user-data cloudinit file on FAT partition - Errore nel creare il file cloudinit dei dati utente nella partizione FAT - - - Error creating network-config cloudinit file on FAT partition - Errore durante la creazione del file network-config cloudinit nella partizione FAT - - - Error writing to cmdline.txt on FAT partition - Errore scrittura in cmdline.txt nella partizione FAT + @@ -198,85 +157,85 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos Error partitioning: %1 - Errore partizionamento: %1 + Error starting fat32format - Errore avvio fat32format + Error running fat32format: %1 - Errore esecuzione fat32format: %1 + Error determining new drive letter - Errore determinazione nuova lettera unità + Invalid device: %1 - Dispositivo non valido: %1 + Error formatting (through udisks2) - Errore formattazione (attraverso udisk2) + Error starting sfdisk - Errore avvio sfdisk + Partitioning did not create expected FAT partition %1 - Il partizionamento non ha creato la partizione FAT prevista %1 + Error starting mkfs.fat - Errore avvio mkfs.fat + Error running mkfs.fat: %1 - Errore esecuzione mkfs.fat: %1 + Formatting not implemented for this platform - Formattazione non implementata per questa piattaforma + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - La capacità dello storage non è sufficiente.<br>Sono necessari almeno %1 GB. + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - Il file sorgente non è un'immagine disco valida.<br>La dimensione file %1 non è un multiplo di 512 byte. + - + Downloading and writing image - Download e scrittura file immagine + - + Select image - Seleziona file immagine + - + Would you like to prefill the wifi password from the system keychain? - Vuoi precompilare la password WiFi usando il portachiavi di sistema? + @@ -284,12 +243,12 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos opening image file - apertura file immagine + Error opening image file - Errore durante l'apertura del file immagine + @@ -297,22 +256,22 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos NO - NO + YES - SI + CONTINUE - CONTINUA + QUIT - ESCI + @@ -320,163 +279,143 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos Advanced options - Opzioni avanzate + Image customization options - Opzioni personalizzazione immagine + for this session only - solo per questa sessione + to always use - da usare sempre + General - Generale + Services - Servizi + Options - Opzioni + Set hostname: - Imposta nome host: + Set username and password - Imposta nome utente e password + Username: - Nome utente: + Password: - Password: + Configure wireless LAN - Configura WiFi + SSID: - SSID: + Show password - Visualizza password + Hidden SSID - SSID nascosto + Wireless LAN country: - Nazione WiFi: + Set locale settings - Imposta configurazioni locali + Time zone: - Fuso orario: + Keyboard layout: - Layout tastiera: + Enable SSH - Abilita SSH + Use password authentication - Usa password autenticazione + Allow public-key authentication only - Permetti solo autenticazione con chiave pubblica + Set authorized_keys for '%1': - Imposta authorized_keys per '%1': + RUN SSH-KEYGEN - ESEGUI SSH-KEYGEN + Play sound when finished - Riproduci suono quando completato + Eject media when finished - Espelli media quando completato + Enable telemetry - Abilita telemetria + SAVE - SALVA - - - Disable overscan - Disabilita overscan - - - Set password for 'pi' user: - Imposta password utente 'pi': - - - Set authorized_keys for 'pi': - Imposta authorized_key per 'pi': - - - Skip first-run wizard - Salta procedura prima impostazione - - - Persistent settings - Impostazioni persistenti + @@ -484,7 +423,7 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos Internal SD card reader - Lettore scheda SD interno + @@ -495,29 +434,29 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos - + Would you like to apply image customization settings? - - NO - NO - - - - NO, CLEAR SETTINGS - NO, AZZERA IMPOSTAZIONI - - - - YES - SI' - - - + EDIT SETTINGS - MODIFICA IMPOSTAZIONI + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -525,7 +464,7 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos Raspberry Pi Imager v%1 - Raspberry Pi Imager v. %1 + @@ -544,65 +483,60 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos - - + + Operating System - Sistema operativo + - + CHOOSE OS - SCEGLI S.O. + - + Select this button to change the operating system - Seleziona questo pulsante per modificare il sistema operativo scelto + - - + + Storage - Scheda SD + - - + + CHOOSE STORAGE - SCEGLI SCHEDA SD + - - WRITE - SCRIVI - - - + Select this button to change the destination storage device - Seleziona questo pulsante per modificare il dispositivo archiviazione destinazione + - + CANCEL WRITE - ANNULLA SCRITTURA + - - + + Cancelling... - Annullamento... + - + CANCEL VERIFY - ANNULLA VERIFICA + - - - + + + Finalizing... - Finalizzazione... + @@ -610,205 +544,187 @@ Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all&apos - + Select this button to start writing the image - Seleziona questo pulsante per avviare la scrittura del file immagine + - - Select this button to access advanced settings - Seleziona questo pulsante per accedere alle impostazioni avanzate - - - + Using custom repository: %1 - Usa repository personalizzato: %1 + - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - Navigazione da tastiera: <tab> vai al prossimo pulsante <spazio> premi il pulsante/seleziona la voce <freccia su/giù> vai su/giù negli elenchi + - + Language: - Lingua: + - + Keyboard: - Tastiera: + - - Pi model: - Modello Pi: - - - + [ All ] - [ Tutti ] + - + Back - Indietro + - + Go back to main menu - Torna al menu principale + - + Released: %1 - Rilasciato: %1 + - + Cached on your computer - Memorizzato temporaneamente nel computer + - + Local file - File locale + - - Online - %1 GB download - Online - Download %1 GB - - - - - Mounted as %1 - Montato come %1 - - - - [WRITE PROTECTED] - [PROTETTA DA SCRITTURA] - - - - Are you sure you want to quit? - Sei sicuro di voler uscire? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Image è occupato.<br>Sei sicuro di voler uscire? - - - - Warning - Attenzione - - - - Preparing to write... - Preparazione scrittura... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Tutti i dati esistenti in '%1' verranno eliminati.<br>Sei sicuro di voler continuare? - - - - Update available - Aggiornamento disponibile - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - È disponibile una nuova versione di Imager.<br>Vuoi visitare il sito web per scaricare la nuova versione? - - - - Error downloading OS list from Internet - Errore durante download elenco SO da internet - - - - Writing... %1% - Scrittura...%1 - - - - Verifying... %1% - Verifica...%1 + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - Preparazione scrittura... (%1) + - + Error - Errore + - + Write Successful - Scrittura completata senza errori + - - + + Erase - Cancella + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - Azzeramento di <b>%1</b> completato<br><br>Ora puoi rimuovere la scheda SD dal lettore + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - Scrittura di <b>%1</b> in <b>%2</b>completata<br><br>Ora puoi rimuovere la scheda SD dal lettore + - + Error parsing os_list.json - Errore durante analisi file os_list.json + - + Format card as FAT32 - Formatta scheda come FAT32 + - + Use custom - Usa immagine personalizzata + - + Select a custom .img from your computer - Seleziona un file immagine .img personalizzato + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Prima collega una chiavetta USB contenente il file immagine.<br>Il file immagine deve essere presente nella cartella principale della chiavetta USB. + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - La scheda SD è protetta da scrittura.<br>Sposta verso l'alto l'interruttore LOCK sul lato sinistro della scheda SD e riprova. - - - Select this button to change the destination SD card - Seleziona questo pulsante per modificare la scheda SD destinazione - - - <b>%1</b> has been written to <b>%2</b> - Scrittura di <b>%1</b> in <b>%2</b>completata + diff --git a/src/i18n/rpi-imager_ja.ts b/src/i18n/rpi-imager_ja.ts index 20e4acc..8b70d03 100644 --- a/src/i18n/rpi-imager_ja.ts +++ b/src/i18n/rpi-imager_ja.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - アーカイブを展開するのに失敗しました + Error mounting FAT32 partition - FAT32パーティションをマウントできませんでした + Operating system did not mount FAT32 partition - OSがFAT32パーティションをマウントしませんでした + Error changing to directory '%1' - カレントディレクトリを%1に変更できませんでした - - - Error writing to storage - ストレージに書き込むのに失敗しました + @@ -39,155 +35,119 @@ opening drive - デバイスを開いています + Error running diskpart: %1 - diskpartの実行に失敗しました: %1 + Error removing existing partitions - 既に有るパーティションを削除する際にエラーが発生しました。 + Authentication cancelled - 認証がキャンセルされました + Error running authopen to gain access to disk device '%1' - ディスク%1にアクセスするための権限を取得するためにauthopenを実行するのに失敗しました + 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'). - Raspberry Pi Imagerがリムーバブルボリュームへアクセスすることがプライバシー設定(「ファイルとフォルダー」の中、またはディスクへのすべてのアクセス権限を付与する)で許可されているかを確認してください。 + Cannot open storage device '%1'. - ストレージを開けませんでした。 + discarding existing data on drive - ドライブの現存するすべてのデータを破棄します + zeroing out first and last MB of drive - ドライブの最初と最後のMBを削除しています + Write error while zero'ing out MBR - MBRを削除している際にエラーが発生しました。 + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - カードの最後のパートを0で書き込む際書き込みエラーが発生しました。カードが示している容量と実際のカードの容量が違う可能性があります。 + starting download - ダウンロードを開始中 + Error downloading: %1 - %1をダウンロードする際エラーが発生しました + Access denied error while writing file to disk. - ディスクにファイルを書き込む際にアクセスが拒否されました。 + 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. - フォルダーへのアクセスが制限されています。許可されたアプリにrpi-imager.exeとfat32format.exeを入れてもう一度お試しください。 + Error writing file to disk - ファイルをディスクに書き込んでいる際にエラーが発生しました + Download corrupt. Hash does not match - ダウンロードに失敗しました。ハッシュ値が一致していません。 + Error writing to storage (while flushing) - ストレージへの書き込み中にエラーが発生しました (フラッシング中) + Error writing to storage (while fsync) - ストレージへの書き込み中にエラーが発生しました(fsync中) + Error writing first block (partition table) - 最初のブロック(パーティションテーブル)を書き込み中にエラーが発生しました + Error reading from storage.<br>SD card may be broken. - ストレージを読むのに失敗しました。SDカードが壊れている可能性があります。 + Verifying write failed. Contents of SD card is different from what was written to it. - 確認中にエラーが発生しました。書き込んだはずのデータが実際にSDカードに記録されたデータと一致していません。 + Customizing image - イメージをカスタマイズしています - - - Waiting for FAT partition to be mounted - FATパーティションがマウントされるのを待っています - - - Error mounting FAT32 partition - FAT32パーティションをマウントする際にエラーが発生しました。 - - - Operating system did not mount FAT32 partition - OSがFAT32パーティションをマウントしませんでした。 - - - Unable to customize. File '%1' does not exist. - カスタマイズできません。%1が存在しません。 - - - Error creating firstrun.sh on FAT partition - FATパーティションにfirstrun.shを作成する際にエラーが発生しました - - - Error writing to config.txt on FAT partition - FATパーティションにconfig.txtを書き込むときにエラーが発生しました - - - Error creating user-data cloudinit file on FAT partition - FATパーティションにCloud-initのuser-dataファイル名前を作成するときにエラーが発生しました - - - Error creating network-config cloudinit file on FAT partition - FATパーティションにCloud-initのnetwork-configファイルを作成するときにエラーが発生しました - - - Error writing to cmdline.txt on FAT partition - FATパーティションにcmdline.txtを書き込む際にエラーが発生しました + @@ -197,85 +157,85 @@ Error partitioning: %1 - パーティショニングに失敗しました: %1 + Error starting fat32format - fat32formatを開始中にエラーが発生しました + Error running fat32format: %1 - fat32formatを実行中にエラーが発生しました + Error determining new drive letter - 新しいドライブレターを判断している際にエラーが発生しました + Invalid device: %1 - 不適切なデバイス: %1 + Error formatting (through udisks2) - udisk2を介してフォーマットするのに失敗しました + Error starting sfdisk - sfdiskを開始中にエラーが発生しました + Partitioning did not create expected FAT partition %1 - パーティショニングが想定したFATパーティション %1を作りませんでした + Error starting mkfs.fat - mkfs.fatを開始中にエラーが発生しました + Error running mkfs.fat: %1 - mkfs.fatを実行中にエラーが発生しました: %1 + Formatting not implemented for this platform - このプラットフォームではフォーマットできません。 + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - ストレージの容量が足りません。少なくとも%1GBは必要です。 + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - 入力されたファイルは適切なディスクイメージファイルではありません。ファイルサイズの%1は512バイトの倍数ではありません。 + - + Downloading and writing image - イメージをダウンロードして書き込んでいます + - + Select image - イメージを選ぶ + - + Would you like to prefill the wifi password from the system keychain? - Wifiのパスワードをシステムのキーチェーンから読み取って設定しますか? + @@ -283,12 +243,12 @@ opening image file - イメージファイルを開いています + Error opening image file - イメージファイルを開く際にエラーが発生しました + @@ -296,22 +256,22 @@ NO - いいえ + YES - はい + CONTINUE - 続ける + QUIT - やめる + @@ -319,22 +279,22 @@ Advanced options - 詳細な設定 + Image customization options - カスタマイズオプション + for this session only - このセッションでのみ有効にする + to always use - いつも使う設定にする + @@ -354,83 +314,83 @@ Set hostname: - ホスト名: + Set username and password - ユーザー名とパスワードを設定する + Username: - ユーザー名 + Password: - パスワード: + Configure wireless LAN - Wi-Fiを設定する + SSID: - SSID: + Show password - パスワードを見る + Hidden SSID - ステルスSSID + Wireless LAN country: - Wifiを使う国: + Set locale settings - ロケール設定をする + Time zone: - タイムゾーン: + Keyboard layout: - キーボードレイアウト: + Enable SSH - SSHを有効化する + Use password authentication - パスワード認証を使う + Allow public-key authentication only - 公開鍵認証のみを許可する + Set authorized_keys for '%1': - ユーザー%1のためのauthorized_keys + @@ -440,34 +400,22 @@ Play sound when finished - 終わったときに音を鳴らす + Eject media when finished - 終わったときにメディアを取り出す + Enable telemetry - テレメトリーを有効化する + SAVE - 保存 - - - Disable overscan - オーバースキャンを無効化する - - - Skip first-run wizard - 最初のセットアップウィザートをスキップする - - - Persistent settings - 永続的な設定 + @@ -475,7 +423,7 @@ Internal SD card reader - SDカードリーダー + @@ -486,29 +434,29 @@ - + Would you like to apply image customization settings? - - NO - いいえ - - - - NO, CLEAR SETTINGS - いいえ、設定をクリアする - - - - YES - はい - - - + EDIT SETTINGS - 設定を編集する + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -516,7 +464,7 @@ Raspberry Pi Imager v%1 - Raspberry Pi Imager v%1 + @@ -535,65 +483,60 @@ - - + + Operating System - OS + - + CHOOSE OS - OSを選ぶ + - + Select this button to change the operating system - OSを変更するにはこのボタンを押してください + - - + + Storage - ストレージ + - - + + CHOOSE STORAGE - ストレージを選ぶ + - - WRITE - 書き込む - - - + Select this button to change the destination storage device - 書き込み先のストレージデバイスを選択するにはこのボタンを押してください + - + CANCEL WRITE - 書き込みをキャンセル + - - + + Cancelling... - キャンセル中です... + - + CANCEL VERIFY - 確認をやめる + - - - + + + Finalizing... - 最終処理をしています... + @@ -601,201 +544,187 @@ - + Select this button to start writing the image - 書き込みをスタートさせるにはこのボタンを押してください - - - - Select this button to access advanced settings - 詳細な設定を変更するのならこのボタンを押してください - - - - Using custom repository: %1 - カスタムレポジトリを使います: %1 - - - - Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - キーボードの操作: 次のボタンに移動する→Tabキー ボタンを押す/選択する→Spaceキー 上に行く/下に行く→矢印キー(上下) - - - - Language: - 言語: - - - - Keyboard: - キーボード: - - - - Pi model: - + + Using custom repository: %1 + + + + + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists + + + + + Language: + + + + + Keyboard: + + + + [ All ] - + Back - 戻る + - + Go back to main menu - メインメニューへ戻る + - + Released: %1 - リリース日時: %1 + - + Cached on your computer - コンピュータにキャッシュされたファイル + - + Local file - ローカルファイル + - - Online - %1 GB download - インターネットからダウンロードする (%1GB) - - - - - Mounted as %1 - %1としてマウントされています - - - - [WRITE PROTECTED] - [書き込み禁止] - - - - Are you sure you want to quit? - 本当にやめますか? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imagerは現在まだ処理中です。<bt>本当にやめますか? - - - - Warning - 警告 - - - - Preparing to write... - 書き込み準備中... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - %1に存在するすべてのデータは完全に削除されます。本当に続けますか? - - - - Update available - アップデートがあります - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - 新しいバージョンのImagerがあります。<br>ダウンロードするためにウェブサイトに行きますか? - - - - Error downloading OS list from Internet - OSのリストをダウンロードする際にエラーが発生しました。 - - - - Writing... %1% - 書き込み中... %1% - - - - Verifying... %1% - 確認中... %1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - 書き込み準備中... (%1) + - + Error - エラー + - + Write Successful - 書き込みが正常に終了しました + - - + + Erase - 削除 + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b%gt;%1</b> は削除されました。<br><bt>SDカードをSDカードリーダーから取り出しても良いです。 + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - <b>%1</b> は<b>%2</b>に書き込まれました。<br><br>SDカードをSDカードリーダーから取り出しても良いです。 + - + Error parsing os_list.json - os_list.jsonの処理中にエラーが発生しました + - + Format card as FAT32 - カードをFAT32でフォーマットする + - + Use custom - カスタムイメージを使う + - + Select a custom .img from your computer - 自分で用意したイメージファイルを使う + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - 最初にイメージファイルがあるUSBメモリを接続してください。<br>イメージファイルはUSBメモリの一番上(ルートフォルダー)に入れてください。 + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - SDカードは書き込みが制限されています。<br>カードの左上にあるロックスイッチを上げてロックを解除し、もう一度お試しください。 - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> は<b>%2</b>に書き込まれました。 + diff --git a/src/i18n/rpi-imager_ko.ts b/src/i18n/rpi-imager_ko.ts index e1a36f3..141fc83 100644 --- a/src/i18n/rpi-imager_ko.ts +++ b/src/i18n/rpi-imager_ko.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - 보관 파일 추출 오류: %1 + Error mounting FAT32 partition - FAT32 파티션 마운트 오류 + Operating system did not mount FAT32 partition - 운영 체제에서 FAT32 파티션을 마운트하지 않음 + Error changing to directory '%1' - 디렉토리 변경 오류 '%1' - - - Error writing to storage - 저장소에 쓰는 중 오류 발생 + @@ -34,160 +30,124 @@ unmounting drive - 드라이브 마운트 해제 + opening drive - 드라이브 열기 + Error running diskpart: %1 - 디스크 파트를 실행하는 동안 오류 발생 : %1 + Error removing existing partitions - 기존 파티션 제거 오류 + Authentication cancelled - 인증 취소됨 + Error running authopen to gain access to disk device '%1' - 디스크 디바이스에 대한 액세스 권한을 얻기 위해 authopen을 실행하는 중 오류 발생 '%1' + 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'). - 'Raspberry Pi Imager'가 개인 정보 설정('파일 및 폴더'에서 또는 '전체 디스크 액세스'를 부여)에서 '제거 가능한 볼륨'에 액세스할 수 있는지 확인하세요. + Cannot open storage device '%1'. - 저장 장치를 열 수 없습니다 '%1'. + discarding existing data on drive - 드라이브의 기존 데이터 삭제 + zeroing out first and last MB of drive - 드라이브의 처음과 마지막 MB를 비웁니다. + Write error while zero'ing out MBR - MBR을 zero'ing out 하는 동안 쓰기 오류 발생 + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - SD card의 마지막 부분을 비워내는 동안 오류가 발생했습니다.<br>카드가 잘못된 용량을 표기하고 있을 수 있습니다(위조 품목). + starting download - 다운로드 시작 + Error downloading: %1 - 다운로드 중 오류: %1 + Access denied error while writing file to disk. - 디스크에 파일을 쓰는 동안 액세스 거부 오류가 발생했습니다. + 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. - 제어된 폴더 액세스가 설정된 것 같습니다. rpi-imager.exe 및 fat32format.exe를 허용된 앱 리스트에서 추가하고 다시 시도하십시오. + Error writing file to disk - 디스크에 파일 쓰기 오류 + Download corrupt. Hash does not match - 다운로드가 손상되었습니다. 해시가 일치하지 않습니다. + Error writing to storage (while flushing) - 저장소에 쓰는 중 오류 발생(flushing..) + Error writing to storage (while fsync) - 스토리지에 쓰는 중 오류 발생(fsync..) + Error writing first block (partition table) - 첫 번째 블록을 쓰는 중 오류 발생 (파티션 테이블) + Error reading from storage.<br>SD card may be broken. - 저장소에서 읽는 동안 오류가 발생했습니다.<br>SD 카드가 고장 났을 수 있습니다. + Verifying write failed. Contents of SD card is different from what was written to it. - 쓰기를 확인하지 못했습니다. SD카드 내용과 쓰인 내용이 다릅니다. + Customizing image - 이미지 사용자 정의 - - - Waiting for FAT partition to be mounted - FAT 파티션이 마운트되기를 기다리는 중 - - - Error mounting FAT32 partition - FAT32 파티션 마운트 오류 - - - Operating system did not mount FAT32 partition - 운영 체제 FAT32 파티션이 마운트되지 않았습니다. - - - Unable to customize. File '%1' does not exist. - 지정할 수 없습니다. 파일이 '%1' 존재하지 않습니다. - - - Error creating firstrun.sh on FAT partition - FAT 파티션에 firstrun.sh을 만드는 동안 오류 발생 - - - Error writing to config.txt on FAT partition - FAT 파티션에 config.txt 쓰던 중 오류 발생 - - - Error creating user-data cloudinit file on FAT partition - FAT 파티션에 사용자 데이터 cloudinit 파일을 만드는 중 오류 발생 - - - Error creating network-config cloudinit file on FAT partition - FAT 파티션에 네트워크 구성 cloudinit 파일을 생성하는 중 오류 발생 - - - Error writing to cmdline.txt on FAT partition - FAT 파티션에 cmdline.txt 쓰던 중 오류 발생 + @@ -197,85 +157,85 @@ Error partitioning: %1 - 분할 오류: %1 + Error starting fat32format - 시작 오류 fat32format + Error running fat32format: %1 - 실행 중 오류 fat32format: %1 + Error determining new drive letter - 새 드라이브 문자 확인 오류 + Invalid device: %1 - 유효하지 않는 디바이스: %1 + Error formatting (through udisks2) - 포맷 오류 (udisks2 통해) + Error starting sfdisk - 시작 오류 sfdisk + Partitioning did not create expected FAT partition %1 - FAT partition %1을 분할하여 생성하지 못했습니다. + Error starting mkfs.fat - 시작 오류 mkfs.fat + Error running mkfs.fat: %1 - 실행 오류 mkfs.fat: %1 + Formatting not implemented for this platform - 이 플랫폼에 대해 포맷이 구현되지 않았습니다. + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - 저장소 공간이 충분하지 않습니다.<br>최소 %1 GB 이상이어야 합니다. + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - 입력 파일이 올바른 디스크 이미지가 아닙니다.<br>파일사이즈 %1 바이트가 512바이트의 배수가 아닙니다. + - + Downloading and writing image - 이미지 다운로드 및 쓰기 + - + Select image - 이미지 선택하기 + - + Would you like to prefill the wifi password from the system keychain? - wifi password를 미리 입력하시겠습니까? + @@ -283,12 +243,12 @@ opening image file - 이미지 파일 열기 + Error opening image file - 이미지 파일 열기 오류 + @@ -296,22 +256,22 @@ NO - 아니요 + YES - + CONTINUE - 계속 + QUIT - 나가기 + @@ -319,22 +279,22 @@ Advanced options - 고급 옵션 + Image customization options - 이미지 사용자 정의 옵션 + for this session only - 이 세션에 한하여 + to always use - 항상 사용 + @@ -354,83 +314,83 @@ Set hostname: - hostname 설정: + Set username and password - 사용자 이름 및 비밀번호 설정 + Username: - 사용자 이름: + Password: - 비밀번호: + Configure wireless LAN - 무선 LAN 설정 + SSID: - SSID: + Show password - 비밀번호 표시 + Hidden SSID - 숨겨진 SSID + Wireless LAN country: - 무선 LAN 국가: + Set locale settings - 로케일 설정 지정 + Time zone: - 시간대: + Keyboard layout: - 키보드 레이아웃: + Enable SSH - SSH 사용 + Use password authentication - 비밀번호 인증 사용 + Allow public-key authentication only - 공개 키만 인증 허용 + Set authorized_keys for '%1': - '%1' 인증키 설정: + @@ -440,34 +400,22 @@ Play sound when finished - 완료되면 효과음으로 알림 + Eject media when finished - 완료되면 미디어 꺼내기 + Enable telemetry - 이미지 다운로드 통계 관하여 정보 수집 허용 + SAVE - 저장 - - - Disable overscan - overscan 사용 안 함 - - - Skip first-run wizard - 초기 실행 마법사 건너뛰기 - - - Persistent settings - 영구적으로 설정 + @@ -475,7 +423,7 @@ Internal SD card reader - 내장 SD 카드 리더기 + @@ -486,29 +434,29 @@ - + Would you like to apply image customization settings? - - NO - 아니요 - - - - NO, CLEAR SETTINGS - 아니요, 설정 지우기 - - - - YES - - - - + EDIT SETTINGS - 설정을 편집하기 + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -516,7 +464,7 @@ Raspberry Pi Imager v%1 - Raspberry Pi Imager v%1 + @@ -535,65 +483,60 @@ - - + + Operating System - 운영체제 + - + CHOOSE OS - 운영체제 선택 + - + Select this button to change the operating system - 운영 체제를 변경하려면 이 버튼을 선택합니다. + - - + + Storage - 저장소 + - - + + CHOOSE STORAGE - 저장소 선택 + - - WRITE - 쓰기 - - - + Select this button to change the destination storage device - 저장 디바이스를 변경하려면 버튼을 선택합니다. + - + CANCEL WRITE - 쓰기 취소 + - - + + Cancelling... - 취소 하는 중... + - + CANCEL VERIFY - 확인 취소 + - - - + + + Finalizing... - 마무리 중... + @@ -601,201 +544,187 @@ - + Select this button to start writing the image - 이미지 쓰기를 시작하려면 버튼을 선택합니다. - - - - Select this button to access advanced settings - 고급 설정에 액세스하려면 버튼을 선택합니다. - - - - Using custom repository: %1 - 사용자 지정 리포지토리 사용: %1 - - - - Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - 키보드 탐색: <tab> 다음 버튼으로 이동 <space> 버튼 선택 및 항목 선택 <arrow up/down> 목록에서 위아래로 이동 - - - - Language: - 언어: - - - - Keyboard: - 키보드: - - - - Pi model: - + + Using custom repository: %1 + + + + + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists + + + + + Language: + + + + + Keyboard: + + + + [ All ] - + Back - 뒤로 가기 + - + Go back to main menu - 기본 메뉴로 돌아가기 + - + Released: %1 - 릴리즈: %1 + - + Cached on your computer - 컴퓨터에 캐시됨 + - + Local file - 로컬 파일 + - - Online - %1 GB download - 온라인 - %1 GB 다운로드 - - - - - Mounted as %1 - %1로 마운트 - - - - [WRITE PROTECTED] - [쓰기 보호됨] - - - - Are you sure you want to quit? - 정말 그만두시겠습니까? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imager가 사용 중입니다.<br>정말 그만두시겠습니까? - - - - Warning - 주의 - - - - Preparing to write... - 쓰기 준비 중... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - '%1'에 존재하는 모든 데이터가 지워집니다.<br>계속하시겠습니까? - - - - Update available - 업데이트 가능 - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - Raspberry Pi Imager의 최신 버전을 사용할 수 있습니다.<br>다운받기 위해 웹사이트를 방문하시겠습니까?? - - - - Error downloading OS list from Internet - 인터넷에서 OS 목록을 다운로드하는 중 오류 발생 - - - - Writing... %1% - 쓰는 중... %1% - - - - Verifying... %1% - 확인 중... %1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - 쓰기 준비 중... (%1) + - + Error - 오류 + - + Write Successful - 쓰기 완료 + - - + + Erase - 삭제 + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1</b> 가 지워졌습니다.<br><br>이제 SD card를 제거할 수 있습니다. + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - <b>%1</b>가 <b>%2</b><br><br>에 쓰여졌습니다. 이제 SD card를 제거할 수 있습니다. + - + Error parsing os_list.json - 구문 분석 오류 os_list.json + - + Format card as FAT32 - FAT32로 카드 형식 지정 + - + Use custom - 사용자 정의 사용 + - + Select a custom .img from your computer - 컴퓨터에서 사용자 지정 .img를 선택합니다. + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - 먼저 이미지가 들어 있는 USB를 연결합니다.<br>이미지는 USB 루트 폴더에 있어야 합니다. + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - 쓰기 금지된 SD card<br>카드 왼쪽에 있는 잠금 스위치를 위쪽으로 누른 후 다시 시도하십시오. - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b>가 <b>%2</b>에 쓰여졌습니다. + diff --git a/src/i18n/rpi-imager_nl.ts b/src/i18n/rpi-imager_nl.ts index 60e2d5e..d579d12 100644 --- a/src/i18n/rpi-imager_nl.ts +++ b/src/i18n/rpi-imager_nl.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - Fout bij uitpakken archiefbestand: %1 + Error mounting FAT32 partition - Fout bij mounten FAT32 partitie + Operating system did not mount FAT32 partition - Besturingssysteem heeft FAT32 partitie niet gemount + Error changing to directory '%1' - Fout bij openen map '%1' - - - Error writing to storage - Fout bij schrijven naar opslag + @@ -34,160 +30,124 @@ unmounting drive - unmounten van schijf + opening drive - openen van opslag + Error running diskpart: %1 - Fout bij uitvoeren diskpart: %1 + Error removing existing partitions - Fout bij verwijderen bestaande partities + Authentication cancelled - Authenticatie geannuleerd + Error running authopen to gain access to disk device '%1' - Fout bij uitvoeren authopen: '%1' + 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'). - 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'). + Cannot open storage device '%1'. - Fout bij openen opslagapparaat '%1'. + discarding existing data on drive - wissen bestaande gegevens + zeroing out first and last MB of drive - wissen eerste en laatste MB van opslag + Write error while zero'ing out MBR - Fout bij wissen MBR + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Fout bij wissen laatste deel van de SD kaart.<br>Kaart geeft mogelijk onjuiste capaciteit aan (mogelijk counterfeit). + starting download - beginnen met downloaden + Error downloading: %1 - Fout bij downloaden: %1 + Access denied error while writing file to disk. - Toegang geweigerd bij het schrijven naar opslag. + 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. - 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. + Error writing file to disk - Fout bij schrijven naar opslag + Download corrupt. Hash does not match - Download corrupt. Hash komt niet overeen + Error writing to storage (while flushing) - Fout bij schrijven naar opslag (tijdens flushen) + Error writing to storage (while fsync) - Fout bij schrijven naar opslag (tijdens fsync) + Error writing first block (partition table) - Fout bij schrijven naar eerste deel van kaart (partitie tabel) + Error reading from storage.<br>SD card may be broken. - Fout bij lezen van SD kaart.<br>Kaart is mogelijk defect. + Verifying write failed. Contents of SD card is different from what was written to it. - Verificatie mislukt. De gegevens die op de SD kaart staan wijken af van wat er naar geschreven is. + Customizing image - Bezig met aanpassen besturingssysteem - - - Waiting for FAT partition to be mounted - Wachten op mounten FAT partitie - - - Error mounting FAT32 partition - Fout bij mounten FAT32 partitie - - - Operating system did not mount FAT32 partition - Besturingssysteem heeft FAT32 partitie niet gemount - - - Unable to customize. File '%1' does not exist. - Fout bij aanpassen besturingssysteem. Bestand '%1' bestaat niet. - - - Error creating firstrun.sh on FAT partition - Fout bij het aanmaken van firstrun.sh op FAT partitie - - - Error writing to config.txt on FAT partition - Fout bij schrijven naar config.txt op FAT partitie - - - Error creating user-data cloudinit file on FAT partition - Fout bij aanmaken user-data cloudinit bestand op FAT partitie - - - Error creating network-config cloudinit file on FAT partition - Fout bij aanmaken network-config cloudinit bestand op FAT paritie - - - Error writing to cmdline.txt on FAT partition - Fout bij schrijven cmdline.txt op FAT partitie + @@ -197,85 +157,85 @@ Error partitioning: %1 - Fout bij partitioneren: %1 + Error starting fat32format - Fout bij starten fat32format + Error running fat32format: %1 - Fout bij uitvoeren fat32format: %1 + Error determining new drive letter - Fout bij vaststellen nieuwe letter van schijfstation + Invalid device: %1 - Ongeldig device: %1 + Error formatting (through udisks2) - Fout bij formatteren (via udisks2) + Error starting sfdisk - Fout bij starten sfdisk + Partitioning did not create expected FAT partition %1 - Partitionering heeft geen FAT partitie %1 aangemaakt + Error starting mkfs.fat - Fout bij starten mkfs.fat + Error running mkfs.fat: %1 - Fout bij uitvoeren mkfs.fat: %1 + Formatting not implemented for this platform - Formatteren is niet geimplementeerd op dit besturingssysteem + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - Opslagcapaciteit niet groot genoeg.<br>Deze dient minimaal %1 GB te zijn. + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - Invoerbestand is geen disk image.<br>Bestandsgrootte %1 bytes is geen veelvoud van 512 bytes. + - + Downloading and writing image - Downloaden en schrijven van image + - + Select image - Selecteer image + - + Would you like to prefill the wifi password from the system keychain? - Wilt u het wifi wachtwoord van het systeem overnemen? + @@ -283,12 +243,12 @@ opening image file - openen image + Error opening image file - Fout bij openen image bestand + @@ -296,22 +256,22 @@ NO - Nee + YES - Ja + CONTINUE - VERDER GAAN + QUIT - AFSLUITEN + @@ -319,163 +279,143 @@ Advanced options - Geavanceerde instellingen + Image customization options - Image instellingen + for this session only - alleen voor deze sessie + to always use - om altijd te gebruiken + General - Algemeen + Services - Services + Options - Opties + Set hostname: - Hostnaam: + Set username and password - Gebruikersnaam en wachtwoord instellen + Username: - Gebruikersnaam: + Password: - Wachtwoord: + Configure wireless LAN - Wifi instellen + SSID: - SSID: + Show password - Wachtwoord laten zien + Hidden SSID - Verborgen SSID + Wireless LAN country: - Wifi land: + Set locale settings - Regio instellingen + Time zone: - Tijdzone: + Keyboard layout: - Toetsenbord indeling: + Enable SSH - SSH inschakelen + Use password authentication - Gebruik wachtwoord authenticatie + Allow public-key authentication only - Gebruik uitsluitend public-key authenticatie + Set authorized_keys for '%1': - authorized_keys voor '%1': + RUN SSH-KEYGEN - START SSH-KEYGEN + Play sound when finished - Geluid afspelen zodra voltooid + Eject media when finished - Media uitwerpen zodra voltooid + Enable telemetry - Telemetry inschakelen + SAVE - OPSLAAN - - - Disable overscan - Overscan uitschakelen - - - Set username: - Gebruikersnaam: - - - Set password for '%1' user: - Wachtwoord voor '%1' gebruiker: - - - Skip first-run wizard - Eerste gebruik wizard overslaan - - - Persistent settings - Permanente instellingen + @@ -483,7 +423,7 @@ Internal SD card reader - Interne SD kaart lezer + @@ -494,29 +434,29 @@ - + Would you like to apply image customization settings? - - NO - Nee - - - - NO, CLEAR SETTINGS - Nee, wis instellingen - - - - YES - Ja - - - + EDIT SETTINGS - Aanpassen + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -524,7 +464,7 @@ Raspberry Pi Imager v%1 - Raspberry Pi Imager v%1 + @@ -543,65 +483,60 @@ - - + + Operating System - Besturingssysteem + - + CHOOSE OS - SELECTEER OS + - + Select this button to change the operating system - Kies deze knop om een besturingssysteem te kiezen + - - + + Storage - Opslagapparaat + - - + + CHOOSE STORAGE - KIES OPSLAGAPPARAAT + - - WRITE - SCHRIJF - - - + Select this button to change the destination storage device - Klik op deze knop om het opslagapparaat te wijzigen + - + CANCEL WRITE - Annuleer schrijven + - - + + Cancelling... - Annuleren... + - + CANCEL VERIFY - ANNULEER VERIFICATIE + - - - + + + Finalizing... - Afronden... + @@ -609,205 +544,187 @@ - + Select this button to start writing the image - Kies deze knop om te beginnen met het schrijven van de image + - - Select this button to access advanced settings - Klik op deze knop om de geadvanceerde instellingen te openen - - - + Using custom repository: %1 - Custom repository in gebruik: %1 + - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - Toetsenbord navigatie: <tab> ga naar volgende knop <spatie> druk op knop/selecteer item <pijltje omhoog/omlaag> ga omhoog/omlaag in lijsten + - + Language: - Taal: + - + Keyboard: - Toetsenbord: + - - Pi model: - Pi model: - - - + [ All ] - [ Alle modellen ] + - + Back - Terug + - + Go back to main menu - Terug naar hoofdmenu + - + Released: %1 - Release datum: %1 + - + Cached on your computer - Opgeslagen op computer + - + Local file - Lokaal bestand + - - Online - %1 GB download - Online %1 GB download - - - - - Mounted as %1 - Mounted op %1 - - - - [WRITE PROTECTED] - [ALLEEN LEZEN] - - - - Are you sure you want to quit? - Weet u zeker dat u wilt afsluiten? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imager is nog niet klaar.<br>Weet u zeker dat u wilt afsluiten? - - - - Warning - Waarschuwing - - - - Preparing to write... - Voorbereiden... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Alle bestaande gegevens op '%1' zullen verwijderd worden.<br>Weet u zeker dat u door wilt gaan? - - - - Update available - Update beschikbaar - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - Er is een nieuwere versie van Imager beschikbaar.<br>Wilt u de website bezoeken om deze te downloaden? - - - - Error downloading OS list from Internet - Fout bij downloaden van lijst met besturingssystemen - - - - Writing... %1% - Schrijven... %1% - - - - Verifying... %1% - Verifiëren... %1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - Voorbereiden... (%1) + - + Error - Fout + - + Write Successful - Klaar met schrijven + - - + + Erase - Wissen + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1</b> is gewist<br><br>U kunt nu de SD kaart uit de lezer halen + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - <b>%1</b> is geschreven naar <b>%2</b><br><br>U kunt nu de SD kaart uit de lezer halen + - + Error parsing os_list.json - Fout bij parsen os_list.json + - + Format card as FAT32 - Formatteer kaart als FAT32 + - + Use custom - Gebruik eigen bestand + - + Select a custom .img from your computer - Selecteer een eigen .img bestand + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Sluit eerst een USB stick met images aan.<br>De images moeten in de hoofdmap van de USB stick staan. + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - SD kaart is tegen schrijven beveiligd.<br>Druk het schuifje aan de linkerkant van de SD kaart omhoog, en probeer nogmaals. - - - Select this button to change the destination SD card - Kies deze knop om de SD kaart te kiezen - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> is geschreven naar <b>%2</b> + diff --git a/src/i18n/rpi-imager_ru.ts b/src/i18n/rpi-imager_ru.ts index f32d4b1..8825b31 100644 --- a/src/i18n/rpi-imager_ru.ts +++ b/src/i18n/rpi-imager_ru.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - Ошибка извлечения архива: %1 + Error mounting FAT32 partition - Ошибка подключения раздела FAT32 + Operating system did not mount FAT32 partition - Операционная система не подключила раздел FAT32 + Error changing to directory '%1' - Ошибка перехода в каталог «%1» - - - Error writing to storage - Ошибка записи на запоминающее устройство + @@ -39,155 +35,119 @@ opening drive - открытие диска + Error running diskpart: %1 - Ошибка выполнения diskpart: %1 + Error removing existing partitions - Ошибка удаления существующих разделов + Authentication cancelled - Аутентификация отменена + Error running authopen to gain access to disk device '%1' - Ошибка выполнения authopen для получения доступа к дисковому устройству «%1» + 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'). - Убедитесь, что в параметрах настройки конфиденциальности (privacy settings) в разделе «файлы и папки» («files and folders») программе Raspberry Pi Imager разрешён доступ к съёмным томам (removable volumes). Либо можно предоставить программе доступ ко всему диску (full disk access). + Cannot open storage device '%1'. - Не удалось открыть запоминающее устройство «%1». + discarding existing data on drive - удаление существующих данных на диске + zeroing out first and last MB of drive - обнуление первого и последнего мегабайта диска + Write error while zero'ing out MBR - Ошибка записи при обнулении MBR + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Ошибка записи при попытке обнулить последнюю часть карты.<br>Заявленный картой объём может не соответствовать действительности (возможно, карта является поддельной). + starting download - начало загрузки + Error downloading: %1 - Ошибка загрузки: %1 + Access denied error while writing file to disk. - Ошибка доступа при записи файла на диск. + 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. - Похоже, что включён контролируемый доступ к папкам (Controlled Folder Access). Добавьте rpi-imager.exe и fat32format.exe в список разрешённых программ и попробуйте снова. + Error writing file to disk - Ошибка записи файла на диск + Download corrupt. Hash does not match - Загруженные данные повреждены. Хэш не совпадает + Error writing to storage (while flushing) - Ошибка записи на запоминающее устройство (при сбросе) + Error writing to storage (while fsync) - Ошибка записи на запоминающее устройство (при выполнении fsync) + Error writing first block (partition table) - Ошибка записи первого блока (таблица разделов) + Error reading from storage.<br>SD card may be broken. - Ошибка чтения с запоминающего устройства.<br>SD-карта может быть повреждена. + Verifying write failed. Contents of SD card is different from what was written to it. - Ошибка по результатам проверки записи. Содержимое SD-карты отличается от того, что было на неё записано. + Customizing image - Настройка образа - - - Waiting for FAT partition to be mounted - Ожидание подключения раздела FAT - - - Error mounting FAT32 partition - Ошибка подключения раздела FAT32 - - - Operating system did not mount FAT32 partition - Операционная система не подключила раздел FAT32 - - - Unable to customize. File '%1' does not exist. - Не удалось настроить. Файл «%1» не существует. - - - Error creating firstrun.sh on FAT partition - Ошибка создания firstrun.sh в разделе FAT - - - Error writing to config.txt on FAT partition - Ошибка записи в config.txt в разделе FAT - - - Error creating user-data cloudinit file on FAT partition - Ошибка создания файла user-data cloudinit в разделе FAT - - - Error creating network-config cloudinit file on FAT partition - Ошибка создания файла network-config cloudinit в разделе FAT - - - Error writing to cmdline.txt on FAT partition - Ошибка записи в cmdline.txt в разделе FAT + @@ -197,85 +157,85 @@ Error partitioning: %1 - Ошибка создания разделов: %1 + Error starting fat32format - Ошибка запуска fat32format + Error running fat32format: %1 - Ошибка выполнения fat32format: %1 + Error determining new drive letter - Ошибка определения новой буквы диска + Invalid device: %1 - Недопустимое устройство: %1 + Error formatting (through udisks2) - Ошибка форматирования (с помощью udisks2) + Error starting sfdisk - Ошибка запуска sfdisk + Partitioning did not create expected FAT partition %1 - При создании разделов не был создан ожидаемый раздел FAT %1 + Error starting mkfs.fat - Ошибка запуска mkfs.fat + Error running mkfs.fat: %1 - Ошибка выполнения mkfs.fat: %1 + Formatting not implemented for this platform - Для этой платформы не реализовано форматирование + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - Недостаточная ёмкость запоминающего устройства.<br>Требуется не менее %1 ГБ. + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - Входной файл не представляет собой корректный образ диска.<br>Размер файла %1 не кратен 512 байтам. + - + Downloading and writing image - Загрузка и запись образа + - + Select image - Выбор образа + - + Would you like to prefill the wifi password from the system keychain? - Указать пароль от WiFi автоматически (взяв его из системной цепочки ключей)? + @@ -283,12 +243,12 @@ opening image file - открытие файла образа + Error opening image file - Ошибка открытия файла образа + @@ -296,22 +256,22 @@ NO - НЕТ + YES - ДА + CONTINUE - ПРОДОЛЖИТЬ + QUIT - ВЫЙТИ + @@ -319,22 +279,22 @@ Advanced options - Дополнительные параметры + Image customization options - Параметры настройки образа + for this session only - только для этого сеанса + to always use - для постоянного использования + @@ -354,83 +314,83 @@ Set hostname: - Имя хоста: + Set username and password - Указать имя пользователя и пароль + Username: - Имя пользователя: + Password: - Пароль: + Configure wireless LAN - Настроить Wi-Fi + SSID: - SSID: + Show password - Показывать пароль + Hidden SSID - Скрытый идентификатор SSID + Wireless LAN country: - Страна Wi-Fi: + Set locale settings - Указать параметры региона + Time zone: - Часовой пояс: + Keyboard layout: - Раскладка клавиатуры: + Enable SSH - Включить SSH + Use password authentication - Использовать аутентификацию по паролю + Allow public-key authentication only - Разрешить только аутентификацию с использованием открытого ключа + Set authorized_keys for '%1': - authorized_keys для «%1»: + @@ -440,26 +400,22 @@ Play sound when finished - Воспроизводить звук после завершения + Eject media when finished - Извлекать носитель после завершения + Enable telemetry - Включить телеметрию + SAVE - СОХРАНИТЬ - - - Persistent settings - Постоянные параметры + @@ -467,7 +423,7 @@ Internal SD card reader - Внутреннее устройство чтения SD-карт + @@ -478,29 +434,29 @@ - + Would you like to apply image customization settings? - - NO - НЕТ - - - - NO, CLEAR SETTINGS - НЕТ, ОЧИСТИТЬ ПАРАМЕТРЫ - - - - YES - ДА - - - + EDIT SETTINGS - ИЗМЕНИТЬ ПАРАМЕТРЫ + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -508,7 +464,7 @@ Raspberry Pi Imager v%1 - Raspberry Pi Imager, версия %1 + @@ -527,65 +483,60 @@ - - + + Operating System - Операционная система + - + CHOOSE OS - ВЫБРАТЬ ОС + - + Select this button to change the operating system - Нажмите эту кнопку, чтобы изменить операционную систему + - - + + Storage - Запоминающее устройство + - - + + CHOOSE STORAGE - ВЫБРАТЬ ЗАПОМ. УСТРОЙСТВО + - - WRITE - ЗАПИСАТЬ - - - + Select this button to change the destination storage device - Нажмите эту кнопку, чтобы изменить целевое запоминающее устройство + - + CANCEL WRITE - ОТМЕНИТЬ ЗАПИСЬ + - - + + Cancelling... - Отмена... + - + CANCEL VERIFY - ОТМЕНИТЬ ПРОВЕРКУ + - - - + + + Finalizing... - Завершение... + @@ -593,197 +544,187 @@ - + Select this button to start writing the image - Нажмите эту кнопку, чтобы начать запись образа - - - - Select this button to access advanced settings - Нажмите эту кнопку для получения доступа к дополнительным параметрам - - - - Using custom repository: %1 - Использование настраиваемого репозитория: %1 - - - - Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - Навигация с помощью клавиатуры: клавиша <Tab> перемещает на следующую кнопку, клавиша <Пробел> нажимает кнопку/выбирает элемент, клавиши со <стрелками вверх/вниз> перемещают выше/ниже в списке - - - - Language: - Язык: - - - - Keyboard: - Клавиатура: - - - - Pi model: - + + Using custom repository: %1 + + + + + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists + + + + + Language: + + + + + Keyboard: + + + + [ All ] - + Back - Назад + - + Go back to main menu - Вернуться в главное меню + - + Released: %1 - Дата выпуска: %1 + - + Cached on your computer - Кэш на компьютере + - + Local file - Локальный файл + - - Online - %1 GB download - Онлайн — объём загрузки составляет %1 ГБ - - - - - Mounted as %1 - Подключено как %1 - - - - [WRITE PROTECTED] - [ЗАЩИЩЕНО ОТ ЗАПИСИ] - - - - Are you sure you want to quit? - Действительно выполнить выход? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Программа Raspberry Pi Imager всё ещё занята.<br>Действительно выполнить выход из неё? - - - - Warning - Внимание - - - - Preparing to write... - Подготовка к записи… - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Все существующие на «%1» данные будут стёрты.<br>Продолжить? - - - - Update available - Доступно обновление - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - Доступна новая версия Imager.<br>Перейти на веб-сайт для её загрузки? - - - - Error downloading OS list from Internet - Ошибка загрузки списка ОС из Интернета - - - - Writing... %1% - Запись... %1% - - - - Verifying... %1% - Проверка... %1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - Подготовка к записи... (%1) + - + Error - Ошибка + - + Write Successful - Запись успешно выполнена + - - + + Erase - Стереть + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - Данные на <b>%1</b> стёрты<br><br>Теперь можно извлечь SD-карту из устройства чтения + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - Запись <b>%1</b> на <b>%2</b> выполнена<br><br>Теперь можно извлечь SD-карту из устройства чтения + - + Error parsing os_list.json - Ошибка синтаксического анализа os_list.json + - + Format card as FAT32 - Отформатировать карту как FAT32 + - + Use custom - Использовать настраиваемый образ + - + Select a custom .img from your computer - Выбрать настраиваемый файл .img на компьютере + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Сначала подключите USB-накопитель с образами.<br>Образы должны находиться в корневой папке USB-накопителя. + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - SD-карта защищена от записи.<br>Переместите вверх блокировочный переключатель, расположенный с левой стороны карты, и попробуйте ещё раз. + diff --git a/src/i18n/rpi-imager_sk.ts b/src/i18n/rpi-imager_sk.ts index be70d81..2781e3a 100644 --- a/src/i18n/rpi-imager_sk.ts +++ b/src/i18n/rpi-imager_sk.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - Chyba pri rozbaľovaní archívu: %1 + Error mounting FAT32 partition - Chyba pri pripájaní partície FAT32 + Operating system did not mount FAT32 partition - Operačný systém nepripojil partíciu FAT32 + Error changing to directory '%1' - Chyba pri vstupe do adresára '%1' - - - Error writing to storage - Chyba pri zápise na úložisko + @@ -39,155 +35,119 @@ opening drive - otváram disk + Error running diskpart: %1 - Chyba počas behu diskpart: %1 + Error removing existing partitions - Chyba pri odstraňovaní existujúcich partiícií + Authentication cancelled - Zrušená autentifikácia + Error running authopen to gain access to disk device '%1' - Chyba pri spúšťaní authopen v snahe o získanie prístupu na diskové zariadenie '%1' + 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'). - 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'). + Cannot open storage device '%1'. - Nepodarilo sa otvoriť zariadenie úložiska '%1'. + discarding existing data on drive - odstraňujem existujúce údaje z disku + zeroing out first and last MB of drive - prepisujem prvý a posledny megabajt disku + Write error while zero'ing out MBR - Chyba zápisu pri prepisovaní MBR nulami + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Chyba zápisu pri prepisovaní poslednej časti karty nulami.<br>Karta pravdepodobne udáva nesprávnu kapacitu (a môže byť falošná). + starting download - začína sťahovanie + Error downloading: %1 - Chyba pri sťahovaní: %1 + Access denied error while writing file to disk. - Odopretý prístup pri zápise súboru na disk. + 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. - 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. + Error writing file to disk - Chyba pri zápise na disk + Download corrupt. Hash does not match - Stiahnutý súbor je poškodený. Kontrolný súčet nesedí + Error writing to storage (while flushing) - Chyba pri zápise na úložisko (počas volania flush) + Error writing to storage (while fsync) - Chyba pri zápise na úložisko (počas volania fsync) + Error writing first block (partition table) - Chyba pri zápise prvého bloku (tabuľky partícií) + Error reading from storage.<br>SD card may be broken. - Chyba pri čítaní z úložiska.<br>Karta SD môže byť poškodená. + Verifying write failed. Contents of SD card is different from what was written to it. - Overovanie zápisu skončilo s chybou. Obsah karty SD sa nezhoduje s tým, čo na ňu bolo zapísané. + Customizing image - Upravujem obraz - - - Waiting for FAT partition to be mounted - Čakám a pripojenie FAT partície - - - Error mounting FAT32 partition - Chyba pri pripájaní partície FAT32 - - - Operating system did not mount FAT32 partition - Operačný systém nepripojil partíciu FAT32 - - - Unable to customize. File '%1' does not exist. - Prispôsobenie skončilo s chybou. Súbor '%1' neexistuje. - - - Error creating firstrun.sh on FAT partition - Pri vytváraní firstrun.sh na partícii FAT nastala chyba - - - Error writing to config.txt on FAT partition - Chyba pri zápise config.txt na FAT partícii - - - Error creating user-data cloudinit file on FAT partition - Chyba pri vytváraní súboru cloudinit s údajmi používateľa na partícií FAT - - - Error creating network-config cloudinit file on FAT partition - Chyba pri vytváraní súboru cloudinit s nastavením siete na partícií FAT - - - Error writing to cmdline.txt on FAT partition - Chyba pri zápise cmdline.txt na FAT partíciu + @@ -197,85 +157,85 @@ Error partitioning: %1 - Chyba pri zápise partícií: %1 + Error starting fat32format - Chyba pri spustení fat32format + Error running fat32format: %1 - Chyba pri spustení fat32format: %1 + Error determining new drive letter - Chyba pri zisťovaní písmena nového disku + Invalid device: %1 - Neplatné zariadenie: %1 + Error formatting (through udisks2) - Chyba pri formátovaní (pomocou udisks2) + Error starting sfdisk - Chyba pri spustení sfdisk + Partitioning did not create expected FAT partition %1 - Rozdelenie disku nevytvorilo očakávanú FAT partíciu %1 + Error starting mkfs.fat - Chyba pri spustení mkfs.fat + Error running mkfs.fat: %1 - Chyba pri spustení mkfs.fat: %1 + Formatting not implemented for this platform - Formátovanie nie je na tejto platforme implementované + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - Kapacita úložiska je nedostatočná<br>Musí byť aspoň %1 GB. + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - Vstupný súbor nie je platným obrazom disku.<br>Veľkosť súboru %1 bajtov nie je násobkom 512 bajtov. + - + Downloading and writing image - Sťahujem a zapisujem obraz + - + Select image - Vyberte obraz + - + Would you like to prefill the wifi password from the system keychain? - Chcete predvyplniť heslo pre wifi zo systémovej kľúčenky? + @@ -283,12 +243,12 @@ opening image file - otváram súbor s obrazom + Error opening image file - Chyba pri otváraní súboru s obrazom + @@ -296,22 +256,22 @@ NO - NIE + YES - ÁNO + CONTINUE - POKRAČOVAŤ + QUIT - UKONČIŤ + @@ -319,22 +279,22 @@ Advanced options - Pokročilé možnosti + Image customization options - Možnosti úprav obrazu + for this session only - iba pre toto sedenie + to always use - použiť vždy + @@ -354,83 +314,83 @@ Set hostname: - Nastaviť meno počítača (hostname): + Set username and password - Nastaviť meno používateľa a heslo + Username: - Meno používateľa: + Password: - Heslo: + Configure wireless LAN - Nastaviť wifi + SSID: - SSID: + Show password - Zobraziť heslo + Hidden SSID - Skryté SSID + Wireless LAN country: - Wifi krajina: + Set locale settings - Nastavenia miestnych zvyklostí + Time zone: - Časové pásmo: + Keyboard layout: - Rozloženie klávesnice: + Enable SSH - Povoliť SSH + Use password authentication - Použiť heslo na prihlásenie + Allow public-key authentication only - Povoliť iba prihlásenie pomocou verejného kľúča + Set authorized_keys for '%1': - Nastaviť authorized_keys pre '%1': + @@ -440,42 +400,22 @@ Play sound when finished - Po skončení prehrať zvuk + Eject media when finished - Po skončení vysunúť médium + Enable telemetry - Povoliť telemetriu + SAVE - ULOŽIŤ - - - Disable overscan - Vypnúť presnímanie (overscan) - - - Set password for 'pi' user: - Nastaviť heslo pre používateľa 'pi': - - - Set authorized_keys for 'pi': - Nastaviť authorized_keys pre 'pi': - - - Skip first-run wizard - Vypnúť sprievodcu prvým spustením - - - Persistent settings - Trvalé nastavenia + @@ -483,7 +423,7 @@ Internal SD card reader - Interná čítačka SD kariet + @@ -494,29 +434,29 @@ - + Would you like to apply image customization settings? - - NO - NIE - - - - NO, CLEAR SETTINGS - NIE, VYČISTIŤ NASTAVENIA - - - - YES - ÁNO - - - + EDIT SETTINGS - UPRAVIŤ NASTAVENIA + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -524,7 +464,7 @@ Raspberry Pi Imager v%1 - Raspberry Pi Imager v%1 + @@ -543,65 +483,60 @@ - - + + Operating System - Operačný systém + - + CHOOSE OS - VYBERTE OS + - + Select this button to change the operating system - Pre zmenu operačného systému kliknite na toto tlačidlo + - - + + Storage - SD karta + - - + + CHOOSE STORAGE - VYBERTE SD KARTU + - - WRITE - ZAPÍSAŤ - - - + Select this button to change the destination storage device - Pre zmenu cieľového zariadenia úložiska kliknite na toto tlačidlo + - + CANCEL WRITE - ZRUŠIŤ ZÁPIS + - - + + Cancelling... - Ruším operáciu... + - + CANCEL VERIFY - ZRUŠIŤ OVEROVANIE + - - - + + + Finalizing... - Ukončujem... + @@ -609,205 +544,187 @@ - + Select this button to start writing the image - Kliknutím na toto tlačidlo spustíte zápis - - - - Select this button to access advanced settings - Použite toto tlačidlo na prístup k pokročilým nastaveniam - - - - Using custom repository: %1 - Používa sa vlastný repozitár: %1 - - - - Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - Ovládanie pomocou klávesnice: <tabulátor> prechod na ďalšie tlačidlo <medzerník> stlačenie tlačidla/výber položky <šípka hore/dole> posun hore/dole v zoznamoch - - - - Language: - Jazyk: - - - - Keyboard: - Klávesnica: - - - - Pi model: - + + Using custom repository: %1 + + + + + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists + + + + + Language: + + + + + Keyboard: + + + + [ All ] - + Back - Späť + - + Go back to main menu - Prejsť do hlavnej ponuky + - + Released: %1 - Vydané: %1 + - + Cached on your computer - Uložené na počítači + - + Local file - Miestny súbor + - - Online - %1 GB download - Online %1 GB na stiahnutie - - - - - Mounted as %1 - Pripojená ako %1 - - - - [WRITE PROTECTED] - [OCHRANA PROTI ZÁPISU] - - - - Are you sure you want to quit? - Skutočne chcete skončiť? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imager ešte neskončil.<br>Ste si istý, že chcete skončiť? - - - - Warning - Varovanie - - - - Preparing to write... - Príprava zápisu... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Všetky existujúce dáta na '%1' budú odstránené.<br>Naozaj chcete pokračovať? - - - - Update available - Je dostupná aktualizácia - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - Je dostupná nová verzia Imagera.<br>Chcete prejsť na webovú stránku s programom a stiahnuť ho? - - - - Error downloading OS list from Internet - Chyba pri sťahovaní zoznamu OS z Internetu - - - - Writing... %1% - Zapisujem... %1% - - - - Verifying... %1% - Overujem... %1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - Príprava zápisu... (%1) + - + Error - Chyba + - + Write Successful - Zápis úspešne skončil + - - + + Erase - Vymazať + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1</b> bola vymazaná<br><br>Teraz môžete odstrániť SD kartu z čítačky + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - <b>%1</b> bol zapísaný na <b>%2</b><br><br>Teraz môžete odstrániť SD kartu z čítačky + - + Error parsing os_list.json - Chyba pri spracovaní os_list.json + - + Format card as FAT32 - Formátovať kartu ako FAT32 + - + Use custom - Použiť vlastný + - + Select a custom .img from your computer - Použiť vlastný súbor img. na Vašom počítači + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Najprv pripojte USB kľúč, ktorý obsahuje diskové obrazy.<br>Obrazy sa musia nachádzať v koreňovom priečinku USB kľúča. + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - 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. - - - Select this button to change the destination SD card - Pre zmenu cieľovej SD karty kliknite na toto tlačidlo - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> bol zapísaný na <b>%2</b> + diff --git a/src/i18n/rpi-imager_sl.ts b/src/i18n/rpi-imager_sl.ts index 07965dc..5056073 100644 --- a/src/i18n/rpi-imager_sl.ts +++ b/src/i18n/rpi-imager_sl.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - Napaka razširjanja arhiva: %1 + Error mounting FAT32 partition - Napaka priklopa FAT32 particije + Operating system did not mount FAT32 partition - Operacijski sistem, ni priklopil FAT32 particije + Error changing to directory '%1' - Napaka spremembe direktorija '%1%' - - - Error writing to storage - Napaka pisanja na disk + @@ -39,155 +35,119 @@ opening drive - Odpiranje pogona + Error running diskpart: %1 - Napaka zagona diskpart: %1 + Error removing existing partitions - Napaka odstranjevanja obstoječih particij + Authentication cancelled - Avtentifikacija preklicana + Error running authopen to gain access to disk device '%1' - Napaka zagona authopen za pridobitev dostopa do naprave diska '%1' + 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'). - 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'). + Cannot open storage device '%1'. - Ne morem odpreti diska '%1'. + discarding existing data on drive - Brisanje obstoječih podatkov na disku + zeroing out first and last MB of drive - Ničenje prvega in zadnjega MB diska + Write error while zero'ing out MBR - Napaka zapisovanja med ničenjem MBR + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Napaka ničenja zadnjega dela diska.<br>Disk morebiti sporoča napačno velikost(možen ponaredek). + starting download - Začetek prenosa + Error downloading: %1 - Napaka prenosa:%1 + Access denied error while writing file to disk. - Napaka zavrnitve dostopa med pisanjem na disk. + 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. - Izgleda, da jevklopljen nadzor dostopa do map. Prosim dodajte oba rpi-imager.exe in fat32format.exe na seznam dovoljenih aplikacij in poizkusite znova. + Error writing file to disk - Napaka pisanja na disk + Download corrupt. Hash does not match - Prenos poškodovan.Hash se ne ujema + Error writing to storage (while flushing) - Napaka pisanja na disk (med brisanjem) + Error writing to storage (while fsync) - Napaka pisanja na disk (med fsync) + Error writing first block (partition table) - Napaka pisanja prvega bloka (particijska tabela) + Error reading from storage.<br>SD card may be broken. - Napaka branja iz diska.<br>SD kartica/disk je mogoče v okvari. + Verifying write failed. Contents of SD card is different from what was written to it. - Preverjanje pisanja spodletelo. Vsebina diska je drugačna, od tega, kar je bilo nanj zapisano. + Customizing image - Prilagajanje slike diska - - - Waiting for FAT partition to be mounted - Čakanje na priklop FAT particije - - - Error mounting FAT32 partition - Napaka priklopa FAT32 particije - - - Operating system did not mount FAT32 partition - Operacijski sisitem ni priklopil FAT32 particijo - - - Unable to customize. File '%1' does not exist. - Prilagoditev ni možna. Datoteka '%1' ne obstaja. - - - Error creating firstrun.sh on FAT partition - Napaka ustvarjanja firstrun.sh na FAT particiji - - - Error writing to config.txt on FAT partition - Napaka pisanja v config.txt na FAT particiji - - - Error creating user-data cloudinit file on FAT partition - Napaka ustvarjanja user-data cloudinit datoteke na FAT particiji - - - Error creating network-config cloudinit file on FAT partition - Napaka ustvarjanja network-config cloudinit datoteke na FAT particiji - - - Error writing to cmdline.txt on FAT partition - Napaka pisanja v cmdline.txt na FAT particiji + @@ -197,85 +157,85 @@ Error partitioning: %1 - Napaka izdelave particij: %1 + Error starting fat32format - Napaka zagona fat32format + Error running fat32format: %1 - Napaka delovanja fat32format: %1 + Error determining new drive letter - Napaka določitve nove črke pogona + Invalid device: %1 - Neveljavna naprava: %1 + Error formatting (through udisks2) - Napaka fromatiranja (z uporabo udisks2) + Error starting sfdisk - Napaka zagona sfdisk + Partitioning did not create expected FAT partition %1 - Ustvarjanje particij ni ustvarilo pričakovano FAT particijo %1 + Error starting mkfs.fat - Napaka zagona mkfs.fat + Error running mkfs.fat: %1 - Napaka delovanja mkfs.fat: %1 + Formatting not implemented for this platform - Formatiranje ni implemntirano za to platformo + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - Kapaciteta diska ni zadostna.<br>Biti mora vsaj %1 GB. + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - Vhodna datoteka ni veljavna slika diska.<br>Velikost datoteke %1 bajtov ni večkratnik od 512 bajtov. + - + Downloading and writing image - Prenašanje in zapisovanje slike + - + Select image - Izberite sliko + - + Would you like to prefill the wifi password from the system keychain? - A bi želeli uporabiti WiFi geslo iz kjučev tega sistema? + @@ -283,12 +243,12 @@ opening image file - Odpiranje slike diska + Error opening image file - Napaka odpiranja slike diska + @@ -296,22 +256,22 @@ NO - NE + YES - DA + CONTINUE - NADALJUJ + QUIT - IZHOD + @@ -319,22 +279,22 @@ Advanced options - Napredne možnosti + Image customization options - Uporabi opcije prilagoditve slike diska + for this session only - samo za to sejo + to always use - vedno + @@ -354,7 +314,7 @@ Set hostname: - Ime naprave: + @@ -370,22 +330,22 @@ Password: - Geslo: + Configure wireless LAN - Nastavi WiFi + SSID: - SSID: + Show password - Pokaži geslo + @@ -395,42 +355,42 @@ Wireless LAN country: - WiFi je v državi: + Set locale settings - Nastavitve jezika + Time zone: - Časovni pas: + Keyboard layout: - Razporeditev tipkovnice: + Enable SSH - Omogoči SSH + Use password authentication - Uporabi geslo za avtentifikacijo + Allow public-key authentication only - Dovoli le avtentifikacijo z javnim kjučem + Set authorized_keys for '%1': - Nastavi authorized_keys za '%1': + @@ -440,42 +400,22 @@ Play sound when finished - Zaigraj zvok, ko končaš + Eject media when finished - Izvrzi medij, ko končaš + Enable telemetry - Omogoči telemetrijo + SAVE - SHRANI - - - Disable overscan - Onemogoči overscan - - - Set username: - Nastavi uporabniško ime: - - - Set password for '%1' user: - Nastavi geslo za uporabnika '%1': - - - Skip first-run wizard - Preskoči čarovnika prvega zagona - - - Persistent settings - Trajne nastavitve + @@ -483,7 +423,7 @@ Internal SD card reader - Vgrajeni čitalec SD kartic + @@ -494,29 +434,29 @@ - + Would you like to apply image customization settings? - - NO - NE - - - - NO, CLEAR SETTINGS - NE, POBRIŠI NASTAVITVE - - - - YES - DA - - - + EDIT SETTINGS - UREDI NASTAVITVE + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -524,7 +464,7 @@ Raspberry Pi Imager v%1 - Raspberry Pi Imager v%1 + @@ -543,65 +483,60 @@ - - + + Operating System - Operacijski Sistem + - + CHOOSE OS - IZBERI OS + - + Select this button to change the operating system - Izberite ta gumb za menjavo operacijskega sistema + - - + + Storage - SD kartica ali USB disk + - - + + CHOOSE STORAGE - IZBERI DISK + - - WRITE - ZAPIŠI - - - + Select this button to change the destination storage device - Uporabite ta gumb za spremembo ciljnega diska + - + CANCEL WRITE - PREKINI ZAPISOVANJE + - - + + Cancelling... - Prekinjam... + - + CANCEL VERIFY - PREKINI PREVERJANJE + - - - + + + Finalizing... - Zakjučujem... + @@ -609,201 +544,187 @@ - + Select this button to start writing the image - Izberite za gumb za začetek pisanja slike diska - - - - Select this button to access advanced settings - + Using custom repository: %1 - Uporabljam repozitorij po meri: %1 - - - - Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - Navigacija s tipkovnico: <tab> pojdi na naslednji gumb <preslednica> pritisni gumb/izberi element <puščica gor/dol> premakni gor/dol po seznamu - - - - Language: - Jezik: - - - - Keyboard: - Tipkovnica: - - - - Pi model: - + + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists + + + + + Language: + + + + + Keyboard: + + + + [ All ] - + Back - Nazaj + - + Go back to main menu - Pojdi nazaj na glavni meni + - + Released: %1 - Izdano: %1 + - + Cached on your computer - Predpolnjeno na vaš računalnik + - + Local file - Lokalna datoteka + - - Online - %1 GB download - Iz spleta - %1 GB prenos - - - - - Mounted as %1 - Priklopljen kot %1 - - - - [WRITE PROTECTED] - [ZAŠČITENO PRED PISANJEM] - - - - Are you sure you want to quit? - A ste prepričani, da želite končat? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imager je še vedno zaposlen.<br>A ste prepričani, da želite končati? - - - - Warning - Opozorilo - - - - Preparing to write... - Priprava na pisanje... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - VSI obstoječi podatki na '%1' bodo izbrisani.<br>A ste prepričani, da želite nadaljevati? - - - - Update available - Posodobitev na voljo - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - Na voljo je nova verzija tega programa. <br>Želite obiskati spletno stran za prenos? - - - - Error downloading OS list from Internet - Napaka prenosa seznama OS iz interneta - - - - Writing... %1% - Pišem...%1% - - - - Verifying... %1% - Preverjam... %1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - Priprava na zapisovanje... (%1) + - + Error - Napaka + - + Write Successful - Zapisovanje uspešno + - - + + Erase - Odstrani + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1</b> je pobrisan<br><br>Sedaj lahko odstranite SD kartico iz čitalca oz iztaknete USB disk + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - <b>%1</b> je zapisan na <b>%2</b><br><br>Sedaj lahko odstranite SD kartico iz čitalca oz iztaknete USB disk + - + Error parsing os_list.json - Napaka procesiranja os_list.json + - + Format card as FAT32 - Formatiraj disk v FAT32 + - + Use custom - Uporabi drugo + - + Select a custom .img from your computer - Izberite drug .img iz vašega računalnika + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Najprej prikopite USB disk, ki vsebuje slike diskov.<br>Slike diskov se morajo nahajati v korenski mapi USB diska. + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - SD kartica je zaščitena pred pisanjem.<br>Premaknite stikalo zaklepanja, na levi strani kartice in poizkusite znova. - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> je zapisan na <b>%2</b> + diff --git a/src/i18n/rpi-imager_tr.ts b/src/i18n/rpi-imager_tr.ts index 42f9b86..2d74740 100644 --- a/src/i18n/rpi-imager_tr.ts +++ b/src/i18n/rpi-imager_tr.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - Arşiv çıkarılırken hata oluştu: %1 + Error mounting FAT32 partition - FAT32 bölümü bağlanırken hata oluştu + Operating system did not mount FAT32 partition - İşletim sistemi FAT32 bölümünü bağlamadı + Error changing to directory '%1' - Dizin değiştirirken hata oluştu '%1' - - - Error writing to storage - Depolama birimine yazma hatası + @@ -39,128 +35,120 @@ opening drive - sürücü açılıyor + Error running diskpart: %1 - Diskpart çalıştırılırken hata oluştu: %1 + Error removing existing partitions - Mevcut bölümler kaldırılırken hata oluştu + Authentication cancelled - Kimlik doğrulama iptal edildi + Error running authopen to gain access to disk device '%1' - '%1' disk aygıtına erişmek için authopen çalıştırılırken hata oluştu + 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'). - 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. + Cannot open storage device '%1'. - Depolama cihazı açılamıyor '%1'. + discarding existing data on drive - sürücüdeki mevcut verileri sil + zeroing out first and last MB of drive - sürücünün ilk ve son MB'sini sıfırlama + Write error while zero'ing out MBR - MBR sıfırlanırken yazma hatası + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - 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ı) + starting download - indirmeye başlanıyor + Error downloading: %1 - İndirilirken hata oluştu: %1 + Access denied error while writing file to disk. - Dosyayı diske yazarken erişim reddedildi hatası + 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. - 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. + Error writing file to disk - Dosyayı diske yazma hatası + Download corrupt. Hash does not match - İndirme bozuk. Hash eşleşmiyor + Error writing to storage (while flushing) - Depolama alanına yazma hatası (flushing sırasında) + Error writing to storage (while fsync) - Depoya yazma hatası (fsync sırasında) + Error writing first block (partition table) - İlk bloğu yazma hatası (bölüm tablosu) + Error reading from storage.<br>SD card may be broken. - Depolamadan okuma hatası.<br>SD kart arızalı olabilir. + Verifying write failed. Contents of SD card is different from what was written to it. - Yazma doğrulanamadı. SD kartın içeriği, üzerine yazılandan farklı. + Customizing image - - Error mounting FAT32 partition - FAT32 bölümü bağlanırken hata oluştu - - - Operating system did not mount FAT32 partition - İşletim sistemi FAT32 bölümünü bağlamadı - DriveFormatThread @@ -169,37 +157,37 @@ Error partitioning: %1 - Bölümleme hatası: %1 + Error starting fat32format - fat32format başlatılırken hata oluştu + Error running fat32format: %1 - fat32format çalıştırılırken hata oluştu: %1 + Error determining new drive letter - Yeni sürücü harfi belirlenirken hata oluştu + Invalid device: %1 - Geçersiz cihaz: %1 + Error formatting (through udisks2) - Hatalı biçimlendirme (udisks2 aracılığıyla) + Error starting sfdisk - sfdisk başlatılırken hata oluştu + @@ -209,43 +197,43 @@ Error starting mkfs.fat - mkfs.fat başlatılırken hata oluştu + Error running mkfs.fat: %1 - mkfs.fat çalıştırılırken hata oluştu: %1 + Formatting not implemented for this platform - Bu platform için biçimlendirme uygulanmadı + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - Depolama kapasitesi yeterince büyük değil.<br>En az %1 GB olması gerekiyor + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - Giriş dosyası geçerli bir disk görüntüsü değil.<br>%1 bayt dosya boyutu 512 baytın katı değil. + - + Downloading and writing image - Görüntü indirme ve yazma + - + Select image - Imaj seç + - + Would you like to prefill the wifi password from the system keychain? @@ -255,12 +243,12 @@ opening image file - imaj dosyası açılıyor + Error opening image file - Imaj dosyası açılırken hata oluştu + @@ -268,17 +256,17 @@ NO - HAYIR + YES - EVET + CONTINUE - DEVAM ET + @@ -435,7 +423,7 @@ Internal SD card reader - Dahili SD kart okuyucu + @@ -446,28 +434,28 @@ - + Would you like to apply image customization settings? - - NO - HAYIR + + EDIT SETTINGS + - + NO, CLEAR SETTINGS - + YES - EVET + - - EDIT SETTINGS + + NO @@ -476,7 +464,7 @@ Raspberry Pi Imager v%1 - Raspberry Pi Imaj Yöneticisi v%1 + @@ -495,65 +483,60 @@ - - + + Operating System - İşletim sistemi + - + CHOOSE OS - İŞLETİM SİSTEMİ SEÇİN + - + Select this button to change the operating system - İşletim sistemini değiştirmek için bu düğmeyi seçin + - - + + Storage - SD Kart + - - + + CHOOSE STORAGE - SD KART SEÇİN + - - WRITE - YAZ - - - + Select this button to change the destination storage device - + CANCEL WRITE - YAZMAYI İPTAL ET + - - + + Cancelling... - İptal ediliyor... + - + CANCEL VERIFY - DOĞRULAMA İPTALİ + - - - + + + Finalizing... - Bitiriliyor... + @@ -561,206 +544,187 @@ - + Select this button to start writing the image - Görüntüyü yazmaya başlamak için bu düğmeyi seçin - - - - Select this button to access advanced settings - + Using custom repository: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Language: - + Keyboard: - - Pi model: - - - - + [ All ] - + Back - Geri + - + Go back to main menu - Ana menüye dön + - + Released: %1 - Yayın: %1 + - + Cached on your computer - Bilgisayarınızda önbelleğe alındı - + - + Local file - Yerel dosya + - - Online - %1 GB download - Çevrimiçi -%1 GB indir - - - - - Mounted as %1 - %1 olarak bağlandı. - - - - [WRITE PROTECTED] - [YAZMA KORUMALI] - - - - Are you sure you want to quit? - Çıkmak istediğine emin misin? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imager hala meşgul.<br>Çıkmak istediğinizden emin misiniz? - - - - Warning - Uyarı - - - - Preparing to write... - Yazdırmaya hazırlanıyor... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - '%1' üzerindeki mevcut tüm veriler silinecek.<br>Devam etmek istediğinizden emin misiniz? - - - - Update available - Güncelleme bulunuyor - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - Görüntüleyicinin daha yeni bir sürümü var. <br> İndirmek için web sitesini ziyaret etmek ister misiniz? - - - - Error downloading OS list from Internet - İnternetten işletim sistemi listesi indirilirken hata oluştu - - - - Writing... %1% - Yazılıyor... %1% - - - - Verifying... %1% - Doğrulanıyor... %1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - Yazdırmaya hazırlanıyor... (%1) + - + Error - Hata + - + Write Successful - Başarılı Yazıldı + - - + + Erase - Sil + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1</b> silindi <br><br> Artık SD kartı okuyucudan çıkarabilirsiniz + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - <b>%1</b> <b>%2</b><br><br> üzerine yazıldı. Artık SD kartı okuyucudan çıkarabilirsiniz + - + Error parsing os_list.json - os_list.json ayrıştırma hatası + - + Format card as FAT32 - Kartı FAT32 olarak biçimlendir + - + Use custom - Özel imaj kullan + - + Select a custom .img from your computer - Bilgisayarınızdan özel bir .img seçin + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Ö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. + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - SD kart yazma korumalı. <br> Kartın sol tarafındaki kilit anahtarını yukarı itin ve tekrar deneyin. - - - Select this button to change the destination SD card - Hedef SD kartı değiştirmek için bu düğmeyi seçin - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> <b>%2</b><br><br> üzerine yazıldı + diff --git a/src/i18n/rpi-imager_uk.ts b/src/i18n/rpi-imager_uk.ts index eab21fb..23c57dc 100644 --- a/src/i18n/rpi-imager_uk.ts +++ b/src/i18n/rpi-imager_uk.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - Помилка розпакування архіва: %1 + Error mounting FAT32 partition - Помилка монтування FAT32 розділу + Operating system did not mount FAT32 partition - Операційна система не монтувала FAT32 розділ + Error changing to directory '%1' - Помилка при зміні каталогу на '%1' - - - Error writing to storage - Помилка запису на накопичувач + @@ -34,124 +30,124 @@ unmounting drive - диск від'єднується + opening drive - диск відкривається + Error running diskpart: %1 - Помилка при виконанні diskpart: %1 + Error removing existing partitions - Помилка при видаленні існуючих розділів + Authentication cancelled - Аутентифікація скасована + Error running authopen to gain access to disk device '%1' - Помилка виконання authopen для отримання доступу до пристроя '%1' + 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'). - Переконайтеся, що у Raspberry Pi Imager у налаштуваннях приватності (у розділі "файли та каталоги") є доступ до змінних розділів. Або дайте програмі доступ до усього диску. + Cannot open storage device '%1'. - Не вдалося відкрити накопичувач '%1'. + discarding existing data on drive - видалення існуючих даних на диску + zeroing out first and last MB of drive - обнулювання першого і останнього мегабайта диску + Write error while zero'ing out MBR - Помилка при обнулюванні MBR + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - Помилка запису під час обнулювання останнього розділу карти пам'яті.<br>Можливо заявлений об'єм карти не збігається з реальним (можливо карта є підробленою). + starting download - початок завантаження + Error downloading: %1 - Помилка завантаження: %1 + Access denied error while writing file to disk. - Помилка доступу при записі файлу на диск. + 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. - Схоже, що увімкнено контрольований доступ до каталогу (Controlled Folder Access). Додайте rpi-imager.exe і fat32format.exe в список виключення та спробуйте ще раз. + Error writing file to disk - Помилка запису файлу на диск + Download corrupt. Hash does not match - Завантаження пошкоджено. Хеш сума не збігається + Error writing to storage (while flushing) - Помилка запису на накопичувач (при скидуванні) + Error writing to storage (while fsync) - Помилка запису на накопичувач (при виконанні fsync) + Error writing first block (partition table) - Помилка під час запису першого блоку (таблиця розділів) + Error reading from storage.<br>SD card may be broken. - Помилка читання накопичувача.<br>SD-карта пам'яті може бути пошкоджена. + Verifying write failed. Contents of SD card is different from what was written to it. - Помилка перевірки запису. Зміст SD-карти пам'яті відрізняється від того, що було записано туди. + Customizing image - Налаштування образа + @@ -161,85 +157,85 @@ Error partitioning: %1 - Помилка створення роздіу: %1 + Error starting fat32format - Помилка запуску fat32format + Error running fat32format: %1 - Помилка під час виконання fat32format: %1 + Error determining new drive letter - Помилка визначення нової букви диску + Invalid device: %1 - Не правильний пристрій: %1 + Error formatting (through udisks2) - Помилка форматування (через udisks2) + Error starting sfdisk - Помилка запуску sfdisk + Partitioning did not create expected FAT partition %1 - При створенні розділів не було створено очікуваний розділ FAT %1 + Error starting mkfs.fat - Помилка запуску mkfs.fat + Error running mkfs.fat: %1 - Помилка виконання mkfs.fat: %1 + Formatting not implemented for this platform - Форматування не доступно на цій платформі + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - Місця на накопичувачі недостатньо.<br>Треба, щоб було хоча б %1 ГБ. + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - Обраний файл не є правильним образом диску.<br>Розмір файла %1 байт не є кратним 512 байт. + - + Downloading and writing image - Завантаження і запис образу + - + Select image - Обрати образ + - + Would you like to prefill the wifi password from the system keychain? - Вказати пароль від Wi-Fi автоматично із системного ланцюга ключів? + @@ -247,12 +243,12 @@ opening image file - відкривання файлу образа + Error opening image file - Помилка при відкриванні файлу образу + @@ -260,22 +256,22 @@ NO - НІ + YES - ТАК + CONTINUE - ПРОДОВЖИТИ + QUIT - ВИЙТИ + @@ -283,22 +279,22 @@ Advanced options - Розширені опції + Image customization options - Налаштування образу + for this session only - тільки для цієї сесії + to always use - завжди використовувати + @@ -318,73 +314,73 @@ Set hostname: - Змінити ім'я хосту + Set username and password - Встановити ім'я користувача і пароль + Username: - Ім'я користувача: + Password: - Пароль: + Configure wireless LAN - Налаштувати Wi-Fi + SSID: - SSID: + Show password - Показати пароль + Hidden SSID - Схована SSID + Wireless LAN country: - Країна Wi-Fi: + Set locale settings - Змінити налаштування регіону + Time zone: - Часова зона: + Keyboard layout: - Розкладка клавіатури: + Enable SSH - Увімкнути SHH + Use password authentication - Використовувати аутентефікацію черз пароль + @@ -394,7 +390,7 @@ Set authorized_keys for '%1': - Встановити authorized_keys для '%1': + @@ -404,26 +400,22 @@ Play sound when finished - Відтворити звук після завершення + Eject media when finished - Витягнути накопичувач після завершення + Enable telemetry - Увімкнути телеметрію + SAVE - ЗБЕРЕГТИ - - - Persistent settings - Постійні налаштування + @@ -431,7 +423,7 @@ Internal SD card reader - Внутрішній считувач SD карт + @@ -442,29 +434,29 @@ - + Would you like to apply image customization settings? - - NO - НІ - - - - NO, CLEAR SETTINGS - НІ, ОЧИСТИТИ НАЛАШТУВАННЯ - - - - YES - ТАК - - - + EDIT SETTINGS - РЕДАГУВАТИ НАЛАШТУВАННЯ + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -472,7 +464,7 @@ Raspberry Pi Imager v%1 - Raspberry Pi Imager, версія %1 + @@ -491,65 +483,60 @@ - - + + Operating System - Операційна система + - + CHOOSE OS - ОБРАТИ ОС + - + Select this button to change the operating system - Натисніть на цю кнопку, щоб змінити операційну систему + - - + + Storage - Накопичувач + - - + + CHOOSE STORAGE - ОБРАТИ НАКОПИЧУВАЧ + - - WRITE - ЗАПИСАТИ - - - + Select this button to change the destination storage device - Натисніть цю кнопку, щоб змінити пристрій призначення + - + CANCEL WRITE - СКАСУВАТИ ЗАПИСУВАННЯ + - - + + Cancelling... - Скасування... + - + CANCEL VERIFY - СКАСУВАТИ ПЕРЕВІРКУ + - - - + + + Finalizing... - Завершення... + @@ -557,197 +544,187 @@ - + Select this button to start writing the image - Натисніть цю кнопку, щоб розпочати запис образу - - - - Select this button to access advanced settings - Натисніть цю кнопку, щоб отримати доступ до розширених опцій - - - - Using custom repository: %1 - Користуючись власним репозиторієм: %1 - - - - Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - Навігація клавіатурою: клавіша <Tab> переміститися на наступну кнопку, клавіша <Пробіл> натиснути кнопку/обрати елемент, клавіши з <стрілками вниз/вгору> переміститися вниз/вгору по списку - - - - Language: - Мова: - - - - Keyboard: - Клавіатура: - - - - Pi model: - + + Using custom repository: %1 + + + + + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists + + + + + Language: + + + + + Keyboard: + + + + [ All ] - + Back - Назад + - + Go back to main menu - Повернутися у головне меню + - + Released: %1 - Випущено: %1 + - + Cached on your computer - Кешовано на вашому комп'ютері + - + Local file - Локальний файл + - - Online - %1 GB download - Онлайн - потрібно завантажити %1 ГБ - - - - - Mounted as %1 - Примонтовано як %1 - - - - [WRITE PROTECTED] - ЗАХИЩЕНО ВІД ЗАПИСУ - - - - Are you sure you want to quit? - Бажаєте вийти? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imager все ще зайнятий.<br>Ви впевнені, що бажаєте вийти? - - - - Warning - Увага - - - - Preparing to write... - Підготовка до запису... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - Усі уснуючі дані у '%1' будуть видалені.<br> Ви впевнені, що бажаєте продовжити? - - - - Update available - Доступно оновлення - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - Доступна нова версія Imager.<br>Бажаєте завітати на сайт та завантажити її? - - - - Error downloading OS list from Internet - Помилка завантаження списку ОС із Інтернету - - - - Writing... %1% - Записування...%1% - - - - Verifying... %1% - Перевірка...%1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - Підготовка до запису... (%1) + - + Error - Помилка + - + Write Successful - Успішно записано + - - + + Erase - Видалити + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1</b> був успішно видалено.br><br> тепер можна дістати SD карту із считувача + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - Записування <b>%1</b> на <b>%2</b> виконано <br><br> Тепер можна дістати SD карту із считувача + - + Error parsing os_list.json - Помилка парсування os_list.json + - + Format card as FAT32 - Форматувати карту у FAT32 + - + Use custom - Власний образ + - + Select a custom .img from your computer - Обрати власний .img з вашого комп'ютера + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - Спочатку під'єднайте USB-накопичувач з образами.<br>Образи повинні знаходитися у корінному каталогу USB-накопичувача. + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - SD карта захищена від запису.<br>перетягніть перемикач на лівій стороні картки вгору, і спробуйте ще раз. + diff --git a/src/i18n/rpi-imager_zh.ts b/src/i18n/rpi-imager_zh.ts index 3ab8a83..ab1b089 100644 --- a/src/i18n/rpi-imager_zh.ts +++ b/src/i18n/rpi-imager_zh.ts @@ -7,26 +7,22 @@ Error extracting archive: %1 - 解压 %1 时出错 + Error mounting FAT32 partition - 挂载FAT32分区错误 + Operating system did not mount FAT32 partition - 操作系统未能挂载FAT32分区 + Error changing to directory '%1' - 进入文件夹 “%1” 错误 - - - Error writing to storage - 写入时出错 + @@ -39,143 +35,119 @@ opening drive - 打开驱动器 + Error running diskpart: %1 - 运行 “diskpart” 命令错误 %1 + Error removing existing partitions - 删除现有分区时出错 + Authentication cancelled - 认证已取消 + Error running authopen to gain access to disk device '%1' - 运行authopen以获得对磁盘设备'%1'的访问权限时出错 + 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'). - 请验证是否在隐私设置中允许“ Raspberry Pi Imager”访问“可移动卷”(在“文件和文件夹”下,或者为它提供“完全磁盘访问”)的权限。 + Cannot open storage device '%1'. - 无法打开存储设备'%1'。 + discarding existing data on drive - 删除现有数据 + zeroing out first and last MB of drive - 清空驱动器未使用的数据 + Write error while zero'ing out MBR - 将MBR清零时写入错误 + Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - 写入镜像失败<br>SD卡可能损坏。 + starting download - 开始下载 + Error downloading: %1 - 下载文件错误,已下载:%1 + Access denied error while writing file to disk. - 将文件写入磁盘时访问被拒绝。 + 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. - 受控文件夹访问似乎已启用。 请将rpi-imager.exe和fat32format.exe都添加到允许的应用程序列表中,然后重试。 + Error writing file to disk - 将文件写入磁盘时出错 + Download corrupt. Hash does not match - 下载的文件损坏。 哈希值不匹配 + Error writing to storage (while flushing) - 刷写存储时出错 + Error writing to storage (while fsync) - 在fsync时写入存储时出错 + Error writing first block (partition table) - 写入第一个块(分区表)时出错 + Error reading from storage.<br>SD card may be broken. - 从存储读取数据时错误。<br>SD卡可能已损坏。 + Verifying write failed. Contents of SD card is different from what was written to it. - 验证写入失败。 SD卡的内容与写入的内容不同。 + Customizing image - 使用自定义镜像 - - - Waiting for FAT partition to be mounted - 等待FAT分区挂载 - - - Error mounting FAT32 partition - 挂载FAT32分区错误 - - - Operating system did not mount FAT32 partition - 操作系统未能挂载FAT32分区 - - - Error creating firstrun.sh on FAT partition - 在FAT分区上创建firstrun.sh脚本文件时出错 - - - Error writing to config.txt on FAT partition - 在FAT分区上写入config.txt时出错 - - - Error writing to cmdline.txt on FAT partition - 在FAT分区上写入cmdline.txt时出错 + @@ -185,37 +157,37 @@ Error partitioning: %1 - 错误分区:%1 + Error starting fat32format - 启动fat32format命令时出错 + Error running fat32format: %1 - 运行fat32format时出错:%1 + Error determining new drive letter - 确定新驱动器号时出错 + Invalid device: %1 - 无效的设备:%1 + Error formatting (through udisks2) - 格式化错误 + Error starting sfdisk - 启动sfdisk命令时出错 + @@ -225,43 +197,43 @@ Error starting mkfs.fat - 启动mkfs.fat时出错 + Error running mkfs.fat: %1 - 运行mkfs.fat时出错:%1 + Formatting not implemented for this platform - 暂不支持此平台的格式化 + ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - 存储容量不足。<br>至少需要%1 GB的空白空间. + - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - 输入文件不是有效的磁盘映像。<br>文件大小%1字节不是512字节的倍数。 + - + Downloading and writing image - 下载和写入镜像 + - + Select image - 选择镜像 + - + Would you like to prefill the wifi password from the system keychain? @@ -271,12 +243,12 @@ opening image file - 导入系统镜像 + Error opening image file - 打开图像文件时出错 + @@ -284,17 +256,17 @@ NO - + YES - + CONTINUE - 继续 + @@ -307,22 +279,22 @@ Advanced options - 高级设置 + Image customization options - 镜像自定义选项 + for this session only - 仅限本次 + to always use - 永久保存 + @@ -342,7 +314,7 @@ Set hostname: - 设置主机名: + @@ -358,22 +330,22 @@ Password: - 密码: + Configure wireless LAN - 配置WiFi + SSID: - 热点名: + Show password - 显示密码 + @@ -383,42 +355,42 @@ Wireless LAN country: - WIFI国家: + Set locale settings - 语言设置 + Time zone: - 时区: + Keyboard layout: - 键盘布局: + Enable SSH - 开启SSH服务 + Use password authentication - 使用密码登录 + Allow public-key authentication only - 只允许使用公匙登录 + Set authorized_keys for '%1': - 设置%1用户的登录密匙: + @@ -428,38 +400,22 @@ Play sound when finished - 完成后播放提示音 + Eject media when finished - 完成后弹出磁盘 + Enable telemetry - 启用遥测 + SAVE - 保存 - - - Disable overscan - 禁用扫描 - - - Set password for '%1' user: - 设置'%1'用户的密码: - - - Skip first-run wizard - 跳过首次启动向导 - - - Persistent settings - 永久设置 + @@ -467,7 +423,7 @@ Internal SD card reader - 内置SD卡读卡器 + @@ -478,29 +434,29 @@ - + Would you like to apply image customization settings? - - NO - - - - - NO, CLEAR SETTINGS - 清空所有设置 - - - - YES - - - - + EDIT SETTINGS - 编辑设置 + + + + + NO, CLEAR SETTINGS + + + + + YES + + + + + NO + @@ -508,7 +464,7 @@ Raspberry Pi Imager v%1 - 树莓派镜像烧录器 v%1 + @@ -527,65 +483,60 @@ - - + + Operating System - 请选择需要写入的操作系统 + - + CHOOSE OS - 选择操作系统 + - + Select this button to change the operating system - 更改操作系统 + - - + + Storage - 储存卡 + - - + + CHOOSE STORAGE - 选择SD卡 + - + Select this button to change the destination storage device - 选择此按钮以更改目标存储设备 + - - WRITE - 烧录 - - - + CANCEL WRITE - 取消写入 + - - + + Cancelling... - 取消... + - + CANCEL VERIFY - 取消验证 + - - - + + + Finalizing... - 正在完成... + @@ -593,213 +544,187 @@ - + Select this button to start writing the image - 开始写入 - - - - Select this button to access advanced settings - + Using custom repository: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Language: - + Keyboard: - - Pi model: - - - - + [ All ] - + Back - 返回 + - + Go back to main menu - 回到主页 + - + Released: %1 - 发布时间:%1 + - + Cached on your computer - 缓存在本地磁盘里 + - + Local file - 本地文件 + - - Online - %1 GB download - 需要下载:%1 GB - - - - - Mounted as %1 - 挂载到:%1 上 - - - - [WRITE PROTECTED] - [写保护] - - - - Are you sure you want to quit? - 你确定你要退出吗? - - - - Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - Raspberry Pi Imager还未完成任务。<br>您确定要退出吗? - - - - Warning - 警告 - - - - Preparing to write... - 准备写入... - - - - All existing data on '%1' will be erased.<br>Are you sure you want to continue? - '%1'上的所有现有数据将被删除。<br>确定要继续吗? - - - - Update available - 检测到更新 - - - - There is a newer version of Imager available.<br>Would you like to visit the website to download it? - 有较新版本的rpi-imager。<br>需要下载更新吗? - - - - Error downloading OS list from Internet - 下载镜像列表错误 - - - - Writing... %1% - 写入中...%1% - - - - Verifying... %1% - 验证文件中...%1% + Online - %1 GB download + + + + Mounted as %1 + + + + + [WRITE PROTECTED] + + + + + Are you sure you want to quit? + + + + + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? + + + + + Warning + + + + + Preparing to write... + + + + + All existing data on '%1' will be erased.<br>Are you sure you want to continue? + + + + + Update available + + + + + There is a newer version of Imager available.<br>Would you like to visit the website to download it? + + + + + Error downloading OS list from Internet + + + + + Writing... %1% + + + + + Verifying... %1% + + + + Preparing to write... (%1) - 写入中 (%1) + - + Error - 错误 + - + Write Successful - 烧录成功 + - - + + Erase - 擦除 + - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - <b>%1 </ b>已被删除<br> <br>您现在可以从读取器中取出SD卡 + - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - <b>%1</b> 已经成功烧录到 <b>%2</b><br><br>上了,你可以卸载SD卡了 + - + Error parsing os_list.json - 解析 os_list.json 错误 + - + Format card as FAT32 - 将SD卡格式化为FAT32格式 + - + Use custom - 使用自定义镜像 + - + Select a custom .img from your computer - 使用下载的系统镜像文件烧录 + - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - 连接包含镜像的U盘。<br>镜像必须位于U盘的根文件夹中。 + - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - SD卡具有写保护。<br>尝试向上推SD卡的左侧的锁定开关,然后重试。 - - - Select this button to change the destination SD card - 更改目标SD卡 - - - <b>%1</b> has been written to <b>%2</b> - <b>%1</b> 已经成功烧录到 <b>%2</b> - - - QUIT APP - 退出 - - - CONTINUE - 继续 + From f2718a05fff8a62e0c51b4bf28816eb4968aa5f3 Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Mon, 16 Oct 2023 11:47:24 +0100 Subject: [PATCH 19/25] qml: Increase device selector icon size to 64x64 --- src/main.qml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main.qml b/src/main.qml index d1c96ba..a42428b 100644 --- a/src/main.qml +++ b/src/main.qml @@ -729,10 +729,10 @@ ApplicationWindow { Image { source: icon == "icons/ic_build_48px.svg" ? "icons/cat_misc_utility_images.png": icon - Layout.preferredHeight: 40 - Layout.preferredWidth: 40 - sourceSize.width: 40 - sourceSize.height: 40 + Layout.preferredHeight: 64 + Layout.preferredWidth: 64 + sourceSize.width: 64 + sourceSize.height: 64 fillMode: Image.PreserveAspectFit verticalAlignment: Image.AlignVCenter Layout.alignment: Qt.AlignVCenter From a5c736f230519f4cf15adefd18979016068af7aa Mon Sep 17 00:00:00 2001 From: "Tom Dewey tom.dewey@raspberrypi.com" Date: Mon, 16 Oct 2023 13:05:15 +0100 Subject: [PATCH 20/25] Revert "i18n: Advanced Settings -> OS Customisation" This reverts commit 2fb58dc01c1159f1ea11b056f086e9fc21c5c281. The original commit included an unexpected deletion of _all_ translations in certain languages. This was unintented, and appears to have been a merging artefact. This change will be re-submitted as a separate PR. --- README.md | 4 +- src/OptionsPopup.qml | 6 +- src/UseSavedSettingsPopup.qml | 12 +- src/i18n/rpi-imager_ca.ts | 419 +++++++++++++++-------------- src/i18n/rpi-imager_de.ts | 473 ++++++++++++++++++-------------- src/i18n/rpi-imager_en.ts | 155 ++++++----- src/i18n/rpi-imager_es.ts | 431 +++++++++++++++-------------- src/i18n/rpi-imager_fr.ts | 463 ++++++++++++++++++-------------- src/i18n/rpi-imager_it.ts | 492 ++++++++++++++++++++-------------- src/i18n/rpi-imager_ja.ts | 465 ++++++++++++++++++-------------- src/i18n/rpi-imager_ko.ts | 467 ++++++++++++++++++-------------- src/i18n/rpi-imager_nl.ts | 491 +++++++++++++++++++-------------- src/i18n/rpi-imager_ru.ts | 453 +++++++++++++++++-------------- src/i18n/rpi-imager_sk.ts | 477 ++++++++++++++++++-------------- src/i18n/rpi-imager_sl.ts | 465 +++++++++++++++++++------------- src/i18n/rpi-imager_tr.ts | 346 +++++++++++++----------- src/i18n/rpi-imager_uk.ts | 417 ++++++++++++++-------------- src/i18n/rpi-imager_zh.ts | 449 ++++++++++++++++++------------- 18 files changed, 3681 insertions(+), 2804 deletions(-) diff --git a/README.md b/README.md index 9a9c03b..525cb00 100644 --- a/README.md +++ b/README.md @@ -197,8 +197,8 @@ On macOS, disable it by editing the property list for the application: defaults write org.raspberrypi.Imager.plist telemetry -bool NO ``` -### OS Customization +### Advanced options -When using the app, press CTRL + SHIFT + X to reveal the **OS Customization** dialog. +When using the app, press CTRL + SHIFT + X to reveal the **Advanced options** dialog. In here, you can specify several things you would otherwise set in the boot configuration files. For example, you can enable SSH, set the Wi-Fi login, and specify your locale settings for the system image. diff --git a/src/OptionsPopup.qml b/src/OptionsPopup.qml index db43505..568d1cd 100644 --- a/src/OptionsPopup.qml +++ b/src/OptionsPopup.qml @@ -17,7 +17,7 @@ Window { maximumWidth: width minimumHeight: 125 height: Math.min(750, cl.implicitHeight) - title: qsTr("OS Customization") + title: qsTr("Advanced options") property bool initialized: false property bool hasSavedSettings: false @@ -49,7 +49,7 @@ Window { RowLayout { Label { - text: qsTr("OS customization options") + text: qsTr("Image customization options") } ComboBox { id: comboSaveSettings @@ -539,7 +539,7 @@ Window { /* Lacking an easy cross-platform to fetch keyboard layout from host system, just default to "gb" for people in UK time zone for now, and "us" for everyone else */ - if (tz === "Europe/London") { + if (tz == "Europe/London") { fieldKeyboardLayout.currentIndex = fieldKeyboardLayout.find("gb") } else { fieldKeyboardLayout.currentIndex = fieldKeyboardLayout.find("us") diff --git a/src/UseSavedSettingsPopup.qml b/src/UseSavedSettingsPopup.qml index d17790d..f002763 100644 --- a/src/UseSavedSettingsPopup.qml +++ b/src/UseSavedSettingsPopup.qml @@ -70,7 +70,7 @@ Popup { Layout.topMargin: 10 font.family: roboto.name font.bold: true - text: qsTr("Use OS customization?") + text: qsTr("Use image customisation?") } Text { @@ -85,7 +85,7 @@ Popup { Layout.topMargin: 25 Layout.alignment: Qt.AlignVCenter | Qt.AlignHCenter Accessible.name: text.replace(/<\/?[^>]+(>|$)/g, "") - text: qsTr("Would you like to apply OS customization settings?") + text: qsTr("Would you like to apply image customization settings?") } RowLayout { @@ -95,10 +95,10 @@ Popup { id: buttons ImButton { - text: qsTr("EDIT SETTINGS") + text: qsTr("NO") onClicked: { msgpopup.close() - msgpopup.editSettings() + msgpopup.no() } Material.foreground: activeFocus ? "#d1dcfb" : "#ffffff" Material.background: "#c51a4a" @@ -127,10 +127,10 @@ Popup { } ImButton { - text: qsTr("NO") + text: qsTr("EDIT SETTINGS") onClicked: { msgpopup.close() - msgpopup.no() + msgpopup.editSettings() } Material.foreground: activeFocus ? "#d1dcfb" : "#ffffff" Material.background: "#c51a4a" diff --git a/src/i18n/rpi-imager_ca.ts b/src/i18n/rpi-imager_ca.ts index b3e486a..4239a25 100644 --- a/src/i18n/rpi-imager_ca.ts +++ b/src/i18n/rpi-imager_ca.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + S'ha produït un error en extreure l'arxiu: %1 Error mounting FAT32 partition - + S'ha produït un error en muntar la partició FAT32 Operating system did not mount FAT32 partition - + El sistema operatiu no ha muntat la partició FAT32 Error changing to directory '%1' - + S'ha produït un error en canviar al directori «%1» + + + Error writing to storage + S'ha produït un error en escriure a l'emmagatzematge @@ -30,124 +34,124 @@ unmounting drive - + S'està desmuntant el dispositiu opening drive - + S'està obrint la unitat Error running diskpart: %1 - + S'ha produït un error en executar «diskpart»: %1 Error removing existing partitions - + S'ha produït un error en eliminar les particions existents. Authentication cancelled - + S'ha cancel·lat l'autenticació Error running authopen to gain access to disk device '%1' - + S'ha produït un error en executar «authopen» per a obtenir l'accés al dispositiu de disc «%1» 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'). - + 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») Cannot open storage device '%1'. - + No s'ha pogut obrir el dispositiu d'emmagatzematge «%1» discarding existing data on drive - + S'estan descartant les dades existents a la unitat zeroing out first and last MB of drive - + S'està esborrant amb zeros el primer i l'últim MB de la unitat Write error while zero'ing out MBR - + S'ha produït un error en esborrar amb zeros l'«MBR». Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + 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ó) starting download - + S'està iniciant la baixada Error downloading: %1 - + S'ha produït un error en la baixada: %1 Access denied error while writing file to disk. - + S'ha produït un error d'accés denegat en escriure el fitxer al disc. 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. - + 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. Error writing file to disk - + S'ha produït un error en escriure el fitxer al disc Download corrupt. Hash does not match - + La baixada està corrompuda. El «hash» no coincideix Error writing to storage (while flushing) - + S'ha produït un error en escriure a l'emmagatzematge (procés: Flushing) Error writing to storage (while fsync) - + S'ha produït un error en escriure a l'emmagatzematge (procés: fsync) Error writing first block (partition table) - + S'ha produït un error en escriure el primer bloc (taula de particions) Error reading from storage.<br>SD card may be broken. - + S'ha produït un error en llegir l'emmagatzematge.<br>És possible que la targeta SD estigui malmesa. Verifying write failed. Contents of SD card is different from what was written to it. - + Ha fallat la verificació de l'escriptura. El contingut de la targeta SD és diferent del que s'hi ha escrit. Customizing image - + S'està personalitzant la imatge @@ -157,85 +161,85 @@ Error partitioning: %1 - + S'ha produït un error durant la partició: %1 Error starting fat32format - + S'ha produït un error en iniciar «fat32format» Error running fat32format: %1 - + S'ha produït un error en executar «fat32format»: %1 Error determining new drive letter - + S'ha produït un error en determinar la lletra de la nova unitat Invalid device: %1 - + El dispositiu no és vàlid: %1 Error formatting (through udisks2) - + S'ha produït un error en formatar (a través d'«udisks2») Error starting sfdisk - + S'ha produït un error en iniciar «sfdisk» Partitioning did not create expected FAT partition %1 - + No s'ha pogut crear la partició FAT %1 esperada Error starting mkfs.fat - + S'ha produït un error en iniciar «mkfs.fat» Error running mkfs.fat: %1 - + S'ha produït un error en executar «mkfs.fat»: %1 Formatting not implemented for this platform - + Aquesta plataforma no té implementada la formatació ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + La capacitat de l'emmagatzematge no és suficient.<br>Ha de ser de %1 GB com a mínim. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + 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. - + Downloading and writing image - + S'està baixant i escrivint la imatge - + Select image - + Selecciona una imatge - + Would you like to prefill the wifi password from the system keychain? - + Voleu emplenar la contrasenya del wifi des del clauer del sistema? @@ -243,12 +247,12 @@ opening image file - + S'està obrint el fitxer de la imatge Error opening image file - + S'ha produït un error en obrir el fitxer de la imatge @@ -256,22 +260,22 @@ NO - + NO YES - + CONTINUE - + CONTINUA QUIT - + SURT @@ -279,22 +283,22 @@ Advanced options - + Opcions avançades Image customization options - + Opcions de personalització de les imatges for this session only - + per a aquesta sessió només to always use - + per utilitzar sempre @@ -314,83 +318,83 @@ Set hostname: - + Defineix un nom de la màquina (hostname): Set username and password - + Defineix el nom d'usuari i contrasenya Username: - + Nom d'usuari: Password: - + Contrasenya: Configure wireless LAN - + Configura la wifi SSID: - + SSID: Show password - + Mostra la contrasenya Hidden SSID - + SSID oculta Wireless LAN country: - + País del wifi: Set locale settings - + Estableix la configuració regional Time zone: - + Fus horari: Keyboard layout: - + Disposició del teclat: Enable SSH - + Activa el protocol SSH Use password authentication - + Utilitza l'autenticació de contrasenya Allow public-key authentication only - + Permet només l'autenticació de claus públiques Set authorized_keys for '%1': - + Establiu «authorized_keys» per a l'usuari «%1»: @@ -400,22 +404,26 @@ Play sound when finished - + Fes un so quan acabi Eject media when finished - + Expulsa el mitjà quan acabi Enable telemetry - + Activa la telemetria SAVE - + DESA + + + Persistent settings + Configuració persistent @@ -423,7 +431,7 @@ Internal SD card reader - + Lector de targetes SD intern @@ -434,29 +442,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + NO + + + + NO, CLEAR SETTINGS + NO, ESBORRA LA CONFIGURACIÓ + + + + YES + + + + + EDIT SETTINGS + EDITA LA CONFIGURACIÓ @@ -464,7 +472,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imager v%1 @@ -483,60 +491,65 @@ - - + + Operating System - + Sistema operatiu - + CHOOSE OS - + ESCULL SO - + Select this button to change the operating system - + Seleccioneu aquest botó si voleu canviar el sistema operatiu - - + + Storage - + Emmagatzematge - - + + CHOOSE STORAGE - + ESCULL L'EMMAGATZEMATGE - + + WRITE + ESCRIU + + + Select this button to change the destination storage device - + Seleccioneu aquest botó per a canviar la destinació del dispositiu d'emmagatzematge - + CANCEL WRITE - + CANCEL·LA L'ESCRIPTURA - - + + Cancelling... - + S'està cancel·lant... - + CANCEL VERIFY - + CANCEL·LA LA VERIFICACIÓ - - - + + + Finalizing... - + S'està finalitzant... @@ -544,187 +557,197 @@ - + Select this button to start writing the image - + Seleccioneu aquest botó per a començar l'escriptura de la imatge - + + Select this button to access advanced settings + Seleccioneu aquest botó per accedir a la configuració avançada + + + Using custom repository: %1 - + S'està usant el repositori personalitzat: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Navegació per teclat: <tab> navega al botó següent <espai> prem el botó o selecciona l'element <fletxa amunt o avall> desplaçament per les llistes - + Language: - + Idioma: - + Keyboard: + Teclat: + + + + Pi model: - + [ All ] - + Back - + Enrere - + Go back to main menu - + Torna al menú principal - + Released: %1 - + Llançat el: %1 - + Cached on your computer - + A la memòria cau de l'ordinador - + Local file - + Fitxer local - + Online - %1 GB download - + Disponible en línia (%1 GB) - - - + + + Mounted as %1 - + Muntat com a %1 - + [WRITE PROTECTED] - + [PROTEGIT CONTRA ESCRIPTURA] - + Are you sure you want to quit? - + N'esteu segur que voleu sortir? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + El Raspberry Pi Imager està ocupat.<br>N'esteu segur que voleu sortir? - + Warning - + Avís - + Preparing to write... - + S'està preparant per a escriure... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + Totes les dades existents a «%1» s'esborraràn.<br>Esteu segur que voleu continuar? - + Update available - + Hi ha una actualització disponible - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Hi ha una nova versió de l'Imager disponible.<br>Voleu visitar el lloc web per baixar-la? - + Error downloading OS list from Internet - + S'ha produït un error en baixar la llista dels SO d'internet - + Writing... %1% - + S'està escrivint... %1% - + Verifying... %1% - + S'està verificant... %1% - + Preparing to write... (%1) - + S'està preparant per escriure... (%1) - + Error - + S'ha produït un error - + Write Successful - + S'ha escrit amb èxit - - + + Erase - + Esborra - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + S'ha esborrat <b>%1</b><br><br>Ja podeu retirar la targeta SD del lector - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + S'ha escrit el «<b>%1</b>» a <b>%2</b><br><br>Ja podeu retirar la targeta SD del lector - + Error parsing os_list.json - + S'ha produït un error en analitzar os_lists.json - + Format card as FAT32 - + Formata la targeta com a FAT32 - + Use custom - + Utilitza una personalitzada - + Select a custom .img from your computer - + Selecciona una imatge .img personalitzada de l'ordinador - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + Connecteu una memòria USB que contingui primer imatges.<br>Les imatges s'han de trobar a la carpeta arrel de la memòria. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + 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. diff --git a/src/i18n/rpi-imager_de.ts b/src/i18n/rpi-imager_de.ts index 78bf0aa..79faf72 100644 --- a/src/i18n/rpi-imager_de.ts +++ b/src/i18n/rpi-imager_de.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + Fehler beim Entpacken des Archivs: %1 Error mounting FAT32 partition - + Fehler beim Einbinden der FAT32-Partition Operating system did not mount FAT32 partition - + Das Betriebssystem band die FAT32-Partition nicht ein Error changing to directory '%1' - + Fehler beim Wechseln in den Ordner "%1" + + + Error writing to storage + Fehler beim Schreiben auf den Speicher @@ -35,119 +39,161 @@ opening drive - + Gerät wird geöffnet Error running diskpart: %1 - + Fehler beim Ausführen von Diskpart: %1 Error removing existing partitions - + Fehler beim Entfernen von existierenden Partitionen Authentication cancelled - + Authentifizierung abgebrochen Error running authopen to gain access to disk device '%1' - + Fehler beim Ausführen von authopen, um Zugriff auf Geräte zu erhalten '%1' 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'). + I don't use Mac OS, I would need help here. Unfinished translation: + +Bitte stellen Sie sicher, dass 'Raspberry Pi Imager' Zugriff auf 'removable volumes' in privacy settings hat (unter 'files and folders'. Sie können ihm auch 'full disk access' geben). Cannot open storage device '%1'. - + Speichergerät '%1' kann nicht geöffnet werden. discarding existing data on drive - + Vorhandene Daten auf dem Medium werden gelöscht zeroing out first and last MB of drive - + Erstes und letztes Megabyte des Mediums werden überschrieben Write error while zero'ing out MBR - + Schreibfehler während des Löschens des MBR Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + Fehler beim Löschen des letzten Teiles der Speicherkarte.<br>Die Speicherkarte könnte mit einer falschen Größe beworben sein (möglicherweise Betrug). starting download - + Download wird gestartet Error downloading: %1 - + Fehler beim Herunterladen: %1 Access denied error while writing file to disk. - + Zugriff verweigert-Fehler beim Schreiben auf den Datenträger. 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. + I don't use Windows either. What is "Controlled Folder Access" in the German version? + +Controlled Folder Access scheint aktiviert zu sein. Bitte fügen Sie sowohl rpi-imager.exe als auch fat32format.exe zur Liste der erlaubten Apps hinzu und versuchen sie es erneut. Error writing file to disk - + Fehler beim Schreiben der Datei auf den Speicher Download corrupt. Hash does not match - + Download beschädigt. Prüfsumme stimmt nicht überein Error writing to storage (while flushing) - + Fehler beim Schreiben auf den Speicher (während flushing) Error writing to storage (while fsync) - + Fehler beim Schreiben auf den Speicher (während fsync) Error writing first block (partition table) - + Fehler beim Schreiben auf des ersten Blocks (Partitionstabelle) Error reading from storage.<br>SD card may be broken. - + Fehler beim Lesen vom Speicher.<br>Die SD-Karte könnte defekt sein. Verifying write failed. Contents of SD card is different from what was written to it. - + Verifizierung fehlgeschlagen. Der Inhalt der SD-Karte weicht von dem Inhalt ab, der geschrieben werden sollte. Customizing image - + Image modifizieren + + + Waiting for FAT partition to be mounted + Warten auf das Einbinden der FAT-Partition + + + Error mounting FAT32 partition + Fehler beim Einbinden der FAT32-Partition + + + Operating system did not mount FAT32 partition + Das Betriebssystem hat die FAT32-Partition nicht eingebunden. + + + Unable to customize. File '%1' does not exist. + Modifizieren fehlgeschlagen. Die Datei '%1' existiert nicht. + + + Error creating firstrun.sh on FAT partition + Fehler beim Erstellen von firstrun.sh auf der FAT-Partition + + + Error writing to config.txt on FAT partition + Fehler beim Schreiben in config.txt auf der FAT-Partition + + + Error creating user-data cloudinit file on FAT partition + Fehler beim Erstellen der user-data cloudinit Datei auf der FAT-Partition + + + Error creating network-config cloudinit file on FAT partition + Fehler beim Erstellen der network-config cloudinit Datei auf der FAT-Partition + + + Error writing to cmdline.txt on FAT partition + Fehler beim Schreiben in cmdline.txt auf der FAT-Partition @@ -157,85 +203,85 @@ Error partitioning: %1 - + Fehler beim Partitionieren: %1 Error starting fat32format - + Fehler beim Starten von fat32format Error running fat32format: %1 - + Fehler beim Verwenden von fat32format: %1 Error determining new drive letter - + Fehler beim Festlegen eines neuen Laufwerksbuchstabens Invalid device: %1 - + Ungültiges Gerät: %1 Error formatting (through udisks2) - + Fehler beim Formatieren (mit udisks2) Error starting sfdisk - + Fehler beim Starten von sfdisk Partitioning did not create expected FAT partition %1 - + Partitionierung hat nicht die erwartete FAT-partition %1 erstellt Error starting mkfs.fat - + Fehler beim Starten von mkfs.fat Error running mkfs.fat: %1 - + Fehler beim Verwenden von mkfs.fat: %1 Formatting not implemented for this platform - + Formatieren wird auf dieser Platform nicht unterstützt ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + Die Speicherkapazität ist nicht groß genug.<br>Sie muss mindestens %1 GB betragen. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + Die Eingabedatei ist kein gültiges Disk-Image.<br>Die Dateigröße%1 Bytes ist kein Vielfaches von 512 Bytes. - + Downloading and writing image - + Image herunterladen und schreiben - + Select image - + Image wählen - + Would you like to prefill the wifi password from the system keychain? - + Möchten Sie das Wifi-Passwort aus dem System-Schlüsselbund vorab ausfüllen? @@ -243,12 +289,12 @@ opening image file - + Abbilddatei wird geöffnet Error opening image file - + Fehler beim Öffnen der Imagedatei @@ -256,22 +302,22 @@ NO - + NEIN YES - + JA CONTINUE - + WEITER QUIT - + BEENDEN @@ -279,22 +325,22 @@ Advanced options - + Erweiterte Optionen Image customization options - + OS-Modifizierungen for this session only - + Nur für diese Sitzung to always use - + Immer verwenden @@ -314,83 +360,83 @@ Set hostname: - + Hostname: Set username and password - + Benutzername und Passwort setzen: Username: - + Benutzername: Password: - + Passwort: Configure wireless LAN - + Wifi einrichten SSID: - + SSID: Show password - + Passwort anzeigen Hidden SSID - + Verborgene SSID Wireless LAN country: - + Wifi-Land: Set locale settings - + Spracheinstellungen festlegen Time zone: - + Zeitzone: Keyboard layout: - + Tastaturlayout: Enable SSH - + SSH aktivieren Use password authentication - + Password zur Authentifizierung verwenden Allow public-key authentication only - + Authentifizierung via Public-Key Set authorized_keys for '%1': - + authorized_keys für '%1': @@ -400,22 +446,38 @@ Play sound when finished - + Tonsignal nach Beenden abspielen Eject media when finished - + Medien nach Beenden auswerfen Enable telemetry - + Telemetry aktivieren SAVE - + SPEICHERN + + + Disable overscan + Overscan deaktivieren + + + Set password for '%1' user: + Passwort für '%1': + + + Skip first-run wizard + Einrichtungsassistent überspringen + + + Persistent settings + Dauerhafte Einstellungen @@ -423,7 +485,7 @@ Internal SD card reader - + Interner SD-Kartenleser @@ -434,29 +496,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + NEIN + + + + NO, CLEAR SETTINGS + NEIN, EINSTELLUNGEN LÖSCHEN + + + + YES + JA + + + + EDIT SETTINGS + EINSTELLUNGEN BEARBEITEN @@ -464,7 +526,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imager v%1 @@ -483,60 +545,65 @@ - - + + Operating System - + Betriebssystem - + CHOOSE OS - + OS WÄHLEN - + Select this button to change the operating system - + Klicke auf diesen Knopf, um das Betriebssystem zu ändern - - + + Storage - + SD-Karte - - + + CHOOSE STORAGE - + SD-KARTE WÄHLEN - + + WRITE + SCHREIBEN + + + Select this button to change the destination storage device - + Klicken Sie auf diesen Knopf, um das Ziel-Speichermedium zu ändern - + CANCEL WRITE - + SCHREIBEN ABBRECHEN - - + + Cancelling... - + Abbrechen... - + CANCEL VERIFY - + VERIFIZIERUNG ABBRECHEN - - - + + + Finalizing... - + Finalisieren... @@ -544,187 +611,205 @@ - + Select this button to start writing the image - + Klicke auf diesen Knopf, um mit dem Schreiben zu beginnen - + + Select this button to access advanced settings + Klicken Sie auf diesen Knopf, um zu den erweiterten Einstellungen zu gelangen. + + + Using custom repository: %1 - + Verwende benutzerdefiniertes Repository: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Language: - + Sprache: - + Keyboard: + Tastatur: + + + + Pi model: - + [ All ] - + Back - + Zurück - + Go back to main menu - + Zurück zum Hauptmenü - + Released: %1 - + Veröffentlicht: %1 - + Cached on your computer - + Auf Ihrem Computer zwischengespeichert - + Local file - + Lokale Datei - + Online - %1 GB download - + Online - %1 GB Download - - - + + + Mounted as %1 - + Als %1 eingebunden - + [WRITE PROTECTED] - + [SCHREIBGESCHÜTZT] - + Are you sure you want to quit? - + Sind Sie sicher, dass Sie beenden möchten? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Der Raspberry Pi Imager ist noch beschäftigt. <br>Möchten Sie wirklich beenden? - + Warning - + Warnung - + Preparing to write... - + Schreiben wird vorbereitet... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + Alle vorhandenen Daten auf '%1' werden gelöscht.<br>Möchten Sie wirklich fortfahren? - + Update available - + Update verfügbar - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Eine neuere Version von Imager ist verfügbar. <br>Möchten Sie die Webseite besuchen, um das Update herunterzuladen? - + Error downloading OS list from Internet - + Fehler beim Herunterladen der Betriebssystemsliste aus dem Internet - + Writing... %1% - + Schreiben... %1% - + Verifying... %1% - + Verifizierung... %1% - + Preparing to write... (%1) - + Schreiben wird vorbereitet... (%1) - + Error - + Fehler - + Write Successful - + Schreiben erfolgreich - - + + Erase - + Löschen - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b>%1</b> wurde geleert<br><br>Sie können die SD-Karte nun aus dem Lesegerät entfernen - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + <b>%1</b> wurde auf <b>%2</b> geschrieben<br><br>Sie können die SD-Karte nun aus dem Lesegerät entfernen - + Error parsing os_list.json - + Fehler beim Parsen von os_list.json - + Format card as FAT32 - + Karte als FAT32 formatieren - + Use custom - + Eigenes Image - + Select a custom .img from your computer - + Wählen Sie eine eigene .img-Datei von Ihrem Computer - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + Verbinden Sie zuerst einen USB-Stick mit Images.<br>Die Images müssen sich im Wurzelverzeichnes des USB-Sticks befinden. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + Die Speicherkarte ist schreibgeschützt.<br>Schieben Sie den Schutzschalter auf der linken Seite nach oben, und versuchen Sie es erneut. + + + Select this button to change the destination SD card + Klicke auf diesen Knopf, um die Ziel-SD-Karte zu ändern + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> wurde auf <b>%2</b> geschrieben diff --git a/src/i18n/rpi-imager_en.ts b/src/i18n/rpi-imager_en.ts index 53a2b96..0a302ee 100644 --- a/src/i18n/rpi-imager_en.ts +++ b/src/i18n/rpi-imager_en.ts @@ -213,27 +213,27 @@ ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + Downloading and writing image - + Select image - + Would you like to prefill the wifi password from the system keychain? @@ -434,28 +434,28 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - + + NO + - + NO, CLEAR SETTINGS - + YES - - NO + + EDIT SETTINGS @@ -473,68 +473,73 @@ - + CHOOSE DEVICE - + Select this button to choose your target Raspberry Pi - - + + Operating System - + CHOOSE OS - + Select this button to change the operating system - - + + Storage - - + + CHOOSE STORAGE - + + WRITE + + + + Select this button to change the destination storage device - + CANCEL WRITE - - + + Cancelling... - + CANCEL VERIFY - - - + + + Finalizing... @@ -544,185 +549,195 @@ - + Select this button to start writing the image - + + Select this button to access advanced settings + + + + Using custom repository: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Language: - + Keyboard: - + + Pi model: + + + + [ All ] - + Back - + Go back to main menu - + Released: %1 - + Cached on your computer - + Local file - + Online - %1 GB download - - - + + + Mounted as %1 - + [WRITE PROTECTED] - + Are you sure you want to quit? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Warning - + Preparing to write... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + Update available - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Error downloading OS list from Internet - + Writing... %1% - + Verifying... %1% - + Preparing to write... (%1) - + Error - + Write Successful - - + + Erase - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + Error parsing os_list.json - + Format card as FAT32 - + Use custom - + Select a custom .img from your computer - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. diff --git a/src/i18n/rpi-imager_es.ts b/src/i18n/rpi-imager_es.ts index 746263c..5e05324 100644 --- a/src/i18n/rpi-imager_es.ts +++ b/src/i18n/rpi-imager_es.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + Error extrayendo el archivo: %1 Error mounting FAT32 partition - + Error montando la partición FAT32 Operating system did not mount FAT32 partition - + El sistema operativo no montó la partición FAT32 Error changing to directory '%1' - + Error cambiando al directorio '%1' + + + Error writing to storage + Error escribiendo en la memoria @@ -30,124 +34,124 @@ unmounting drive - + desmontando unidad opening drive - + abriendo unidad Error running diskpart: %1 - + Error ejecutando diskpart: %1 Error removing existing partitions - + Error eliminando las particiones existentes Authentication cancelled - + Autenticación cancelada Error running authopen to gain access to disk device '%1' - + Error ejecutando authopen para acceder al dispositivo de disco '%1' 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'). - + Por favor, compruebe si 'Raspberry Pi Imager' tiene permitido el acceso a 'volúmenes extraíbles' en los ajustes de privacidad (en 'archivos y carpetas' o alternativamente dele 'acceso total al disco'). Cannot open storage device '%1'. - + No se puede abrir el dispositivo de almacenamiento '%1'. discarding existing data on drive - + descartando datos existentes en la unidad zeroing out first and last MB of drive - + poniendo a cero el primer y el último MB de la unidad Write error while zero'ing out MBR - + Error de escritura al poner a cero MBR Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + Error de escritura al intentar poner a cero la última parte de la tarjeta.<br>La tarjeta podría estar anunciando una capacidad incorrecta (posible falsificación). starting download - + iniciando descarga Error downloading: %1 - + Error descargando: %1 Access denied error while writing file to disk. - + Error de acceso denegado escribiendo el archivo en el disco. 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. - + El acceso controlado a carpetas parece estar activado. Añada rpi-imager.exe y fat32format.exe a la lista de aplicaciones permitidas y vuelva a intentarlo. Error writing file to disk - + Error escribiendo el archivo en el disco Download corrupt. Hash does not match - + Descarga corrupta. El hash no coincide Error writing to storage (while flushing) - + Error escribiendo en la memoria (durante la limpieza) Error writing to storage (while fsync) - + Error escribiendo en el almacenamiento (mientras fsync) Error writing first block (partition table) - + Error escribiendo el primer bloque (tabla de particiones) Error reading from storage.<br>SD card may be broken. - + Error leyendo del almacenamiento.<br>La tarjeta SD puede estar rota. Verifying write failed. Contents of SD card is different from what was written to it. - + Error verificando la escritura. El contenido de la tarjeta SD es diferente del que se escribió en ella. Customizing image - + Personalizando imagen @@ -157,85 +161,85 @@ Error partitioning: %1 - + Error particionando: %1 Error starting fat32format - + Error iniciando fat32format Error running fat32format: %1 - + Error ejecutando fat32format: %1 Error determining new drive letter - + Error determinando la nueva letra de unidad Invalid device: %1 - + Dispositivo no válido: %1 Error formatting (through udisks2) - + Error formateando (a través de udisks2) Error starting sfdisk - + Error iniciando sfdisk Partitioning did not create expected FAT partition %1 - + El particionado no creó la partición FAT %1 esperada Error starting mkfs.fat - + Error iniciando mkfs.fat Error running mkfs.fat: %1 - + Error ejecutando mkfs.fat: %1 Formatting not implemented for this platform - + Formateo no implementado para esta plataforma ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + La capacidad de almacenamiento no es lo suficientemente grande.<br>Necesita ser de al menos %1 GB. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + El archivo de entrada no es una imagen de disco válida.<br>El tamaño del archivo %1 bytes no es múltiplo de 512 bytes. - + Downloading and writing image - + Descargando y escribiendo imagen - + Select image - + Seleccionar imagen - + Would you like to prefill the wifi password from the system keychain? - + ¿Desea rellenar previamente la contraseña wifi desde el llavero del sistema? @@ -243,12 +247,12 @@ opening image file - + abriendo archivo de imagen Error opening image file - + Error abriendo archivo de imagen @@ -256,22 +260,22 @@ NO - + NO YES - + CONTINUE - + CONTINUAR QUIT - + SALIR @@ -279,143 +283,147 @@ Advanced options - + Opciones avanzadas Image customization options - + Opciones de personalización de imagen for this session only - + solo para esta sesión to always use - + para usar siempre General - + General Services - + Servicios Options - + Opciones Set hostname: - + Establecer nombre de anfitrión: Set username and password - + Establecer nombre de usuario y contraseña Username: - + Nombre de usuario: Password: - + Contraseña: Configure wireless LAN - + Configurar LAN inalámbrica SSID: - + SSID: Show password - + Mostrar contraseña Hidden SSID - + SSID oculta Wireless LAN country: - + País de LAN inalámbrica: Set locale settings - + Establecer ajustes regionales Time zone: - + Zona horaria: Keyboard layout: - + Distribución del teclado: Enable SSH - + Activar SSH Use password authentication - + Usar autenticación por contraseña Allow public-key authentication only - + Permitir solo la autenticación de clave pública Set authorized_keys for '%1': - + Establecer authorized_keys para '%1': RUN SSH-KEYGEN - + EJECUTAR SSH-KEYGEN Play sound when finished - + Reproducir sonido al finalizar Eject media when finished - + Expulsar soporte al finalizar Enable telemetry - + Activar telemetría SAVE - + GUARDAR + + + Persistent settings + Ajustes persistentes @@ -423,7 +431,7 @@ Internal SD card reader - + Lector de tarjetas SD interno @@ -434,29 +442,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + NO + + + + NO, CLEAR SETTINGS + NO, BORRAR AJUSTES + + + + YES + + + + + EDIT SETTINGS + EDITAR AJUSTES @@ -464,7 +472,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imager v%1 @@ -483,60 +491,65 @@ - - + + Operating System - + Sistema operativo - + CHOOSE OS - + ELEGIR SO - + Select this button to change the operating system - + Seleccione este botón para cambiar el sistema operativo - - + + Storage - + Almacenamiento - - + + CHOOSE STORAGE - + ELEGIR ALMACENAMIENTO - + + WRITE + ESCRIBIR + + + Select this button to change the destination storage device - + Seleccione este botón para cambiar el dispositivo de almacenamiento de destino - + CANCEL WRITE - + CANCELAR ESCRITURA - - + + Cancelling... - + Cancelando... - + CANCEL VERIFY - + CANCELAR VERIFICACIÓN - - - + + + Finalizing... - + Finalizando... @@ -544,187 +557,197 @@ - + Select this button to start writing the image - + Seleccione este botón para empezar a escribir la imagen - + + Select this button to access advanced settings + Seleccione este botón para acceder a los ajustes avanzados + + + Using custom repository: %1 - + Usando repositorio personalizado: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Navegación por teclado: <tab> navegar al botón siguiente <space> pulsar botón/seleccionar elemento <arrow up/down> subir/bajar en listas - + Language: - + Idioma: - + Keyboard: - + Teclado: - + + Pi model: + Modelo Pi: + + + [ All ] - + [ Todos ] - + Back - + Volver - + Go back to main menu - + Volver al menú principal - + Released: %1 - + Publicado: %1 - + Cached on your computer - + En caché en su ordenador - + Local file - + Archivo local - + Online - %1 GB download - + En línea - %1 GB descarga - - - + + + Mounted as %1 - + Montado como %1 - + [WRITE PROTECTED] - + [PROTEGIDO CONTRA ESCRITURA] - + Are you sure you want to quit? - + ¿Está seguro de que quiere salir? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Raspberry Pi Imager sigue ocupado.<br>¿Está seguro de que quiere salir? - + Warning - + Advertencia - + Preparing to write... - + Preparando para escribir... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + Se borrarán todos los datos existentes en '%1'.<br>¿Está seguro de que desea continuar? - + Update available - + Actualización disponible - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Hay una versión más reciente de Imager disponible.<br>¿Desea visitar el sitio web para descargarla? - + Error downloading OS list from Internet - + Error al descargar la lista de sistemas operativos de Internet - + Writing... %1% - + Escribiendo... %1% - + Verifying... %1% - + Verificando... %1% - + Preparing to write... (%1) - + Preparando para escribir... (%1) - + Error - + Error - + Write Successful - + Escritura exitosa - - + + Erase - + Borrar - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b>%1</b> se ha borrado<br><br>Ya puede retirar la tarjeta SD del lector - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + <b>%1</b> se ha escrito en <b>%2</b><br><br>Ya puede retirar la tarjeta SD del lector - + Error parsing os_list.json - + Error al parsear os_list.json - + Format card as FAT32 - + Formatear tarjeta como FAT32 - + Use custom - + Usar personalizado - + Select a custom .img from your computer - + Seleccione un .img personalizado de su ordenador - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + Conecte primero una memoria USB que contenga imágenes.<br>Las imágenes deben estar ubicadas en la carpeta raíz de la memoria USB. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + La tarjeta SD está protegida contra escritura.<br>Pulse hacia arriba el interruptor de bloqueo situado en el lado izquierdo de la tarjeta y vuelva a intentarlo. diff --git a/src/i18n/rpi-imager_fr.ts b/src/i18n/rpi-imager_fr.ts index b57e2dd..20ff127 100644 --- a/src/i18n/rpi-imager_fr.ts +++ b/src/i18n/rpi-imager_fr.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + Erreur lors de l'extraction de l'archive : %1 Error mounting FAT32 partition - + Erreur lors du montage de la partition FAT32 Operating system did not mount FAT32 partition - + Le système d'exploitation n'a pas monté la partition FAT32 Error changing to directory '%1' - + Erreur lors du changement du répertoire '%1' + + + Error writing to storage + Erreur d'écriture dans le stockage @@ -30,124 +34,160 @@ unmounting drive - + démontage du disque opening drive - + ouverture du disque Error running diskpart: %1 - + Erreur lors de l'exécution de diskpart : %1 Error removing existing partitions - + Erreur lors de la suppression des partitions existantes Authentication cancelled - + Authentification annulée Error running authopen to gain access to disk device '%1' - + Erreur lors de l'exécution d'authopen pour accéder au périphérique du stockage '%1' 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'). - + Veuillez vérifier dans les réglages de confidentialité (sous 'fichiers et dossiers') si 'Raspberry Pi Imager' est autorisé à accéder aux volumes amovibles (ou bien donnez-lui accès complet au disque). Cannot open storage device '%1'. - + Impossible d'ouvrir le périphérique de stockage '%1'. discarding existing data on drive - + suppression des données existantes sur le disque zeroing out first and last MB of drive - + mise à zéro du premier et du dernier Mo du disque Write error while zero'ing out MBR - + Erreur d'écriture lors du formatage du MBR Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + 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). starting download - + début du téléchargement Error downloading: %1 - + Erreur de téléchargement : %1 Access denied error while writing file to disk. - + Accès refusé lors de l'écriture d'un fichier sur le disque. 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. - + L'accès contrôlé aux dossiers semble être activé. Veuillez ajouter rpi-imager.exe et fat32format.exe à la liste des applications autorisées et réessayez. Error writing file to disk - + Erreur d'écriture de fichier sur le disque Download corrupt. Hash does not match - + Téléchargement corrompu. La signature ne correspond pas Error writing to storage (while flushing) - + Erreur d'écriture dans le stockage (lors du formatage) Error writing to storage (while fsync) - + Erreur d'écriture dans le stockage (pendant l'exécution de fsync) Error writing first block (partition table) - + Erreur lors de l'écriture du premier bloc (table de partition) Error reading from storage.<br>SD card may be broken. - + Erreur de lecture du stockage.<br>La carte SD est peut-être défectueuse. Verifying write failed. Contents of SD card is different from what was written to it. - + La vérification de l'écriture à échoué. Le contenu de la carte SD est différent de ce qui y a été écrit. Customizing image - + Personnalisation de l'image + + + Waiting for FAT partition to be mounted + En attente du montage de la partition FAT + + + Error mounting FAT32 partition + Erreur lors du montage de la partition FAT32 + + + Operating system did not mount FAT32 partition + Le système d'exploitation n'a pas monté la partition FAT32 + + + Unable to customize. File '%1' does not exist. + Impossible de personnaliser. Le fichier '%1' n'existe pas. + + + Error creating firstrun.sh on FAT partition + Erreur lors de la création de firstrun.sh sur la partition FAT + + + Error writing to config.txt on FAT partition + Erreur lors de la création de config.txt sur la partition FAT + + + Error creating user-data cloudinit file on FAT partition + Erreur lors de la création du fichier user-data cloudinit sur la partition FAT + + + Error creating network-config cloudinit file on FAT partition + Erreur lors de la création du fichier network-config cloudinit sur la partition FAT + + + Error writing to cmdline.txt on FAT partition + Erreur lors de l'écriture de cmdline.txt sur la partition FAT @@ -157,85 +197,85 @@ Error partitioning: %1 - + Erreur de partitionnement : %1 Error starting fat32format - + Erreur lors du démarrage de fat32format Error running fat32format: %1 - + Erreur lors de l'exécution de fat32format : %1 Error determining new drive letter - + Erreur lors de la détermination de la nouvelle lettre du stockage Invalid device: %1 - + Périphérique non valide : %1 Error formatting (through udisks2) - + Erreur de formatage (via udisks2) Error starting sfdisk - + Erreur lors du démarrage de sfdisk Partitioning did not create expected FAT partition %1 - + Le partitionnement n'a pas créé la partition FAT %1 attendue Error starting mkfs.fat - + Erreur lors du démarrage de mkfs.fat Error running mkfs.fat: %1 - + Erreur lors de l'exécution de mkfs.fat : %1 Formatting not implemented for this platform - + Formatage non implémenté pour cette plateforme ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + La capacité de stockage n'est pas assez grande.<br>Elle doit être d'au moins %1 Go. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + 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. - + Downloading and writing image - + Téléchargement et écriture de l'image - + Select image - + Sélectionner l'image - + Would you like to prefill the wifi password from the system keychain? - + Voulez-vous pré-remplir le mot de passe Wi-Fi à partir du trousseau du système ? @@ -243,12 +283,12 @@ opening image file - + ouverture de l'image disque Error opening image file - + Erreur lors de l'ouverture de l'image disque @@ -256,22 +296,22 @@ NO - + NON YES - + OUI CONTINUE - + CONTINUER QUIT - + QUITTER @@ -279,22 +319,22 @@ Advanced options - + Réglages avancés Image customization options - + Options de personnalisation de l'image for this session only - + pour cette session uniquement to always use - + pour toutes les sessions @@ -314,83 +354,83 @@ Set hostname: - + Nom d'hôte Set username and password - + Définir nom d'utilisateur et mot de passe Username: - + Nom d'utilisateur : Password: - + Mot de passe : Configure wireless LAN - + Configurer le Wi-Fi SSID: - + SSID : Show password - + Afficher le mot de passe Hidden SSID - + SSID caché Wireless LAN country: - + Pays Wi-Fi : Set locale settings - + Définir les réglages locaux Time zone: - + Fuseau horaire : Keyboard layout: - + Type de clavier : Enable SSH - + Activer SSH Use password authentication - + Utiliser un mot de passe pour l'authentification Allow public-key authentication only - + Authentification via clef publique Set authorized_keys for '%1': - + Définir authorized_keys pour '%1' : @@ -400,22 +440,26 @@ Play sound when finished - + Jouer un son quand terminé Eject media when finished - + Éjecter le média quand terminé Enable telemetry - + Activer la télémétrie SAVE - + ENREGISTRER + + + Persistent settings + Réglages permanents @@ -423,7 +467,7 @@ Internal SD card reader - + Lecteur de carte SD interne @@ -434,29 +478,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + NON + + + + NO, CLEAR SETTINGS + NON, EFFACER LES RÉGLAGES + + + + YES + OUI + + + + EDIT SETTINGS + MODIFIER RÉGLAGES @@ -464,7 +508,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imager v%1 @@ -483,60 +527,65 @@ - - + + Operating System - + Système d'exploitation - + CHOOSE OS - + CHOISIR L'OS - + Select this button to change the operating system - + Sélectionner ce bouton pour changer le système d'exploitation - - + + Storage - + Stockage - - + + CHOOSE STORAGE - + CHOISIR LE STOCKAGE - + + WRITE + ÉCRIRE + + + Select this button to change the destination storage device - + Sélectionner ce bouton pour modifier le périphérique de stockage de destination - + CANCEL WRITE - + ANNULER L'ÉCRITURE - - + + Cancelling... - + Annulation... - + CANCEL VERIFY - + ANNULER LA VÉRIFICATION - - - + + + Finalizing... - + Finalisation... @@ -544,187 +593,205 @@ - + Select this button to start writing the image - + Sélectionner ce bouton pour commencer l'écriture de l'image - + + Select this button to access advanced settings + Sélectionner ce bouton pour accéder aux réglages avancés + + + Using custom repository: %1 - + Utilisation d'un dépôt personnalisé : %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Navigation au clavier : <tab> passer au bouton suivant <espace> presser un bouton/sélectionner un élément <flèche haut/bas> monter/descendre dans les listes - + Language: - + Langue : - + Keyboard: + Clavier : + + + + Pi model: - + [ All ] - + Back - + Retour - + Go back to main menu - + Retour au menu principal - + Released: %1 - + Publié le : %1 - + Cached on your computer - + Mis en cache sur votre ordinateur - + Local file - + Fichier local - + Online - %1 GB download - + En ligne - %1 GO à télécharger - - - + + + Mounted as %1 - + Monté sur %1 - + [WRITE PROTECTED] - + [PROTÉGÉ EN ÉCRITURE] - + Are you sure you want to quit? - + Voulez-vous vraiment quitter ? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Raspberry Pi Imager est encore occupé.<br>Voulez-vous vraiment quitter ? - + Warning - + Attention - + Preparing to write... - + Préparation de l'écriture... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + Toutes les données sur le périphérique de stockage '%1' vont être supprimées.<br>Voulez-vous vraiment continuer ? - + Update available - + Mise à jour disponible - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Une version plus récente d'Imager est disponible.<br>Voulez-vous accéder au site web pour la télécharger ? - + Error downloading OS list from Internet - + Erreur lors du téléchargement de la liste des systèmes d'exploitation à partir d'Internet - + Writing... %1% - + Écriture... %1% - + Verifying... %1% - + Vérification... %1% - + Preparing to write... (%1) - + Préparation de l'écriture... (%1) - + Error - + Erreur - + Write Successful - + Écriture réussie - - + + Erase - + Effacer - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b>%1</b> a bien été effacé<br><br>Vous pouvez retirer la carte SD du lecteur - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + <b>%1</b> a bien été écrit sur <b>%2</b><br><br>Vous pouvez retirer la carte SD du lecteur - + Error parsing os_list.json - + Erreur de lecture du fichier os_list.json - + Format card as FAT32 - + Formater la carte SD en FAT32 - + Use custom - + Utiliser image personnalisée - + Select a custom .img from your computer - + Sélectionner une image disque personnalisée (.img) sur votre ordinateur - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + Connecter d'abord une clé USB contenant les images.<br>Les images doivent se trouver dans le dossier racine de la clé USB. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + La carte SD est protégée en écriture.<br>Poussez vers le haut le commutateur de verrouillage sur le côté gauche de la carte et essayez à nouveau. + + + Select this button to change the destination SD card + Sélectionnez ce bouton pour changer la carte SD de destination + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> a bien été écrit sur <b>%2</b> diff --git a/src/i18n/rpi-imager_it.ts b/src/i18n/rpi-imager_it.ts index f443d13..24bedab 100644 --- a/src/i18n/rpi-imager_it.ts +++ b/src/i18n/rpi-imager_it.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + Errore estrazione archivio: %1 Error mounting FAT32 partition - + Errore montaggio partizione FAT32 Operating system did not mount FAT32 partition - + Il sistema operativo non ha montato la partizione FAT32 Error changing to directory '%1' - + Errore passaggio a cartella '%1' + + + Error writing to storage + Errore scrittura nello storage @@ -30,124 +34,161 @@ unmounting drive - + smontaggio unità opening drive - + apertura unità Error running diskpart: %1 - + Errore esecuzione diskpart: %1 Error removing existing partitions - + Errore rimozione partizioni esistenti Authentication cancelled - + Autenticazione annullata Error running authopen to gain access to disk device '%1' - + Errore esecuzione auhopen per ottenere accesso al dispositivo disco %1 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'). - + 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'). Cannot open storage device '%1'. - + Impossibile aprire dispositivo storage '%1'. discarding existing data on drive - + elimina i dati esistenti nell'unità zeroing out first and last MB of drive - + azzera il primo e l'ultimo MB dell'unità Write error while zero'ing out MBR - + Errore scrittura durante azzeramento MBR Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + 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). starting download - + avvio download Error downloading: %1 - + Errore download: %1 Access denied error while writing file to disk. - + Errore accesso negato durante la scrittura del file su disco. 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. - + Sembra sia abilitato l'accesso controllato alle cartelle. +Aggiungi sia 'rpi-imager.exe' che 'fat32format.exe' all'elenco delle app consentite e riprova. Error writing file to disk - + Errore scrittura file su disco Download corrupt. Hash does not match - + Download corrotto.<br>L'hash non corrisponde Error writing to storage (while flushing) - + Errore scrittura nello storage (durante flushing) Error writing to storage (while fsync) - + Errore scrittura nello storage (durante fsync) Error writing first block (partition table) - + Errore scrittura primo blocco (tabella partizione) Error reading from storage.<br>SD card may be broken. - + Errore lettura dallo storage.<br>La scheda SD potrebbe essere danneggiata. Verifying write failed. Contents of SD card is different from what was written to it. - + Verifica scrittura fallita.<br>Il contenuto della SD è differente da quello che vi è stato scritto. Customizing image - + Personalizza immagine + + + Waiting for FAT partition to be mounted + Attesa montaggio partizione FAT + + + Error mounting FAT32 partition + Errore montaggio partizione FAT32 + + + Operating system did not mount FAT32 partition + Il sistema operativo non ha montato la partizione FAT32 + + + Unable to customize. File '%1' does not exist. + Impossibile personalizzare. Il file '%1' non esiste. + + + Error creating firstrun.sh on FAT partition + Errore creazione firstrun.sh nella partizione FAT + + + Error writing to config.txt on FAT partition + Errore scrittura in config.txt nella partizione FAT + + + Error creating user-data cloudinit file on FAT partition + Errore nel creare il file cloudinit dei dati utente nella partizione FAT + + + Error creating network-config cloudinit file on FAT partition + Errore durante la creazione del file network-config cloudinit nella partizione FAT + + + Error writing to cmdline.txt on FAT partition + Errore scrittura in cmdline.txt nella partizione FAT @@ -157,85 +198,85 @@ Error partitioning: %1 - + Errore partizionamento: %1 Error starting fat32format - + Errore avvio fat32format Error running fat32format: %1 - + Errore esecuzione fat32format: %1 Error determining new drive letter - + Errore determinazione nuova lettera unità Invalid device: %1 - + Dispositivo non valido: %1 Error formatting (through udisks2) - + Errore formattazione (attraverso udisk2) Error starting sfdisk - + Errore avvio sfdisk Partitioning did not create expected FAT partition %1 - + Il partizionamento non ha creato la partizione FAT prevista %1 Error starting mkfs.fat - + Errore avvio mkfs.fat Error running mkfs.fat: %1 - + Errore esecuzione mkfs.fat: %1 Formatting not implemented for this platform - + Formattazione non implementata per questa piattaforma ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + La capacità dello storage non è sufficiente.<br>Sono necessari almeno %1 GB. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + Il file sorgente non è un'immagine disco valida.<br>La dimensione file %1 non è un multiplo di 512 byte. - + Downloading and writing image - + Download e scrittura file immagine - + Select image - + Seleziona file immagine - + Would you like to prefill the wifi password from the system keychain? - + Vuoi precompilare la password WiFi usando il portachiavi di sistema? @@ -243,12 +284,12 @@ opening image file - + apertura file immagine Error opening image file - + Errore durante l'apertura del file immagine @@ -256,22 +297,22 @@ NO - + NO YES - + SI CONTINUE - + CONTINUA QUIT - + ESCI @@ -279,143 +320,163 @@ Advanced options - + Opzioni avanzate Image customization options - + Opzioni personalizzazione immagine for this session only - + solo per questa sessione to always use - + da usare sempre General - + Generale Services - + Servizi Options - + Opzioni Set hostname: - + Imposta nome host: Set username and password - + Imposta nome utente e password Username: - + Nome utente: Password: - + Password: Configure wireless LAN - + Configura WiFi SSID: - + SSID: Show password - + Visualizza password Hidden SSID - + SSID nascosto Wireless LAN country: - + Nazione WiFi: Set locale settings - + Imposta configurazioni locali Time zone: - + Fuso orario: Keyboard layout: - + Layout tastiera: Enable SSH - + Abilita SSH Use password authentication - + Usa password autenticazione Allow public-key authentication only - + Permetti solo autenticazione con chiave pubblica Set authorized_keys for '%1': - + Imposta authorized_keys per '%1': RUN SSH-KEYGEN - + ESEGUI SSH-KEYGEN Play sound when finished - + Riproduci suono quando completato Eject media when finished - + Espelli media quando completato Enable telemetry - + Abilita telemetria SAVE - + SALVA + + + Disable overscan + Disabilita overscan + + + Set password for 'pi' user: + Imposta password utente 'pi': + + + Set authorized_keys for 'pi': + Imposta authorized_key per 'pi': + + + Skip first-run wizard + Salta procedura prima impostazione + + + Persistent settings + Impostazioni persistenti @@ -423,7 +484,7 @@ Internal SD card reader - + Lettore scheda SD interno @@ -434,29 +495,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + NO + + + + NO, CLEAR SETTINGS + NO, AZZERA IMPOSTAZIONI + + + + YES + SI' + + + + EDIT SETTINGS + MODIFICA IMPOSTAZIONI @@ -464,7 +525,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imager v. %1 @@ -483,60 +544,65 @@ - - + + Operating System - + Sistema operativo - + CHOOSE OS - + SCEGLI S.O. - + Select this button to change the operating system - + Seleziona questo pulsante per modificare il sistema operativo scelto - - + + Storage - + Scheda SD - - + + CHOOSE STORAGE - + SCEGLI SCHEDA SD - + + WRITE + SCRIVI + + + Select this button to change the destination storage device - + Seleziona questo pulsante per modificare il dispositivo archiviazione destinazione - + CANCEL WRITE - + ANNULLA SCRITTURA - - + + Cancelling... - + Annullamento... - + CANCEL VERIFY - + ANNULLA VERIFICA - - - + + + Finalizing... - + Finalizzazione... @@ -544,187 +610,205 @@ - + Select this button to start writing the image - + Seleziona questo pulsante per avviare la scrittura del file immagine - + + Select this button to access advanced settings + Seleziona questo pulsante per accedere alle impostazioni avanzate + + + Using custom repository: %1 - + Usa repository personalizzato: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Navigazione da tastiera: <tab> vai al prossimo pulsante <spazio> premi il pulsante/seleziona la voce <freccia su/giù> vai su/giù negli elenchi - + Language: - + Lingua: - + Keyboard: - + Tastiera: - + + Pi model: + Modello Pi: + + + [ All ] - + [ Tutti ] - + Back - + Indietro - + Go back to main menu - + Torna al menu principale - + Released: %1 - + Rilasciato: %1 - + Cached on your computer - + Memorizzato temporaneamente nel computer - + Local file - + File locale - + Online - %1 GB download - + Online - Download %1 GB - - - + + + Mounted as %1 - + Montato come %1 - + [WRITE PROTECTED] - + [PROTETTA DA SCRITTURA] - + Are you sure you want to quit? - + Sei sicuro di voler uscire? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Raspberry Pi Image è occupato.<br>Sei sicuro di voler uscire? - + Warning - + Attenzione - + Preparing to write... - + Preparazione scrittura... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + Tutti i dati esistenti in '%1' verranno eliminati.<br>Sei sicuro di voler continuare? - + Update available - + Aggiornamento disponibile - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + È disponibile una nuova versione di Imager.<br>Vuoi visitare il sito web per scaricare la nuova versione? - + Error downloading OS list from Internet - + Errore durante download elenco SO da internet - + Writing... %1% - + Scrittura...%1 - + Verifying... %1% - + Verifica...%1 - + Preparing to write... (%1) - + Preparazione scrittura... (%1) - + Error - + Errore - + Write Successful - + Scrittura completata senza errori - - + + Erase - + Cancella - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + Azzeramento di <b>%1</b> completato<br><br>Ora puoi rimuovere la scheda SD dal lettore - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + Scrittura di <b>%1</b> in <b>%2</b>completata<br><br>Ora puoi rimuovere la scheda SD dal lettore - + Error parsing os_list.json - + Errore durante analisi file os_list.json - + Format card as FAT32 - + Formatta scheda come FAT32 - + Use custom - + Usa immagine personalizzata - + Select a custom .img from your computer - + Seleziona un file immagine .img personalizzato - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + Prima collega una chiavetta USB contenente il file immagine.<br>Il file immagine deve essere presente nella cartella principale della chiavetta USB. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + La scheda SD è protetta da scrittura.<br>Sposta verso l'alto l'interruttore LOCK sul lato sinistro della scheda SD e riprova. + + + Select this button to change the destination SD card + Seleziona questo pulsante per modificare la scheda SD destinazione + + + <b>%1</b> has been written to <b>%2</b> + Scrittura di <b>%1</b> in <b>%2</b>completata diff --git a/src/i18n/rpi-imager_ja.ts b/src/i18n/rpi-imager_ja.ts index 8b70d03..20e4acc 100644 --- a/src/i18n/rpi-imager_ja.ts +++ b/src/i18n/rpi-imager_ja.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + アーカイブを展開するのに失敗しました Error mounting FAT32 partition - + FAT32パーティションをマウントできませんでした Operating system did not mount FAT32 partition - + OSがFAT32パーティションをマウントしませんでした Error changing to directory '%1' - + カレントディレクトリを%1に変更できませんでした + + + Error writing to storage + ストレージに書き込むのに失敗しました @@ -35,119 +39,155 @@ opening drive - + デバイスを開いています Error running diskpart: %1 - + diskpartの実行に失敗しました: %1 Error removing existing partitions - + 既に有るパーティションを削除する際にエラーが発生しました。 Authentication cancelled - + 認証がキャンセルされました Error running authopen to gain access to disk device '%1' - + ディスク%1にアクセスするための権限を取得するためにauthopenを実行するのに失敗しました 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'). - + Raspberry Pi Imagerがリムーバブルボリュームへアクセスすることがプライバシー設定(「ファイルとフォルダー」の中、またはディスクへのすべてのアクセス権限を付与する)で許可されているかを確認してください。 Cannot open storage device '%1'. - + ストレージを開けませんでした。 discarding existing data on drive - + ドライブの現存するすべてのデータを破棄します zeroing out first and last MB of drive - + ドライブの最初と最後のMBを削除しています Write error while zero'ing out MBR - + MBRを削除している際にエラーが発生しました。 Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + カードの最後のパートを0で書き込む際書き込みエラーが発生しました。カードが示している容量と実際のカードの容量が違う可能性があります。 starting download - + ダウンロードを開始中 Error downloading: %1 - + %1をダウンロードする際エラーが発生しました Access denied error while writing file to disk. - + ディスクにファイルを書き込む際にアクセスが拒否されました。 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. - + フォルダーへのアクセスが制限されています。許可されたアプリにrpi-imager.exeとfat32format.exeを入れてもう一度お試しください。 Error writing file to disk - + ファイルをディスクに書き込んでいる際にエラーが発生しました Download corrupt. Hash does not match - + ダウンロードに失敗しました。ハッシュ値が一致していません。 Error writing to storage (while flushing) - + ストレージへの書き込み中にエラーが発生しました (フラッシング中) Error writing to storage (while fsync) - + ストレージへの書き込み中にエラーが発生しました(fsync中) Error writing first block (partition table) - + 最初のブロック(パーティションテーブル)を書き込み中にエラーが発生しました Error reading from storage.<br>SD card may be broken. - + ストレージを読むのに失敗しました。SDカードが壊れている可能性があります。 Verifying write failed. Contents of SD card is different from what was written to it. - + 確認中にエラーが発生しました。書き込んだはずのデータが実際にSDカードに記録されたデータと一致していません。 Customizing image - + イメージをカスタマイズしています + + + Waiting for FAT partition to be mounted + FATパーティションがマウントされるのを待っています + + + Error mounting FAT32 partition + FAT32パーティションをマウントする際にエラーが発生しました。 + + + Operating system did not mount FAT32 partition + OSがFAT32パーティションをマウントしませんでした。 + + + Unable to customize. File '%1' does not exist. + カスタマイズできません。%1が存在しません。 + + + Error creating firstrun.sh on FAT partition + FATパーティションにfirstrun.shを作成する際にエラーが発生しました + + + Error writing to config.txt on FAT partition + FATパーティションにconfig.txtを書き込むときにエラーが発生しました + + + Error creating user-data cloudinit file on FAT partition + FATパーティションにCloud-initのuser-dataファイル名前を作成するときにエラーが発生しました + + + Error creating network-config cloudinit file on FAT partition + FATパーティションにCloud-initのnetwork-configファイルを作成するときにエラーが発生しました + + + Error writing to cmdline.txt on FAT partition + FATパーティションにcmdline.txtを書き込む際にエラーが発生しました @@ -157,85 +197,85 @@ Error partitioning: %1 - + パーティショニングに失敗しました: %1 Error starting fat32format - + fat32formatを開始中にエラーが発生しました Error running fat32format: %1 - + fat32formatを実行中にエラーが発生しました Error determining new drive letter - + 新しいドライブレターを判断している際にエラーが発生しました Invalid device: %1 - + 不適切なデバイス: %1 Error formatting (through udisks2) - + udisk2を介してフォーマットするのに失敗しました Error starting sfdisk - + sfdiskを開始中にエラーが発生しました Partitioning did not create expected FAT partition %1 - + パーティショニングが想定したFATパーティション %1を作りませんでした Error starting mkfs.fat - + mkfs.fatを開始中にエラーが発生しました Error running mkfs.fat: %1 - + mkfs.fatを実行中にエラーが発生しました: %1 Formatting not implemented for this platform - + このプラットフォームではフォーマットできません。 ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + ストレージの容量が足りません。少なくとも%1GBは必要です。 - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + 入力されたファイルは適切なディスクイメージファイルではありません。ファイルサイズの%1は512バイトの倍数ではありません。 - + Downloading and writing image - + イメージをダウンロードして書き込んでいます - + Select image - + イメージを選ぶ - + Would you like to prefill the wifi password from the system keychain? - + Wifiのパスワードをシステムのキーチェーンから読み取って設定しますか? @@ -243,12 +283,12 @@ opening image file - + イメージファイルを開いています Error opening image file - + イメージファイルを開く際にエラーが発生しました @@ -256,22 +296,22 @@ NO - + いいえ YES - + はい CONTINUE - + 続ける QUIT - + やめる @@ -279,22 +319,22 @@ Advanced options - + 詳細な設定 Image customization options - + カスタマイズオプション for this session only - + このセッションでのみ有効にする to always use - + いつも使う設定にする @@ -314,83 +354,83 @@ Set hostname: - + ホスト名: Set username and password - + ユーザー名とパスワードを設定する Username: - + ユーザー名 Password: - + パスワード: Configure wireless LAN - + Wi-Fiを設定する SSID: - + SSID: Show password - + パスワードを見る Hidden SSID - + ステルスSSID Wireless LAN country: - + Wifiを使う国: Set locale settings - + ロケール設定をする Time zone: - + タイムゾーン: Keyboard layout: - + キーボードレイアウト: Enable SSH - + SSHを有効化する Use password authentication - + パスワード認証を使う Allow public-key authentication only - + 公開鍵認証のみを許可する Set authorized_keys for '%1': - + ユーザー%1のためのauthorized_keys @@ -400,22 +440,34 @@ Play sound when finished - + 終わったときに音を鳴らす Eject media when finished - + 終わったときにメディアを取り出す Enable telemetry - + テレメトリーを有効化する SAVE - + 保存 + + + Disable overscan + オーバースキャンを無効化する + + + Skip first-run wizard + 最初のセットアップウィザートをスキップする + + + Persistent settings + 永続的な設定 @@ -423,7 +475,7 @@ Internal SD card reader - + SDカードリーダー @@ -434,29 +486,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + いいえ + + + + NO, CLEAR SETTINGS + いいえ、設定をクリアする + + + + YES + はい + + + + EDIT SETTINGS + 設定を編集する @@ -464,7 +516,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imager v%1 @@ -483,60 +535,65 @@ - - + + Operating System - + OS - + CHOOSE OS - + OSを選ぶ - + Select this button to change the operating system - + OSを変更するにはこのボタンを押してください - - + + Storage - + ストレージ - - + + CHOOSE STORAGE - + ストレージを選ぶ - + + WRITE + 書き込む + + + Select this button to change the destination storage device - + 書き込み先のストレージデバイスを選択するにはこのボタンを押してください - + CANCEL WRITE - + 書き込みをキャンセル - - + + Cancelling... - + キャンセル中です... - + CANCEL VERIFY - + 確認をやめる - - - + + + Finalizing... - + 最終処理をしています... @@ -544,187 +601,201 @@ - + Select this button to start writing the image - + 書き込みをスタートさせるにはこのボタンを押してください - + + Select this button to access advanced settings + 詳細な設定を変更するのならこのボタンを押してください + + + Using custom repository: %1 - + カスタムレポジトリを使います: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + キーボードの操作: 次のボタンに移動する→Tabキー ボタンを押す/選択する→Spaceキー 上に行く/下に行く→矢印キー(上下) - + Language: - + 言語: - + Keyboard: + キーボード: + + + + Pi model: - + [ All ] - + Back - + 戻る - + Go back to main menu - + メインメニューへ戻る - + Released: %1 - + リリース日時: %1 - + Cached on your computer - + コンピュータにキャッシュされたファイル - + Local file - + ローカルファイル - + Online - %1 GB download - + インターネットからダウンロードする (%1GB) - - - + + + Mounted as %1 - + %1としてマウントされています - + [WRITE PROTECTED] - + [書き込み禁止] - + Are you sure you want to quit? - + 本当にやめますか? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Raspberry Pi Imagerは現在まだ処理中です。<bt>本当にやめますか? - + Warning - + 警告 - + Preparing to write... - + 書き込み準備中... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + %1に存在するすべてのデータは完全に削除されます。本当に続けますか? - + Update available - + アップデートがあります - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + 新しいバージョンのImagerがあります。<br>ダウンロードするためにウェブサイトに行きますか? - + Error downloading OS list from Internet - + OSのリストをダウンロードする際にエラーが発生しました。 - + Writing... %1% - + 書き込み中... %1% - + Verifying... %1% - + 確認中... %1% - + Preparing to write... (%1) - + 書き込み準備中... (%1) - + Error - + エラー - + Write Successful - + 書き込みが正常に終了しました - - + + Erase - + 削除 - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b%gt;%1</b> は削除されました。<br><bt>SDカードをSDカードリーダーから取り出しても良いです。 - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + <b>%1</b> は<b>%2</b>に書き込まれました。<br><br>SDカードをSDカードリーダーから取り出しても良いです。 - + Error parsing os_list.json - + os_list.jsonの処理中にエラーが発生しました - + Format card as FAT32 - + カードをFAT32でフォーマットする - + Use custom - + カスタムイメージを使う - + Select a custom .img from your computer - + 自分で用意したイメージファイルを使う - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + 最初にイメージファイルがあるUSBメモリを接続してください。<br>イメージファイルはUSBメモリの一番上(ルートフォルダー)に入れてください。 - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + SDカードは書き込みが制限されています。<br>カードの左上にあるロックスイッチを上げてロックを解除し、もう一度お試しください。 + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> は<b>%2</b>に書き込まれました。 diff --git a/src/i18n/rpi-imager_ko.ts b/src/i18n/rpi-imager_ko.ts index 141fc83..e1a36f3 100644 --- a/src/i18n/rpi-imager_ko.ts +++ b/src/i18n/rpi-imager_ko.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + 보관 파일 추출 오류: %1 Error mounting FAT32 partition - + FAT32 파티션 마운트 오류 Operating system did not mount FAT32 partition - + 운영 체제에서 FAT32 파티션을 마운트하지 않음 Error changing to directory '%1' - + 디렉토리 변경 오류 '%1' + + + Error writing to storage + 저장소에 쓰는 중 오류 발생 @@ -30,124 +34,160 @@ unmounting drive - + 드라이브 마운트 해제 opening drive - + 드라이브 열기 Error running diskpart: %1 - + 디스크 파트를 실행하는 동안 오류 발생 : %1 Error removing existing partitions - + 기존 파티션 제거 오류 Authentication cancelled - + 인증 취소됨 Error running authopen to gain access to disk device '%1' - + 디스크 디바이스에 대한 액세스 권한을 얻기 위해 authopen을 실행하는 중 오류 발생 '%1' 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'). - + 'Raspberry Pi Imager'가 개인 정보 설정('파일 및 폴더'에서 또는 '전체 디스크 액세스'를 부여)에서 '제거 가능한 볼륨'에 액세스할 수 있는지 확인하세요. Cannot open storage device '%1'. - + 저장 장치를 열 수 없습니다 '%1'. discarding existing data on drive - + 드라이브의 기존 데이터 삭제 zeroing out first and last MB of drive - + 드라이브의 처음과 마지막 MB를 비웁니다. Write error while zero'ing out MBR - + MBR을 zero'ing out 하는 동안 쓰기 오류 발생 Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + SD card의 마지막 부분을 비워내는 동안 오류가 발생했습니다.<br>카드가 잘못된 용량을 표기하고 있을 수 있습니다(위조 품목). starting download - + 다운로드 시작 Error downloading: %1 - + 다운로드 중 오류: %1 Access denied error while writing file to disk. - + 디스크에 파일을 쓰는 동안 액세스 거부 오류가 발생했습니다. 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. - + 제어된 폴더 액세스가 설정된 것 같습니다. rpi-imager.exe 및 fat32format.exe를 허용된 앱 리스트에서 추가하고 다시 시도하십시오. Error writing file to disk - + 디스크에 파일 쓰기 오류 Download corrupt. Hash does not match - + 다운로드가 손상되었습니다. 해시가 일치하지 않습니다. Error writing to storage (while flushing) - + 저장소에 쓰는 중 오류 발생(flushing..) Error writing to storage (while fsync) - + 스토리지에 쓰는 중 오류 발생(fsync..) Error writing first block (partition table) - + 첫 번째 블록을 쓰는 중 오류 발생 (파티션 테이블) Error reading from storage.<br>SD card may be broken. - + 저장소에서 읽는 동안 오류가 발생했습니다.<br>SD 카드가 고장 났을 수 있습니다. Verifying write failed. Contents of SD card is different from what was written to it. - + 쓰기를 확인하지 못했습니다. SD카드 내용과 쓰인 내용이 다릅니다. Customizing image - + 이미지 사용자 정의 + + + Waiting for FAT partition to be mounted + FAT 파티션이 마운트되기를 기다리는 중 + + + Error mounting FAT32 partition + FAT32 파티션 마운트 오류 + + + Operating system did not mount FAT32 partition + 운영 체제 FAT32 파티션이 마운트되지 않았습니다. + + + Unable to customize. File '%1' does not exist. + 지정할 수 없습니다. 파일이 '%1' 존재하지 않습니다. + + + Error creating firstrun.sh on FAT partition + FAT 파티션에 firstrun.sh을 만드는 동안 오류 발생 + + + Error writing to config.txt on FAT partition + FAT 파티션에 config.txt 쓰던 중 오류 발생 + + + Error creating user-data cloudinit file on FAT partition + FAT 파티션에 사용자 데이터 cloudinit 파일을 만드는 중 오류 발생 + + + Error creating network-config cloudinit file on FAT partition + FAT 파티션에 네트워크 구성 cloudinit 파일을 생성하는 중 오류 발생 + + + Error writing to cmdline.txt on FAT partition + FAT 파티션에 cmdline.txt 쓰던 중 오류 발생 @@ -157,85 +197,85 @@ Error partitioning: %1 - + 분할 오류: %1 Error starting fat32format - + 시작 오류 fat32format Error running fat32format: %1 - + 실행 중 오류 fat32format: %1 Error determining new drive letter - + 새 드라이브 문자 확인 오류 Invalid device: %1 - + 유효하지 않는 디바이스: %1 Error formatting (through udisks2) - + 포맷 오류 (udisks2 통해) Error starting sfdisk - + 시작 오류 sfdisk Partitioning did not create expected FAT partition %1 - + FAT partition %1을 분할하여 생성하지 못했습니다. Error starting mkfs.fat - + 시작 오류 mkfs.fat Error running mkfs.fat: %1 - + 실행 오류 mkfs.fat: %1 Formatting not implemented for this platform - + 이 플랫폼에 대해 포맷이 구현되지 않았습니다. ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + 저장소 공간이 충분하지 않습니다.<br>최소 %1 GB 이상이어야 합니다. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + 입력 파일이 올바른 디스크 이미지가 아닙니다.<br>파일사이즈 %1 바이트가 512바이트의 배수가 아닙니다. - + Downloading and writing image - + 이미지 다운로드 및 쓰기 - + Select image - + 이미지 선택하기 - + Would you like to prefill the wifi password from the system keychain? - + wifi password를 미리 입력하시겠습니까? @@ -243,12 +283,12 @@ opening image file - + 이미지 파일 열기 Error opening image file - + 이미지 파일 열기 오류 @@ -256,22 +296,22 @@ NO - + 아니요 YES - + CONTINUE - + 계속 QUIT - + 나가기 @@ -279,22 +319,22 @@ Advanced options - + 고급 옵션 Image customization options - + 이미지 사용자 정의 옵션 for this session only - + 이 세션에 한하여 to always use - + 항상 사용 @@ -314,83 +354,83 @@ Set hostname: - + hostname 설정: Set username and password - + 사용자 이름 및 비밀번호 설정 Username: - + 사용자 이름: Password: - + 비밀번호: Configure wireless LAN - + 무선 LAN 설정 SSID: - + SSID: Show password - + 비밀번호 표시 Hidden SSID - + 숨겨진 SSID Wireless LAN country: - + 무선 LAN 국가: Set locale settings - + 로케일 설정 지정 Time zone: - + 시간대: Keyboard layout: - + 키보드 레이아웃: Enable SSH - + SSH 사용 Use password authentication - + 비밀번호 인증 사용 Allow public-key authentication only - + 공개 키만 인증 허용 Set authorized_keys for '%1': - + '%1' 인증키 설정: @@ -400,22 +440,34 @@ Play sound when finished - + 완료되면 효과음으로 알림 Eject media when finished - + 완료되면 미디어 꺼내기 Enable telemetry - + 이미지 다운로드 통계 관하여 정보 수집 허용 SAVE - + 저장 + + + Disable overscan + overscan 사용 안 함 + + + Skip first-run wizard + 초기 실행 마법사 건너뛰기 + + + Persistent settings + 영구적으로 설정 @@ -423,7 +475,7 @@ Internal SD card reader - + 내장 SD 카드 리더기 @@ -434,29 +486,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + 아니요 + + + + NO, CLEAR SETTINGS + 아니요, 설정 지우기 + + + + YES + + + + + EDIT SETTINGS + 설정을 편집하기 @@ -464,7 +516,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imager v%1 @@ -483,60 +535,65 @@ - - + + Operating System - + 운영체제 - + CHOOSE OS - + 운영체제 선택 - + Select this button to change the operating system - + 운영 체제를 변경하려면 이 버튼을 선택합니다. - - + + Storage - + 저장소 - - + + CHOOSE STORAGE - + 저장소 선택 - + + WRITE + 쓰기 + + + Select this button to change the destination storage device - + 저장 디바이스를 변경하려면 버튼을 선택합니다. - + CANCEL WRITE - + 쓰기 취소 - - + + Cancelling... - + 취소 하는 중... - + CANCEL VERIFY - + 확인 취소 - - - + + + Finalizing... - + 마무리 중... @@ -544,187 +601,201 @@ - + Select this button to start writing the image - + 이미지 쓰기를 시작하려면 버튼을 선택합니다. - + + Select this button to access advanced settings + 고급 설정에 액세스하려면 버튼을 선택합니다. + + + Using custom repository: %1 - + 사용자 지정 리포지토리 사용: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + 키보드 탐색: <tab> 다음 버튼으로 이동 <space> 버튼 선택 및 항목 선택 <arrow up/down> 목록에서 위아래로 이동 - + Language: - + 언어: - + Keyboard: + 키보드: + + + + Pi model: - + [ All ] - + Back - + 뒤로 가기 - + Go back to main menu - + 기본 메뉴로 돌아가기 - + Released: %1 - + 릴리즈: %1 - + Cached on your computer - + 컴퓨터에 캐시됨 - + Local file - + 로컬 파일 - + Online - %1 GB download - + 온라인 - %1 GB 다운로드 - - - + + + Mounted as %1 - + %1로 마운트 - + [WRITE PROTECTED] - + [쓰기 보호됨] - + Are you sure you want to quit? - + 정말 그만두시겠습니까? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Raspberry Pi Imager가 사용 중입니다.<br>정말 그만두시겠습니까? - + Warning - + 주의 - + Preparing to write... - + 쓰기 준비 중... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + '%1'에 존재하는 모든 데이터가 지워집니다.<br>계속하시겠습니까? - + Update available - + 업데이트 가능 - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Raspberry Pi Imager의 최신 버전을 사용할 수 있습니다.<br>다운받기 위해 웹사이트를 방문하시겠습니까?? - + Error downloading OS list from Internet - + 인터넷에서 OS 목록을 다운로드하는 중 오류 발생 - + Writing... %1% - + 쓰는 중... %1% - + Verifying... %1% - + 확인 중... %1% - + Preparing to write... (%1) - + 쓰기 준비 중... (%1) - + Error - + 오류 - + Write Successful - + 쓰기 완료 - - + + Erase - + 삭제 - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b>%1</b> 가 지워졌습니다.<br><br>이제 SD card를 제거할 수 있습니다. - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + <b>%1</b>가 <b>%2</b><br><br>에 쓰여졌습니다. 이제 SD card를 제거할 수 있습니다. - + Error parsing os_list.json - + 구문 분석 오류 os_list.json - + Format card as FAT32 - + FAT32로 카드 형식 지정 - + Use custom - + 사용자 정의 사용 - + Select a custom .img from your computer - + 컴퓨터에서 사용자 지정 .img를 선택합니다. - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + 먼저 이미지가 들어 있는 USB를 연결합니다.<br>이미지는 USB 루트 폴더에 있어야 합니다. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + 쓰기 금지된 SD card<br>카드 왼쪽에 있는 잠금 스위치를 위쪽으로 누른 후 다시 시도하십시오. + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b>가 <b>%2</b>에 쓰여졌습니다. diff --git a/src/i18n/rpi-imager_nl.ts b/src/i18n/rpi-imager_nl.ts index d579d12..60e2d5e 100644 --- a/src/i18n/rpi-imager_nl.ts +++ b/src/i18n/rpi-imager_nl.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + Fout bij uitpakken archiefbestand: %1 Error mounting FAT32 partition - + Fout bij mounten FAT32 partitie Operating system did not mount FAT32 partition - + Besturingssysteem heeft FAT32 partitie niet gemount Error changing to directory '%1' - + Fout bij openen map '%1' + + + Error writing to storage + Fout bij schrijven naar opslag @@ -30,124 +34,160 @@ unmounting drive - + unmounten van schijf opening drive - + openen van opslag Error running diskpart: %1 - + Fout bij uitvoeren diskpart: %1 Error removing existing partitions - + Fout bij verwijderen bestaande partities Authentication cancelled - + Authenticatie geannuleerd Error running authopen to gain access to disk device '%1' - + Fout bij uitvoeren authopen: '%1' 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'). - + 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'). Cannot open storage device '%1'. - + Fout bij openen opslagapparaat '%1'. discarding existing data on drive - + wissen bestaande gegevens zeroing out first and last MB of drive - + wissen eerste en laatste MB van opslag Write error while zero'ing out MBR - + Fout bij wissen MBR Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + Fout bij wissen laatste deel van de SD kaart.<br>Kaart geeft mogelijk onjuiste capaciteit aan (mogelijk counterfeit). starting download - + beginnen met downloaden Error downloading: %1 - + Fout bij downloaden: %1 Access denied error while writing file to disk. - + Toegang geweigerd bij het schrijven naar opslag. 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. - + 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. Error writing file to disk - + Fout bij schrijven naar opslag Download corrupt. Hash does not match - + Download corrupt. Hash komt niet overeen Error writing to storage (while flushing) - + Fout bij schrijven naar opslag (tijdens flushen) Error writing to storage (while fsync) - + Fout bij schrijven naar opslag (tijdens fsync) Error writing first block (partition table) - + Fout bij schrijven naar eerste deel van kaart (partitie tabel) Error reading from storage.<br>SD card may be broken. - + Fout bij lezen van SD kaart.<br>Kaart is mogelijk defect. Verifying write failed. Contents of SD card is different from what was written to it. - + Verificatie mislukt. De gegevens die op de SD kaart staan wijken af van wat er naar geschreven is. Customizing image - + Bezig met aanpassen besturingssysteem + + + Waiting for FAT partition to be mounted + Wachten op mounten FAT partitie + + + Error mounting FAT32 partition + Fout bij mounten FAT32 partitie + + + Operating system did not mount FAT32 partition + Besturingssysteem heeft FAT32 partitie niet gemount + + + Unable to customize. File '%1' does not exist. + Fout bij aanpassen besturingssysteem. Bestand '%1' bestaat niet. + + + Error creating firstrun.sh on FAT partition + Fout bij het aanmaken van firstrun.sh op FAT partitie + + + Error writing to config.txt on FAT partition + Fout bij schrijven naar config.txt op FAT partitie + + + Error creating user-data cloudinit file on FAT partition + Fout bij aanmaken user-data cloudinit bestand op FAT partitie + + + Error creating network-config cloudinit file on FAT partition + Fout bij aanmaken network-config cloudinit bestand op FAT paritie + + + Error writing to cmdline.txt on FAT partition + Fout bij schrijven cmdline.txt op FAT partitie @@ -157,85 +197,85 @@ Error partitioning: %1 - + Fout bij partitioneren: %1 Error starting fat32format - + Fout bij starten fat32format Error running fat32format: %1 - + Fout bij uitvoeren fat32format: %1 Error determining new drive letter - + Fout bij vaststellen nieuwe letter van schijfstation Invalid device: %1 - + Ongeldig device: %1 Error formatting (through udisks2) - + Fout bij formatteren (via udisks2) Error starting sfdisk - + Fout bij starten sfdisk Partitioning did not create expected FAT partition %1 - + Partitionering heeft geen FAT partitie %1 aangemaakt Error starting mkfs.fat - + Fout bij starten mkfs.fat Error running mkfs.fat: %1 - + Fout bij uitvoeren mkfs.fat: %1 Formatting not implemented for this platform - + Formatteren is niet geimplementeerd op dit besturingssysteem ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + Opslagcapaciteit niet groot genoeg.<br>Deze dient minimaal %1 GB te zijn. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + Invoerbestand is geen disk image.<br>Bestandsgrootte %1 bytes is geen veelvoud van 512 bytes. - + Downloading and writing image - + Downloaden en schrijven van image - + Select image - + Selecteer image - + Would you like to prefill the wifi password from the system keychain? - + Wilt u het wifi wachtwoord van het systeem overnemen? @@ -243,12 +283,12 @@ opening image file - + openen image Error opening image file - + Fout bij openen image bestand @@ -256,22 +296,22 @@ NO - + Nee YES - + Ja CONTINUE - + VERDER GAAN QUIT - + AFSLUITEN @@ -279,143 +319,163 @@ Advanced options - + Geavanceerde instellingen Image customization options - + Image instellingen for this session only - + alleen voor deze sessie to always use - + om altijd te gebruiken General - + Algemeen Services - + Services Options - + Opties Set hostname: - + Hostnaam: Set username and password - + Gebruikersnaam en wachtwoord instellen Username: - + Gebruikersnaam: Password: - + Wachtwoord: Configure wireless LAN - + Wifi instellen SSID: - + SSID: Show password - + Wachtwoord laten zien Hidden SSID - + Verborgen SSID Wireless LAN country: - + Wifi land: Set locale settings - + Regio instellingen Time zone: - + Tijdzone: Keyboard layout: - + Toetsenbord indeling: Enable SSH - + SSH inschakelen Use password authentication - + Gebruik wachtwoord authenticatie Allow public-key authentication only - + Gebruik uitsluitend public-key authenticatie Set authorized_keys for '%1': - + authorized_keys voor '%1': RUN SSH-KEYGEN - + START SSH-KEYGEN Play sound when finished - + Geluid afspelen zodra voltooid Eject media when finished - + Media uitwerpen zodra voltooid Enable telemetry - + Telemetry inschakelen SAVE - + OPSLAAN + + + Disable overscan + Overscan uitschakelen + + + Set username: + Gebruikersnaam: + + + Set password for '%1' user: + Wachtwoord voor '%1' gebruiker: + + + Skip first-run wizard + Eerste gebruik wizard overslaan + + + Persistent settings + Permanente instellingen @@ -423,7 +483,7 @@ Internal SD card reader - + Interne SD kaart lezer @@ -434,29 +494,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + Nee + + + + NO, CLEAR SETTINGS + Nee, wis instellingen + + + + YES + Ja + + + + EDIT SETTINGS + Aanpassen @@ -464,7 +524,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imager v%1 @@ -483,60 +543,65 @@ - - + + Operating System - + Besturingssysteem - + CHOOSE OS - + SELECTEER OS - + Select this button to change the operating system - + Kies deze knop om een besturingssysteem te kiezen - - + + Storage - + Opslagapparaat - - + + CHOOSE STORAGE - + KIES OPSLAGAPPARAAT - + + WRITE + SCHRIJF + + + Select this button to change the destination storage device - + Klik op deze knop om het opslagapparaat te wijzigen - + CANCEL WRITE - + Annuleer schrijven - - + + Cancelling... - + Annuleren... - + CANCEL VERIFY - + ANNULEER VERIFICATIE - - - + + + Finalizing... - + Afronden... @@ -544,187 +609,205 @@ - + Select this button to start writing the image - + Kies deze knop om te beginnen met het schrijven van de image - + + Select this button to access advanced settings + Klik op deze knop om de geadvanceerde instellingen te openen + + + Using custom repository: %1 - + Custom repository in gebruik: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Toetsenbord navigatie: <tab> ga naar volgende knop <spatie> druk op knop/selecteer item <pijltje omhoog/omlaag> ga omhoog/omlaag in lijsten - + Language: - + Taal: - + Keyboard: - + Toetsenbord: - + + Pi model: + Pi model: + + + [ All ] - + [ Alle modellen ] - + Back - + Terug - + Go back to main menu - + Terug naar hoofdmenu - + Released: %1 - + Release datum: %1 - + Cached on your computer - + Opgeslagen op computer - + Local file - + Lokaal bestand - + Online - %1 GB download - + Online %1 GB download - - - + + + Mounted as %1 - + Mounted op %1 - + [WRITE PROTECTED] - + [ALLEEN LEZEN] - + Are you sure you want to quit? - + Weet u zeker dat u wilt afsluiten? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Raspberry Pi Imager is nog niet klaar.<br>Weet u zeker dat u wilt afsluiten? - + Warning - + Waarschuwing - + Preparing to write... - + Voorbereiden... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + Alle bestaande gegevens op '%1' zullen verwijderd worden.<br>Weet u zeker dat u door wilt gaan? - + Update available - + Update beschikbaar - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Er is een nieuwere versie van Imager beschikbaar.<br>Wilt u de website bezoeken om deze te downloaden? - + Error downloading OS list from Internet - + Fout bij downloaden van lijst met besturingssystemen - + Writing... %1% - + Schrijven... %1% - + Verifying... %1% - + Verifiëren... %1% - + Preparing to write... (%1) - + Voorbereiden... (%1) - + Error - + Fout - + Write Successful - + Klaar met schrijven - - + + Erase - + Wissen - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b>%1</b> is gewist<br><br>U kunt nu de SD kaart uit de lezer halen - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + <b>%1</b> is geschreven naar <b>%2</b><br><br>U kunt nu de SD kaart uit de lezer halen - + Error parsing os_list.json - + Fout bij parsen os_list.json - + Format card as FAT32 - + Formatteer kaart als FAT32 - + Use custom - + Gebruik eigen bestand - + Select a custom .img from your computer - + Selecteer een eigen .img bestand - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + Sluit eerst een USB stick met images aan.<br>De images moeten in de hoofdmap van de USB stick staan. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + SD kaart is tegen schrijven beveiligd.<br>Druk het schuifje aan de linkerkant van de SD kaart omhoog, en probeer nogmaals. + + + Select this button to change the destination SD card + Kies deze knop om de SD kaart te kiezen + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> is geschreven naar <b>%2</b> diff --git a/src/i18n/rpi-imager_ru.ts b/src/i18n/rpi-imager_ru.ts index 8825b31..f32d4b1 100644 --- a/src/i18n/rpi-imager_ru.ts +++ b/src/i18n/rpi-imager_ru.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + Ошибка извлечения архива: %1 Error mounting FAT32 partition - + Ошибка подключения раздела FAT32 Operating system did not mount FAT32 partition - + Операционная система не подключила раздел FAT32 Error changing to directory '%1' - + Ошибка перехода в каталог «%1» + + + Error writing to storage + Ошибка записи на запоминающее устройство @@ -35,119 +39,155 @@ opening drive - + открытие диска Error running diskpart: %1 - + Ошибка выполнения diskpart: %1 Error removing existing partitions - + Ошибка удаления существующих разделов Authentication cancelled - + Аутентификация отменена Error running authopen to gain access to disk device '%1' - + Ошибка выполнения authopen для получения доступа к дисковому устройству «%1» 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'). - + Убедитесь, что в параметрах настройки конфиденциальности (privacy settings) в разделе «файлы и папки» («files and folders») программе Raspberry Pi Imager разрешён доступ к съёмным томам (removable volumes). Либо можно предоставить программе доступ ко всему диску (full disk access). Cannot open storage device '%1'. - + Не удалось открыть запоминающее устройство «%1». discarding existing data on drive - + удаление существующих данных на диске zeroing out first and last MB of drive - + обнуление первого и последнего мегабайта диска Write error while zero'ing out MBR - + Ошибка записи при обнулении MBR Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + Ошибка записи при попытке обнулить последнюю часть карты.<br>Заявленный картой объём может не соответствовать действительности (возможно, карта является поддельной). starting download - + начало загрузки Error downloading: %1 - + Ошибка загрузки: %1 Access denied error while writing file to disk. - + Ошибка доступа при записи файла на диск. 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. - + Похоже, что включён контролируемый доступ к папкам (Controlled Folder Access). Добавьте rpi-imager.exe и fat32format.exe в список разрешённых программ и попробуйте снова. Error writing file to disk - + Ошибка записи файла на диск Download corrupt. Hash does not match - + Загруженные данные повреждены. Хэш не совпадает Error writing to storage (while flushing) - + Ошибка записи на запоминающее устройство (при сбросе) Error writing to storage (while fsync) - + Ошибка записи на запоминающее устройство (при выполнении fsync) Error writing first block (partition table) - + Ошибка записи первого блока (таблица разделов) Error reading from storage.<br>SD card may be broken. - + Ошибка чтения с запоминающего устройства.<br>SD-карта может быть повреждена. Verifying write failed. Contents of SD card is different from what was written to it. - + Ошибка по результатам проверки записи. Содержимое SD-карты отличается от того, что было на неё записано. Customizing image - + Настройка образа + + + Waiting for FAT partition to be mounted + Ожидание подключения раздела FAT + + + Error mounting FAT32 partition + Ошибка подключения раздела FAT32 + + + Operating system did not mount FAT32 partition + Операционная система не подключила раздел FAT32 + + + Unable to customize. File '%1' does not exist. + Не удалось настроить. Файл «%1» не существует. + + + Error creating firstrun.sh on FAT partition + Ошибка создания firstrun.sh в разделе FAT + + + Error writing to config.txt on FAT partition + Ошибка записи в config.txt в разделе FAT + + + Error creating user-data cloudinit file on FAT partition + Ошибка создания файла user-data cloudinit в разделе FAT + + + Error creating network-config cloudinit file on FAT partition + Ошибка создания файла network-config cloudinit в разделе FAT + + + Error writing to cmdline.txt on FAT partition + Ошибка записи в cmdline.txt в разделе FAT @@ -157,85 +197,85 @@ Error partitioning: %1 - + Ошибка создания разделов: %1 Error starting fat32format - + Ошибка запуска fat32format Error running fat32format: %1 - + Ошибка выполнения fat32format: %1 Error determining new drive letter - + Ошибка определения новой буквы диска Invalid device: %1 - + Недопустимое устройство: %1 Error formatting (through udisks2) - + Ошибка форматирования (с помощью udisks2) Error starting sfdisk - + Ошибка запуска sfdisk Partitioning did not create expected FAT partition %1 - + При создании разделов не был создан ожидаемый раздел FAT %1 Error starting mkfs.fat - + Ошибка запуска mkfs.fat Error running mkfs.fat: %1 - + Ошибка выполнения mkfs.fat: %1 Formatting not implemented for this platform - + Для этой платформы не реализовано форматирование ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + Недостаточная ёмкость запоминающего устройства.<br>Требуется не менее %1 ГБ. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + Входной файл не представляет собой корректный образ диска.<br>Размер файла %1 не кратен 512 байтам. - + Downloading and writing image - + Загрузка и запись образа - + Select image - + Выбор образа - + Would you like to prefill the wifi password from the system keychain? - + Указать пароль от WiFi автоматически (взяв его из системной цепочки ключей)? @@ -243,12 +283,12 @@ opening image file - + открытие файла образа Error opening image file - + Ошибка открытия файла образа @@ -256,22 +296,22 @@ NO - + НЕТ YES - + ДА CONTINUE - + ПРОДОЛЖИТЬ QUIT - + ВЫЙТИ @@ -279,22 +319,22 @@ Advanced options - + Дополнительные параметры Image customization options - + Параметры настройки образа for this session only - + только для этого сеанса to always use - + для постоянного использования @@ -314,83 +354,83 @@ Set hostname: - + Имя хоста: Set username and password - + Указать имя пользователя и пароль Username: - + Имя пользователя: Password: - + Пароль: Configure wireless LAN - + Настроить Wi-Fi SSID: - + SSID: Show password - + Показывать пароль Hidden SSID - + Скрытый идентификатор SSID Wireless LAN country: - + Страна Wi-Fi: Set locale settings - + Указать параметры региона Time zone: - + Часовой пояс: Keyboard layout: - + Раскладка клавиатуры: Enable SSH - + Включить SSH Use password authentication - + Использовать аутентификацию по паролю Allow public-key authentication only - + Разрешить только аутентификацию с использованием открытого ключа Set authorized_keys for '%1': - + authorized_keys для «%1»: @@ -400,22 +440,26 @@ Play sound when finished - + Воспроизводить звук после завершения Eject media when finished - + Извлекать носитель после завершения Enable telemetry - + Включить телеметрию SAVE - + СОХРАНИТЬ + + + Persistent settings + Постоянные параметры @@ -423,7 +467,7 @@ Internal SD card reader - + Внутреннее устройство чтения SD-карт @@ -434,29 +478,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + НЕТ + + + + NO, CLEAR SETTINGS + НЕТ, ОЧИСТИТЬ ПАРАМЕТРЫ + + + + YES + ДА + + + + EDIT SETTINGS + ИЗМЕНИТЬ ПАРАМЕТРЫ @@ -464,7 +508,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imager, версия %1 @@ -483,60 +527,65 @@ - - + + Operating System - + Операционная система - + CHOOSE OS - + ВЫБРАТЬ ОС - + Select this button to change the operating system - + Нажмите эту кнопку, чтобы изменить операционную систему - - + + Storage - + Запоминающее устройство - - + + CHOOSE STORAGE - + ВЫБРАТЬ ЗАПОМ. УСТРОЙСТВО - + + WRITE + ЗАПИСАТЬ + + + Select this button to change the destination storage device - + Нажмите эту кнопку, чтобы изменить целевое запоминающее устройство - + CANCEL WRITE - + ОТМЕНИТЬ ЗАПИСЬ - - + + Cancelling... - + Отмена... - + CANCEL VERIFY - + ОТМЕНИТЬ ПРОВЕРКУ - - - + + + Finalizing... - + Завершение... @@ -544,187 +593,197 @@ - + Select this button to start writing the image - + Нажмите эту кнопку, чтобы начать запись образа - + + Select this button to access advanced settings + Нажмите эту кнопку для получения доступа к дополнительным параметрам + + + Using custom repository: %1 - + Использование настраиваемого репозитория: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Навигация с помощью клавиатуры: клавиша <Tab> перемещает на следующую кнопку, клавиша <Пробел> нажимает кнопку/выбирает элемент, клавиши со <стрелками вверх/вниз> перемещают выше/ниже в списке - + Language: - + Язык: - + Keyboard: + Клавиатура: + + + + Pi model: - + [ All ] - + Back - + Назад - + Go back to main menu - + Вернуться в главное меню - + Released: %1 - + Дата выпуска: %1 - + Cached on your computer - + Кэш на компьютере - + Local file - + Локальный файл - + Online - %1 GB download - + Онлайн — объём загрузки составляет %1 ГБ - - - + + + Mounted as %1 - + Подключено как %1 - + [WRITE PROTECTED] - + [ЗАЩИЩЕНО ОТ ЗАПИСИ] - + Are you sure you want to quit? - + Действительно выполнить выход? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Программа Raspberry Pi Imager всё ещё занята.<br>Действительно выполнить выход из неё? - + Warning - + Внимание - + Preparing to write... - + Подготовка к записи… - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + Все существующие на «%1» данные будут стёрты.<br>Продолжить? - + Update available - + Доступно обновление - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Доступна новая версия Imager.<br>Перейти на веб-сайт для её загрузки? - + Error downloading OS list from Internet - + Ошибка загрузки списка ОС из Интернета - + Writing... %1% - + Запись... %1% - + Verifying... %1% - + Проверка... %1% - + Preparing to write... (%1) - + Подготовка к записи... (%1) - + Error - + Ошибка - + Write Successful - + Запись успешно выполнена - - + + Erase - + Стереть - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + Данные на <b>%1</b> стёрты<br><br>Теперь можно извлечь SD-карту из устройства чтения - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + Запись <b>%1</b> на <b>%2</b> выполнена<br><br>Теперь можно извлечь SD-карту из устройства чтения - + Error parsing os_list.json - + Ошибка синтаксического анализа os_list.json - + Format card as FAT32 - + Отформатировать карту как FAT32 - + Use custom - + Использовать настраиваемый образ - + Select a custom .img from your computer - + Выбрать настраиваемый файл .img на компьютере - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + Сначала подключите USB-накопитель с образами.<br>Образы должны находиться в корневой папке USB-накопителя. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + SD-карта защищена от записи.<br>Переместите вверх блокировочный переключатель, расположенный с левой стороны карты, и попробуйте ещё раз. diff --git a/src/i18n/rpi-imager_sk.ts b/src/i18n/rpi-imager_sk.ts index 2781e3a..be70d81 100644 --- a/src/i18n/rpi-imager_sk.ts +++ b/src/i18n/rpi-imager_sk.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + Chyba pri rozbaľovaní archívu: %1 Error mounting FAT32 partition - + Chyba pri pripájaní partície FAT32 Operating system did not mount FAT32 partition - + Operačný systém nepripojil partíciu FAT32 Error changing to directory '%1' - + Chyba pri vstupe do adresára '%1' + + + Error writing to storage + Chyba pri zápise na úložisko @@ -35,119 +39,155 @@ opening drive - + otváram disk Error running diskpart: %1 - + Chyba počas behu diskpart: %1 Error removing existing partitions - + Chyba pri odstraňovaní existujúcich partiícií Authentication cancelled - + Zrušená autentifikácia Error running authopen to gain access to disk device '%1' - + Chyba pri spúšťaní authopen v snahe o získanie prístupu na diskové zariadenie '%1' 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'). - + 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'). Cannot open storage device '%1'. - + Nepodarilo sa otvoriť zariadenie úložiska '%1'. discarding existing data on drive - + odstraňujem existujúce údaje z disku zeroing out first and last MB of drive - + prepisujem prvý a posledny megabajt disku Write error while zero'ing out MBR - + Chyba zápisu pri prepisovaní MBR nulami Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + Chyba zápisu pri prepisovaní poslednej časti karty nulami.<br>Karta pravdepodobne udáva nesprávnu kapacitu (a môže byť falošná). starting download - + začína sťahovanie Error downloading: %1 - + Chyba pri sťahovaní: %1 Access denied error while writing file to disk. - + Odopretý prístup pri zápise súboru na disk. 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. - + 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. Error writing file to disk - + Chyba pri zápise na disk Download corrupt. Hash does not match - + Stiahnutý súbor je poškodený. Kontrolný súčet nesedí Error writing to storage (while flushing) - + Chyba pri zápise na úložisko (počas volania flush) Error writing to storage (while fsync) - + Chyba pri zápise na úložisko (počas volania fsync) Error writing first block (partition table) - + Chyba pri zápise prvého bloku (tabuľky partícií) Error reading from storage.<br>SD card may be broken. - + Chyba pri čítaní z úložiska.<br>Karta SD môže byť poškodená. Verifying write failed. Contents of SD card is different from what was written to it. - + Overovanie zápisu skončilo s chybou. Obsah karty SD sa nezhoduje s tým, čo na ňu bolo zapísané. Customizing image - + Upravujem obraz + + + Waiting for FAT partition to be mounted + Čakám a pripojenie FAT partície + + + Error mounting FAT32 partition + Chyba pri pripájaní partície FAT32 + + + Operating system did not mount FAT32 partition + Operačný systém nepripojil partíciu FAT32 + + + Unable to customize. File '%1' does not exist. + Prispôsobenie skončilo s chybou. Súbor '%1' neexistuje. + + + Error creating firstrun.sh on FAT partition + Pri vytváraní firstrun.sh na partícii FAT nastala chyba + + + Error writing to config.txt on FAT partition + Chyba pri zápise config.txt na FAT partícii + + + Error creating user-data cloudinit file on FAT partition + Chyba pri vytváraní súboru cloudinit s údajmi používateľa na partícií FAT + + + Error creating network-config cloudinit file on FAT partition + Chyba pri vytváraní súboru cloudinit s nastavením siete na partícií FAT + + + Error writing to cmdline.txt on FAT partition + Chyba pri zápise cmdline.txt na FAT partíciu @@ -157,85 +197,85 @@ Error partitioning: %1 - + Chyba pri zápise partícií: %1 Error starting fat32format - + Chyba pri spustení fat32format Error running fat32format: %1 - + Chyba pri spustení fat32format: %1 Error determining new drive letter - + Chyba pri zisťovaní písmena nového disku Invalid device: %1 - + Neplatné zariadenie: %1 Error formatting (through udisks2) - + Chyba pri formátovaní (pomocou udisks2) Error starting sfdisk - + Chyba pri spustení sfdisk Partitioning did not create expected FAT partition %1 - + Rozdelenie disku nevytvorilo očakávanú FAT partíciu %1 Error starting mkfs.fat - + Chyba pri spustení mkfs.fat Error running mkfs.fat: %1 - + Chyba pri spustení mkfs.fat: %1 Formatting not implemented for this platform - + Formátovanie nie je na tejto platforme implementované ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + Kapacita úložiska je nedostatočná<br>Musí byť aspoň %1 GB. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + Vstupný súbor nie je platným obrazom disku.<br>Veľkosť súboru %1 bajtov nie je násobkom 512 bajtov. - + Downloading and writing image - + Sťahujem a zapisujem obraz - + Select image - + Vyberte obraz - + Would you like to prefill the wifi password from the system keychain? - + Chcete predvyplniť heslo pre wifi zo systémovej kľúčenky? @@ -243,12 +283,12 @@ opening image file - + otváram súbor s obrazom Error opening image file - + Chyba pri otváraní súboru s obrazom @@ -256,22 +296,22 @@ NO - + NIE YES - + ÁNO CONTINUE - + POKRAČOVAŤ QUIT - + UKONČIŤ @@ -279,22 +319,22 @@ Advanced options - + Pokročilé možnosti Image customization options - + Možnosti úprav obrazu for this session only - + iba pre toto sedenie to always use - + použiť vždy @@ -314,83 +354,83 @@ Set hostname: - + Nastaviť meno počítača (hostname): Set username and password - + Nastaviť meno používateľa a heslo Username: - + Meno používateľa: Password: - + Heslo: Configure wireless LAN - + Nastaviť wifi SSID: - + SSID: Show password - + Zobraziť heslo Hidden SSID - + Skryté SSID Wireless LAN country: - + Wifi krajina: Set locale settings - + Nastavenia miestnych zvyklostí Time zone: - + Časové pásmo: Keyboard layout: - + Rozloženie klávesnice: Enable SSH - + Povoliť SSH Use password authentication - + Použiť heslo na prihlásenie Allow public-key authentication only - + Povoliť iba prihlásenie pomocou verejného kľúča Set authorized_keys for '%1': - + Nastaviť authorized_keys pre '%1': @@ -400,22 +440,42 @@ Play sound when finished - + Po skončení prehrať zvuk Eject media when finished - + Po skončení vysunúť médium Enable telemetry - + Povoliť telemetriu SAVE - + ULOŽIŤ + + + Disable overscan + Vypnúť presnímanie (overscan) + + + Set password for 'pi' user: + Nastaviť heslo pre používateľa 'pi': + + + Set authorized_keys for 'pi': + Nastaviť authorized_keys pre 'pi': + + + Skip first-run wizard + Vypnúť sprievodcu prvým spustením + + + Persistent settings + Trvalé nastavenia @@ -423,7 +483,7 @@ Internal SD card reader - + Interná čítačka SD kariet @@ -434,29 +494,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + NIE + + + + NO, CLEAR SETTINGS + NIE, VYČISTIŤ NASTAVENIA + + + + YES + ÁNO + + + + EDIT SETTINGS + UPRAVIŤ NASTAVENIA @@ -464,7 +524,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imager v%1 @@ -483,60 +543,65 @@ - - + + Operating System - + Operačný systém - + CHOOSE OS - + VYBERTE OS - + Select this button to change the operating system - + Pre zmenu operačného systému kliknite na toto tlačidlo - - + + Storage - + SD karta - - + + CHOOSE STORAGE - + VYBERTE SD KARTU - + + WRITE + ZAPÍSAŤ + + + Select this button to change the destination storage device - + Pre zmenu cieľového zariadenia úložiska kliknite na toto tlačidlo - + CANCEL WRITE - + ZRUŠIŤ ZÁPIS - - + + Cancelling... - + Ruším operáciu... - + CANCEL VERIFY - + ZRUŠIŤ OVEROVANIE - - - + + + Finalizing... - + Ukončujem... @@ -544,187 +609,205 @@ - + Select this button to start writing the image - + Kliknutím na toto tlačidlo spustíte zápis - + + Select this button to access advanced settings + Použite toto tlačidlo na prístup k pokročilým nastaveniam + + + Using custom repository: %1 - + Používa sa vlastný repozitár: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Ovládanie pomocou klávesnice: <tabulátor> prechod na ďalšie tlačidlo <medzerník> stlačenie tlačidla/výber položky <šípka hore/dole> posun hore/dole v zoznamoch - + Language: - + Jazyk: - + Keyboard: + Klávesnica: + + + + Pi model: - + [ All ] - + Back - + Späť - + Go back to main menu - + Prejsť do hlavnej ponuky - + Released: %1 - + Vydané: %1 - + Cached on your computer - + Uložené na počítači - + Local file - + Miestny súbor - + Online - %1 GB download - + Online %1 GB na stiahnutie - - - + + + Mounted as %1 - + Pripojená ako %1 - + [WRITE PROTECTED] - + [OCHRANA PROTI ZÁPISU] - + Are you sure you want to quit? - + Skutočne chcete skončiť? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Raspberry Pi Imager ešte neskončil.<br>Ste si istý, že chcete skončiť? - + Warning - + Varovanie - + Preparing to write... - + Príprava zápisu... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + Všetky existujúce dáta na '%1' budú odstránené.<br>Naozaj chcete pokračovať? - + Update available - + Je dostupná aktualizácia - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Je dostupná nová verzia Imagera.<br>Chcete prejsť na webovú stránku s programom a stiahnuť ho? - + Error downloading OS list from Internet - + Chyba pri sťahovaní zoznamu OS z Internetu - + Writing... %1% - + Zapisujem... %1% - + Verifying... %1% - + Overujem... %1% - + Preparing to write... (%1) - + Príprava zápisu... (%1) - + Error - + Chyba - + Write Successful - + Zápis úspešne skončil - - + + Erase - + Vymazať - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b>%1</b> bola vymazaná<br><br>Teraz môžete odstrániť SD kartu z čítačky - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + <b>%1</b> bol zapísaný na <b>%2</b><br><br>Teraz môžete odstrániť SD kartu z čítačky - + Error parsing os_list.json - + Chyba pri spracovaní os_list.json - + Format card as FAT32 - + Formátovať kartu ako FAT32 - + Use custom - + Použiť vlastný - + Select a custom .img from your computer - + Použiť vlastný súbor img. na Vašom počítači - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + Najprv pripojte USB kľúč, ktorý obsahuje diskové obrazy.<br>Obrazy sa musia nachádzať v koreňovom priečinku USB kľúča. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + 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. + + + Select this button to change the destination SD card + Pre zmenu cieľovej SD karty kliknite na toto tlačidlo + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> bol zapísaný na <b>%2</b> diff --git a/src/i18n/rpi-imager_sl.ts b/src/i18n/rpi-imager_sl.ts index 5056073..07965dc 100644 --- a/src/i18n/rpi-imager_sl.ts +++ b/src/i18n/rpi-imager_sl.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + Napaka razširjanja arhiva: %1 Error mounting FAT32 partition - + Napaka priklopa FAT32 particije Operating system did not mount FAT32 partition - + Operacijski sistem, ni priklopil FAT32 particije Error changing to directory '%1' - + Napaka spremembe direktorija '%1%' + + + Error writing to storage + Napaka pisanja na disk @@ -35,119 +39,155 @@ opening drive - + Odpiranje pogona Error running diskpart: %1 - + Napaka zagona diskpart: %1 Error removing existing partitions - + Napaka odstranjevanja obstoječih particij Authentication cancelled - + Avtentifikacija preklicana Error running authopen to gain access to disk device '%1' - + Napaka zagona authopen za pridobitev dostopa do naprave diska '%1' 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'). - + 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'). Cannot open storage device '%1'. - + Ne morem odpreti diska '%1'. discarding existing data on drive - + Brisanje obstoječih podatkov na disku zeroing out first and last MB of drive - + Ničenje prvega in zadnjega MB diska Write error while zero'ing out MBR - + Napaka zapisovanja med ničenjem MBR Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + Napaka ničenja zadnjega dela diska.<br>Disk morebiti sporoča napačno velikost(možen ponaredek). starting download - + Začetek prenosa Error downloading: %1 - + Napaka prenosa:%1 Access denied error while writing file to disk. - + Napaka zavrnitve dostopa med pisanjem na disk. 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. - + Izgleda, da jevklopljen nadzor dostopa do map. Prosim dodajte oba rpi-imager.exe in fat32format.exe na seznam dovoljenih aplikacij in poizkusite znova. Error writing file to disk - + Napaka pisanja na disk Download corrupt. Hash does not match - + Prenos poškodovan.Hash se ne ujema Error writing to storage (while flushing) - + Napaka pisanja na disk (med brisanjem) Error writing to storage (while fsync) - + Napaka pisanja na disk (med fsync) Error writing first block (partition table) - + Napaka pisanja prvega bloka (particijska tabela) Error reading from storage.<br>SD card may be broken. - + Napaka branja iz diska.<br>SD kartica/disk je mogoče v okvari. Verifying write failed. Contents of SD card is different from what was written to it. - + Preverjanje pisanja spodletelo. Vsebina diska je drugačna, od tega, kar je bilo nanj zapisano. Customizing image - + Prilagajanje slike diska + + + Waiting for FAT partition to be mounted + Čakanje na priklop FAT particije + + + Error mounting FAT32 partition + Napaka priklopa FAT32 particije + + + Operating system did not mount FAT32 partition + Operacijski sisitem ni priklopil FAT32 particijo + + + Unable to customize. File '%1' does not exist. + Prilagoditev ni možna. Datoteka '%1' ne obstaja. + + + Error creating firstrun.sh on FAT partition + Napaka ustvarjanja firstrun.sh na FAT particiji + + + Error writing to config.txt on FAT partition + Napaka pisanja v config.txt na FAT particiji + + + Error creating user-data cloudinit file on FAT partition + Napaka ustvarjanja user-data cloudinit datoteke na FAT particiji + + + Error creating network-config cloudinit file on FAT partition + Napaka ustvarjanja network-config cloudinit datoteke na FAT particiji + + + Error writing to cmdline.txt on FAT partition + Napaka pisanja v cmdline.txt na FAT particiji @@ -157,85 +197,85 @@ Error partitioning: %1 - + Napaka izdelave particij: %1 Error starting fat32format - + Napaka zagona fat32format Error running fat32format: %1 - + Napaka delovanja fat32format: %1 Error determining new drive letter - + Napaka določitve nove črke pogona Invalid device: %1 - + Neveljavna naprava: %1 Error formatting (through udisks2) - + Napaka fromatiranja (z uporabo udisks2) Error starting sfdisk - + Napaka zagona sfdisk Partitioning did not create expected FAT partition %1 - + Ustvarjanje particij ni ustvarilo pričakovano FAT particijo %1 Error starting mkfs.fat - + Napaka zagona mkfs.fat Error running mkfs.fat: %1 - + Napaka delovanja mkfs.fat: %1 Formatting not implemented for this platform - + Formatiranje ni implemntirano za to platformo ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + Kapaciteta diska ni zadostna.<br>Biti mora vsaj %1 GB. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + Vhodna datoteka ni veljavna slika diska.<br>Velikost datoteke %1 bajtov ni večkratnik od 512 bajtov. - + Downloading and writing image - + Prenašanje in zapisovanje slike - + Select image - + Izberite sliko - + Would you like to prefill the wifi password from the system keychain? - + A bi želeli uporabiti WiFi geslo iz kjučev tega sistema? @@ -243,12 +283,12 @@ opening image file - + Odpiranje slike diska Error opening image file - + Napaka odpiranja slike diska @@ -256,22 +296,22 @@ NO - + NE YES - + DA CONTINUE - + NADALJUJ QUIT - + IZHOD @@ -279,22 +319,22 @@ Advanced options - + Napredne možnosti Image customization options - + Uporabi opcije prilagoditve slike diska for this session only - + samo za to sejo to always use - + vedno @@ -314,7 +354,7 @@ Set hostname: - + Ime naprave: @@ -330,22 +370,22 @@ Password: - + Geslo: Configure wireless LAN - + Nastavi WiFi SSID: - + SSID: Show password - + Pokaži geslo @@ -355,42 +395,42 @@ Wireless LAN country: - + WiFi je v državi: Set locale settings - + Nastavitve jezika Time zone: - + Časovni pas: Keyboard layout: - + Razporeditev tipkovnice: Enable SSH - + Omogoči SSH Use password authentication - + Uporabi geslo za avtentifikacijo Allow public-key authentication only - + Dovoli le avtentifikacijo z javnim kjučem Set authorized_keys for '%1': - + Nastavi authorized_keys za '%1': @@ -400,22 +440,42 @@ Play sound when finished - + Zaigraj zvok, ko končaš Eject media when finished - + Izvrzi medij, ko končaš Enable telemetry - + Omogoči telemetrijo SAVE - + SHRANI + + + Disable overscan + Onemogoči overscan + + + Set username: + Nastavi uporabniško ime: + + + Set password for '%1' user: + Nastavi geslo za uporabnika '%1': + + + Skip first-run wizard + Preskoči čarovnika prvega zagona + + + Persistent settings + Trajne nastavitve @@ -423,7 +483,7 @@ Internal SD card reader - + Vgrajeni čitalec SD kartic @@ -434,29 +494,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + NE + + + + NO, CLEAR SETTINGS + NE, POBRIŠI NASTAVITVE + + + + YES + DA + + + + EDIT SETTINGS + UREDI NASTAVITVE @@ -464,7 +524,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imager v%1 @@ -483,60 +543,65 @@ - - + + Operating System - + Operacijski Sistem - + CHOOSE OS - + IZBERI OS - + Select this button to change the operating system - + Izberite ta gumb za menjavo operacijskega sistema - - + + Storage - + SD kartica ali USB disk - - + + CHOOSE STORAGE - + IZBERI DISK - + + WRITE + ZAPIŠI + + + Select this button to change the destination storage device - + Uporabite ta gumb za spremembo ciljnega diska - + CANCEL WRITE - + PREKINI ZAPISOVANJE - - + + Cancelling... - + Prekinjam... - + CANCEL VERIFY - + PREKINI PREVERJANJE - - - + + + Finalizing... - + Zakjučujem... @@ -544,187 +609,201 @@ - + Select this button to start writing the image + Izberite za gumb za začetek pisanja slike diska + + + + Select this button to access advanced settings - + Using custom repository: %1 - + Uporabljam repozitorij po meri: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Navigacija s tipkovnico: <tab> pojdi na naslednji gumb <preslednica> pritisni gumb/izberi element <puščica gor/dol> premakni gor/dol po seznamu - + Language: - + Jezik: - + Keyboard: + Tipkovnica: + + + + Pi model: - + [ All ] - + Back - + Nazaj - + Go back to main menu - + Pojdi nazaj na glavni meni - + Released: %1 - + Izdano: %1 - + Cached on your computer - + Predpolnjeno na vaš računalnik - + Local file - + Lokalna datoteka - + Online - %1 GB download - + Iz spleta - %1 GB prenos - - - + + + Mounted as %1 - + Priklopljen kot %1 - + [WRITE PROTECTED] - + [ZAŠČITENO PRED PISANJEM] - + Are you sure you want to quit? - + A ste prepričani, da želite končat? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Raspberry Pi Imager je še vedno zaposlen.<br>A ste prepričani, da želite končati? - + Warning - + Opozorilo - + Preparing to write... - + Priprava na pisanje... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + VSI obstoječi podatki na '%1' bodo izbrisani.<br>A ste prepričani, da želite nadaljevati? - + Update available - + Posodobitev na voljo - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Na voljo je nova verzija tega programa. <br>Želite obiskati spletno stran za prenos? - + Error downloading OS list from Internet - + Napaka prenosa seznama OS iz interneta - + Writing... %1% - + Pišem...%1% - + Verifying... %1% - + Preverjam... %1% - + Preparing to write... (%1) - + Priprava na zapisovanje... (%1) - + Error - + Napaka - + Write Successful - + Zapisovanje uspešno - - + + Erase - + Odstrani - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b>%1</b> je pobrisan<br><br>Sedaj lahko odstranite SD kartico iz čitalca oz iztaknete USB disk - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + <b>%1</b> je zapisan na <b>%2</b><br><br>Sedaj lahko odstranite SD kartico iz čitalca oz iztaknete USB disk - + Error parsing os_list.json - + Napaka procesiranja os_list.json - + Format card as FAT32 - + Formatiraj disk v FAT32 - + Use custom - + Uporabi drugo - + Select a custom .img from your computer - + Izberite drug .img iz vašega računalnika - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + Najprej prikopite USB disk, ki vsebuje slike diskov.<br>Slike diskov se morajo nahajati v korenski mapi USB diska. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + SD kartica je zaščitena pred pisanjem.<br>Premaknite stikalo zaklepanja, na levi strani kartice in poizkusite znova. + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> je zapisan na <b>%2</b> diff --git a/src/i18n/rpi-imager_tr.ts b/src/i18n/rpi-imager_tr.ts index 2d74740..42f9b86 100644 --- a/src/i18n/rpi-imager_tr.ts +++ b/src/i18n/rpi-imager_tr.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + Arşiv çıkarılırken hata oluştu: %1 Error mounting FAT32 partition - + FAT32 bölümü bağlanırken hata oluştu Operating system did not mount FAT32 partition - + İşletim sistemi FAT32 bölümünü bağlamadı Error changing to directory '%1' - + Dizin değiştirirken hata oluştu '%1' + + + Error writing to storage + Depolama birimine yazma hatası @@ -35,120 +39,128 @@ opening drive - + sürücü açılıyor Error running diskpart: %1 - + Diskpart çalıştırılırken hata oluştu: %1 Error removing existing partitions - + Mevcut bölümler kaldırılırken hata oluştu Authentication cancelled - + Kimlik doğrulama iptal edildi Error running authopen to gain access to disk device '%1' - + '%1' disk aygıtına erişmek için authopen çalıştırılırken hata oluştu 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'). - + 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. Cannot open storage device '%1'. - + Depolama cihazı açılamıyor '%1'. discarding existing data on drive - + sürücüdeki mevcut verileri sil zeroing out first and last MB of drive - + sürücünün ilk ve son MB'sini sıfırlama Write error while zero'ing out MBR - + MBR sıfırlanırken yazma hatası Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + 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ı) starting download - + indirmeye başlanıyor Error downloading: %1 - + İndirilirken hata oluştu: %1 Access denied error while writing file to disk. - + Dosyayı diske yazarken erişim reddedildi hatası 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. - + 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. Error writing file to disk - + Dosyayı diske yazma hatası Download corrupt. Hash does not match - + İndirme bozuk. Hash eşleşmiyor Error writing to storage (while flushing) - + Depolama alanına yazma hatası (flushing sırasında) Error writing to storage (while fsync) - + Depoya yazma hatası (fsync sırasında) Error writing first block (partition table) - + İlk bloğu yazma hatası (bölüm tablosu) Error reading from storage.<br>SD card may be broken. - + Depolamadan okuma hatası.<br>SD kart arızalı olabilir. Verifying write failed. Contents of SD card is different from what was written to it. - + Yazma doğrulanamadı. SD kartın içeriği, üzerine yazılandan farklı. Customizing image + + Error mounting FAT32 partition + FAT32 bölümü bağlanırken hata oluştu + + + Operating system did not mount FAT32 partition + İşletim sistemi FAT32 bölümünü bağlamadı + DriveFormatThread @@ -157,37 +169,37 @@ Error partitioning: %1 - + Bölümleme hatası: %1 Error starting fat32format - + fat32format başlatılırken hata oluştu Error running fat32format: %1 - + fat32format çalıştırılırken hata oluştu: %1 Error determining new drive letter - + Yeni sürücü harfi belirlenirken hata oluştu Invalid device: %1 - + Geçersiz cihaz: %1 Error formatting (through udisks2) - + Hatalı biçimlendirme (udisks2 aracılığıyla) Error starting sfdisk - + sfdisk başlatılırken hata oluştu @@ -197,43 +209,43 @@ Error starting mkfs.fat - + mkfs.fat başlatılırken hata oluştu Error running mkfs.fat: %1 - + mkfs.fat çalıştırılırken hata oluştu: %1 Formatting not implemented for this platform - + Bu platform için biçimlendirme uygulanmadı ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + Depolama kapasitesi yeterince büyük değil.<br>En az %1 GB olması gerekiyor - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + Giriş dosyası geçerli bir disk görüntüsü değil.<br>%1 bayt dosya boyutu 512 baytın katı değil. - + Downloading and writing image - + Görüntü indirme ve yazma - + Select image - + Imaj seç - + Would you like to prefill the wifi password from the system keychain? @@ -243,12 +255,12 @@ opening image file - + imaj dosyası açılıyor Error opening image file - + Imaj dosyası açılırken hata oluştu @@ -256,17 +268,17 @@ NO - + HAYIR YES - + EVET CONTINUE - + DEVAM ET @@ -423,7 +435,7 @@ Internal SD card reader - + Dahili SD kart okuyucu @@ -434,28 +446,28 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - + + NO + HAYIR - + NO, CLEAR SETTINGS - + YES - + EVET - - NO + + EDIT SETTINGS @@ -464,7 +476,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imaj Yöneticisi v%1 @@ -483,60 +495,65 @@ - - + + Operating System - + İşletim sistemi - + CHOOSE OS - + İŞLETİM SİSTEMİ SEÇİN - + Select this button to change the operating system - + İşletim sistemini değiştirmek için bu düğmeyi seçin - - + + Storage - + SD Kart - - + + CHOOSE STORAGE - + SD KART SEÇİN - + + WRITE + YAZ + + + Select this button to change the destination storage device - + CANCEL WRITE - + YAZMAYI İPTAL ET - - + + Cancelling... - + İptal ediliyor... - + CANCEL VERIFY - + DOĞRULAMA İPTALİ - - - + + + Finalizing... - + Bitiriliyor... @@ -544,187 +561,206 @@ - + Select this button to start writing the image + Görüntüyü yazmaya başlamak için bu düğmeyi seçin + + + + Select this button to access advanced settings - + Using custom repository: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Language: - + Keyboard: - + + Pi model: + + + + [ All ] - + Back - + Geri - + Go back to main menu - + Ana menüye dön - + Released: %1 - + Yayın: %1 - + Cached on your computer - + Bilgisayarınızda önbelleğe alındı + - + Local file - + Yerel dosya - + Online - %1 GB download - + Çevrimiçi -%1 GB indir - - - + + + Mounted as %1 - + %1 olarak bağlandı. - + [WRITE PROTECTED] - + [YAZMA KORUMALI] - + Are you sure you want to quit? - + Çıkmak istediğine emin misin? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Raspberry Pi Imager hala meşgul.<br>Çıkmak istediğinizden emin misiniz? - + Warning - + Uyarı - + Preparing to write... - + Yazdırmaya hazırlanıyor... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + '%1' üzerindeki mevcut tüm veriler silinecek.<br>Devam etmek istediğinizden emin misiniz? - + Update available - + Güncelleme bulunuyor - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Görüntüleyicinin daha yeni bir sürümü var. <br> İndirmek için web sitesini ziyaret etmek ister misiniz? - + Error downloading OS list from Internet - + İnternetten işletim sistemi listesi indirilirken hata oluştu - + Writing... %1% - + Yazılıyor... %1% - + Verifying... %1% - + Doğrulanıyor... %1% - + Preparing to write... (%1) - + Yazdırmaya hazırlanıyor... (%1) - + Error - + Hata - + Write Successful - + Başarılı Yazıldı - - + + Erase - + Sil - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b>%1</b> silindi <br><br> Artık SD kartı okuyucudan çıkarabilirsiniz - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + <b>%1</b> <b>%2</b><br><br> üzerine yazıldı. Artık SD kartı okuyucudan çıkarabilirsiniz - + Error parsing os_list.json - + os_list.json ayrıştırma hatası - + Format card as FAT32 - + Kartı FAT32 olarak biçimlendir - + Use custom - + Özel imaj kullan - + Select a custom .img from your computer - + Bilgisayarınızdan özel bir .img seçin - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + Ö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. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + SD kart yazma korumalı. <br> Kartın sol tarafındaki kilit anahtarını yukarı itin ve tekrar deneyin. + + + Select this button to change the destination SD card + Hedef SD kartı değiştirmek için bu düğmeyi seçin + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> <b>%2</b><br><br> üzerine yazıldı diff --git a/src/i18n/rpi-imager_uk.ts b/src/i18n/rpi-imager_uk.ts index 23c57dc..eab21fb 100644 --- a/src/i18n/rpi-imager_uk.ts +++ b/src/i18n/rpi-imager_uk.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + Помилка розпакування архіва: %1 Error mounting FAT32 partition - + Помилка монтування FAT32 розділу Operating system did not mount FAT32 partition - + Операційна система не монтувала FAT32 розділ Error changing to directory '%1' - + Помилка при зміні каталогу на '%1' + + + Error writing to storage + Помилка запису на накопичувач @@ -30,124 +34,124 @@ unmounting drive - + диск від'єднується opening drive - + диск відкривається Error running diskpart: %1 - + Помилка при виконанні diskpart: %1 Error removing existing partitions - + Помилка при видаленні існуючих розділів Authentication cancelled - + Аутентифікація скасована Error running authopen to gain access to disk device '%1' - + Помилка виконання authopen для отримання доступу до пристроя '%1' 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'). - + Переконайтеся, що у Raspberry Pi Imager у налаштуваннях приватності (у розділі "файли та каталоги") є доступ до змінних розділів. Або дайте програмі доступ до усього диску. Cannot open storage device '%1'. - + Не вдалося відкрити накопичувач '%1'. discarding existing data on drive - + видалення існуючих даних на диску zeroing out first and last MB of drive - + обнулювання першого і останнього мегабайта диску Write error while zero'ing out MBR - + Помилка при обнулюванні MBR Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + Помилка запису під час обнулювання останнього розділу карти пам'яті.<br>Можливо заявлений об'єм карти не збігається з реальним (можливо карта є підробленою). starting download - + початок завантаження Error downloading: %1 - + Помилка завантаження: %1 Access denied error while writing file to disk. - + Помилка доступу при записі файлу на диск. 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. - + Схоже, що увімкнено контрольований доступ до каталогу (Controlled Folder Access). Додайте rpi-imager.exe і fat32format.exe в список виключення та спробуйте ще раз. Error writing file to disk - + Помилка запису файлу на диск Download corrupt. Hash does not match - + Завантаження пошкоджено. Хеш сума не збігається Error writing to storage (while flushing) - + Помилка запису на накопичувач (при скидуванні) Error writing to storage (while fsync) - + Помилка запису на накопичувач (при виконанні fsync) Error writing first block (partition table) - + Помилка під час запису першого блоку (таблиця розділів) Error reading from storage.<br>SD card may be broken. - + Помилка читання накопичувача.<br>SD-карта пам'яті може бути пошкоджена. Verifying write failed. Contents of SD card is different from what was written to it. - + Помилка перевірки запису. Зміст SD-карти пам'яті відрізняється від того, що було записано туди. Customizing image - + Налаштування образа @@ -157,85 +161,85 @@ Error partitioning: %1 - + Помилка створення роздіу: %1 Error starting fat32format - + Помилка запуску fat32format Error running fat32format: %1 - + Помилка під час виконання fat32format: %1 Error determining new drive letter - + Помилка визначення нової букви диску Invalid device: %1 - + Не правильний пристрій: %1 Error formatting (through udisks2) - + Помилка форматування (через udisks2) Error starting sfdisk - + Помилка запуску sfdisk Partitioning did not create expected FAT partition %1 - + При створенні розділів не було створено очікуваний розділ FAT %1 Error starting mkfs.fat - + Помилка запуску mkfs.fat Error running mkfs.fat: %1 - + Помилка виконання mkfs.fat: %1 Formatting not implemented for this platform - + Форматування не доступно на цій платформі ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + Місця на накопичувачі недостатньо.<br>Треба, щоб було хоча б %1 ГБ. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + Обраний файл не є правильним образом диску.<br>Розмір файла %1 байт не є кратним 512 байт. - + Downloading and writing image - + Завантаження і запис образу - + Select image - + Обрати образ - + Would you like to prefill the wifi password from the system keychain? - + Вказати пароль від Wi-Fi автоматично із системного ланцюга ключів? @@ -243,12 +247,12 @@ opening image file - + відкривання файлу образа Error opening image file - + Помилка при відкриванні файлу образу @@ -256,22 +260,22 @@ NO - + НІ YES - + ТАК CONTINUE - + ПРОДОВЖИТИ QUIT - + ВИЙТИ @@ -279,22 +283,22 @@ Advanced options - + Розширені опції Image customization options - + Налаштування образу for this session only - + тільки для цієї сесії to always use - + завжди використовувати @@ -314,73 +318,73 @@ Set hostname: - + Змінити ім'я хосту Set username and password - + Встановити ім'я користувача і пароль Username: - + Ім'я користувача: Password: - + Пароль: Configure wireless LAN - + Налаштувати Wi-Fi SSID: - + SSID: Show password - + Показати пароль Hidden SSID - + Схована SSID Wireless LAN country: - + Країна Wi-Fi: Set locale settings - + Змінити налаштування регіону Time zone: - + Часова зона: Keyboard layout: - + Розкладка клавіатури: Enable SSH - + Увімкнути SHH Use password authentication - + Використовувати аутентефікацію черз пароль @@ -390,7 +394,7 @@ Set authorized_keys for '%1': - + Встановити authorized_keys для '%1': @@ -400,22 +404,26 @@ Play sound when finished - + Відтворити звук після завершення Eject media when finished - + Витягнути накопичувач після завершення Enable telemetry - + Увімкнути телеметрію SAVE - + ЗБЕРЕГТИ + + + Persistent settings + Постійні налаштування @@ -423,7 +431,7 @@ Internal SD card reader - + Внутрішній считувач SD карт @@ -434,29 +442,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + НІ + + + + NO, CLEAR SETTINGS + НІ, ОЧИСТИТИ НАЛАШТУВАННЯ + + + + YES + ТАК + + + + EDIT SETTINGS + РЕДАГУВАТИ НАЛАШТУВАННЯ @@ -464,7 +472,7 @@ Raspberry Pi Imager v%1 - + Raspberry Pi Imager, версія %1 @@ -483,60 +491,65 @@ - - + + Operating System - + Операційна система - + CHOOSE OS - + ОБРАТИ ОС - + Select this button to change the operating system - + Натисніть на цю кнопку, щоб змінити операційну систему - - + + Storage - + Накопичувач - - + + CHOOSE STORAGE - + ОБРАТИ НАКОПИЧУВАЧ - + + WRITE + ЗАПИСАТИ + + + Select this button to change the destination storage device - + Натисніть цю кнопку, щоб змінити пристрій призначення - + CANCEL WRITE - + СКАСУВАТИ ЗАПИСУВАННЯ - - + + Cancelling... - + Скасування... - + CANCEL VERIFY - + СКАСУВАТИ ПЕРЕВІРКУ - - - + + + Finalizing... - + Завершення... @@ -544,187 +557,197 @@ - + Select this button to start writing the image - + Натисніть цю кнопку, щоб розпочати запис образу - + + Select this button to access advanced settings + Натисніть цю кнопку, щоб отримати доступ до розширених опцій + + + Using custom repository: %1 - + Користуючись власним репозиторієм: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Навігація клавіатурою: клавіша <Tab> переміститися на наступну кнопку, клавіша <Пробіл> натиснути кнопку/обрати елемент, клавіши з <стрілками вниз/вгору> переміститися вниз/вгору по списку - + Language: - + Мова: - + Keyboard: + Клавіатура: + + + + Pi model: - + [ All ] - + Back - + Назад - + Go back to main menu - + Повернутися у головне меню - + Released: %1 - + Випущено: %1 - + Cached on your computer - + Кешовано на вашому комп'ютері - + Local file - + Локальний файл - + Online - %1 GB download - + Онлайн - потрібно завантажити %1 ГБ - - - + + + Mounted as %1 - + Примонтовано як %1 - + [WRITE PROTECTED] - + ЗАХИЩЕНО ВІД ЗАПИСУ - + Are you sure you want to quit? - + Бажаєте вийти? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Raspberry Pi Imager все ще зайнятий.<br>Ви впевнені, що бажаєте вийти? - + Warning - + Увага - + Preparing to write... - + Підготовка до запису... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + Усі уснуючі дані у '%1' будуть видалені.<br> Ви впевнені, що бажаєте продовжити? - + Update available - + Доступно оновлення - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + Доступна нова версія Imager.<br>Бажаєте завітати на сайт та завантажити її? - + Error downloading OS list from Internet - + Помилка завантаження списку ОС із Інтернету - + Writing... %1% - + Записування...%1% - + Verifying... %1% - + Перевірка...%1% - + Preparing to write... (%1) - + Підготовка до запису... (%1) - + Error - + Помилка - + Write Successful - + Успішно записано - - + + Erase - + Видалити - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b>%1</b> був успішно видалено.br><br> тепер можна дістати SD карту із считувача - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + Записування <b>%1</b> на <b>%2</b> виконано <br><br> Тепер можна дістати SD карту із считувача - + Error parsing os_list.json - + Помилка парсування os_list.json - + Format card as FAT32 - + Форматувати карту у FAT32 - + Use custom - + Власний образ - + Select a custom .img from your computer - + Обрати власний .img з вашого комп'ютера - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + Спочатку під'єднайте USB-накопичувач з образами.<br>Образи повинні знаходитися у корінному каталогу USB-накопичувача. - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + SD карта захищена від запису.<br>перетягніть перемикач на лівій стороні картки вгору, і спробуйте ще раз. diff --git a/src/i18n/rpi-imager_zh.ts b/src/i18n/rpi-imager_zh.ts index ab1b089..3ab8a83 100644 --- a/src/i18n/rpi-imager_zh.ts +++ b/src/i18n/rpi-imager_zh.ts @@ -7,22 +7,26 @@ Error extracting archive: %1 - + 解压 %1 时出错 Error mounting FAT32 partition - + 挂载FAT32分区错误 Operating system did not mount FAT32 partition - + 操作系统未能挂载FAT32分区 Error changing to directory '%1' - + 进入文件夹 “%1” 错误 + + + Error writing to storage + 写入时出错 @@ -35,119 +39,143 @@ opening drive - + 打开驱动器 Error running diskpart: %1 - + 运行 “diskpart” 命令错误 %1 Error removing existing partitions - + 删除现有分区时出错 Authentication cancelled - + 认证已取消 Error running authopen to gain access to disk device '%1' - + 运行authopen以获得对磁盘设备'%1'的访问权限时出错 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'). - + 请验证是否在隐私设置中允许“ Raspberry Pi Imager”访问“可移动卷”(在“文件和文件夹”下,或者为它提供“完全磁盘访问”)的权限。 Cannot open storage device '%1'. - + 无法打开存储设备'%1'。 discarding existing data on drive - + 删除现有数据 zeroing out first and last MB of drive - + 清空驱动器未使用的数据 Write error while zero'ing out MBR - + 将MBR清零时写入错误 Write error while trying to zero out last part of card.<br>Card could be advertising wrong capacity (possible counterfeit). - + 写入镜像失败<br>SD卡可能损坏。 starting download - + 开始下载 Error downloading: %1 - + 下载文件错误,已下载:%1 Access denied error while writing file to disk. - + 将文件写入磁盘时访问被拒绝。 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. - + 受控文件夹访问似乎已启用。 请将rpi-imager.exe和fat32format.exe都添加到允许的应用程序列表中,然后重试。 Error writing file to disk - + 将文件写入磁盘时出错 Download corrupt. Hash does not match - + 下载的文件损坏。 哈希值不匹配 Error writing to storage (while flushing) - + 刷写存储时出错 Error writing to storage (while fsync) - + 在fsync时写入存储时出错 Error writing first block (partition table) - + 写入第一个块(分区表)时出错 Error reading from storage.<br>SD card may be broken. - + 从存储读取数据时错误。<br>SD卡可能已损坏。 Verifying write failed. Contents of SD card is different from what was written to it. - + 验证写入失败。 SD卡的内容与写入的内容不同。 Customizing image - + 使用自定义镜像 + + + Waiting for FAT partition to be mounted + 等待FAT分区挂载 + + + Error mounting FAT32 partition + 挂载FAT32分区错误 + + + Operating system did not mount FAT32 partition + 操作系统未能挂载FAT32分区 + + + Error creating firstrun.sh on FAT partition + 在FAT分区上创建firstrun.sh脚本文件时出错 + + + Error writing to config.txt on FAT partition + 在FAT分区上写入config.txt时出错 + + + Error writing to cmdline.txt on FAT partition + 在FAT分区上写入cmdline.txt时出错 @@ -157,37 +185,37 @@ Error partitioning: %1 - + 错误分区:%1 Error starting fat32format - + 启动fat32format命令时出错 Error running fat32format: %1 - + 运行fat32format时出错:%1 Error determining new drive letter - + 确定新驱动器号时出错 Invalid device: %1 - + 无效的设备:%1 Error formatting (through udisks2) - + 格式化错误 Error starting sfdisk - + 启动sfdisk命令时出错 @@ -197,43 +225,43 @@ Error starting mkfs.fat - + 启动mkfs.fat时出错 Error running mkfs.fat: %1 - + 运行mkfs.fat时出错:%1 Formatting not implemented for this platform - + 暂不支持此平台的格式化 ImageWriter - + Storage capacity is not large enough.<br>Needs to be at least %1 GB. - + 存储容量不足。<br>至少需要%1 GB的空白空间. - + Input file is not a valid disk image.<br>File size %1 bytes is not a multiple of 512 bytes. - + 输入文件不是有效的磁盘映像。<br>文件大小%1字节不是512字节的倍数。 - + Downloading and writing image - + 下载和写入镜像 - + Select image - + 选择镜像 - + Would you like to prefill the wifi password from the system keychain? @@ -243,12 +271,12 @@ opening image file - + 导入系统镜像 Error opening image file - + 打开图像文件时出错 @@ -256,17 +284,17 @@ NO - + YES - + CONTINUE - + 继续 @@ -279,22 +307,22 @@ Advanced options - + 高级设置 Image customization options - + 镜像自定义选项 for this session only - + 仅限本次 to always use - + 永久保存 @@ -314,7 +342,7 @@ Set hostname: - + 设置主机名: @@ -330,22 +358,22 @@ Password: - + 密码: Configure wireless LAN - + 配置WiFi SSID: - + 热点名: Show password - + 显示密码 @@ -355,42 +383,42 @@ Wireless LAN country: - + WIFI国家: Set locale settings - + 语言设置 Time zone: - + 时区: Keyboard layout: - + 键盘布局: Enable SSH - + 开启SSH服务 Use password authentication - + 使用密码登录 Allow public-key authentication only - + 只允许使用公匙登录 Set authorized_keys for '%1': - + 设置%1用户的登录密匙: @@ -400,22 +428,38 @@ Play sound when finished - + 完成后播放提示音 Eject media when finished - + 完成后弹出磁盘 Enable telemetry - + 启用遥测 SAVE - + 保存 + + + Disable overscan + 禁用扫描 + + + Set password for '%1' user: + 设置'%1'用户的密码: + + + Skip first-run wizard + 跳过首次启动向导 + + + Persistent settings + 永久设置 @@ -423,7 +467,7 @@ Internal SD card reader - + 内置SD卡读卡器 @@ -434,29 +478,29 @@ - + Would you like to apply image customization settings? - - EDIT SETTINGS - - - - - NO, CLEAR SETTINGS - - - - - YES - - - - + NO - + + + + + NO, CLEAR SETTINGS + 清空所有设置 + + + + YES + + + + + EDIT SETTINGS + 编辑设置 @@ -464,7 +508,7 @@ Raspberry Pi Imager v%1 - + 树莓派镜像烧录器 v%1 @@ -483,60 +527,65 @@ - - + + Operating System - + 请选择需要写入的操作系统 - + CHOOSE OS - + 选择操作系统 - + Select this button to change the operating system - + 更改操作系统 - - + + Storage - + 储存卡 - - + + CHOOSE STORAGE - + 选择SD卡 - + Select this button to change the destination storage device - + 选择此按钮以更改目标存储设备 - + + WRITE + 烧录 + + + CANCEL WRITE - + 取消写入 - - + + Cancelling... - + 取消... - + CANCEL VERIFY - + 取消验证 - - - + + + Finalizing... - + 正在完成... @@ -544,187 +593,213 @@ - + Select this button to start writing the image + 开始写入 + + + + Select this button to access advanced settings - + Using custom repository: %1 - + Keyboard navigation: <tab> navigate to next button <space> press button/select item <arrow up/down> go up/down in lists - + Language: - + Keyboard: - + + Pi model: + + + + [ All ] - + Back - + 返回 - + Go back to main menu - + 回到主页 - + Released: %1 - + 发布时间:%1 - + Cached on your computer - + 缓存在本地磁盘里 - + Local file - + 本地文件 - + Online - %1 GB download - + 需要下载:%1 GB - - - + + + Mounted as %1 - + 挂载到:%1 上 - + [WRITE PROTECTED] - + [写保护] - + Are you sure you want to quit? - + 你确定你要退出吗? - + Raspberry Pi Imager is still busy.<br>Are you sure you want to quit? - + Raspberry Pi Imager还未完成任务。<br>您确定要退出吗? - + Warning - + 警告 - + Preparing to write... - + 准备写入... - + All existing data on '%1' will be erased.<br>Are you sure you want to continue? - + '%1'上的所有现有数据将被删除。<br>确定要继续吗? - + Update available - + 检测到更新 - + There is a newer version of Imager available.<br>Would you like to visit the website to download it? - + 有较新版本的rpi-imager。<br>需要下载更新吗? - + Error downloading OS list from Internet - + 下载镜像列表错误 - + Writing... %1% - + 写入中...%1% - + Verifying... %1% - + 验证文件中...%1% - + Preparing to write... (%1) - + 写入中 (%1) - + Error - + 错误 - + Write Successful - + 烧录成功 - - + + Erase - + 擦除 - + <b>%1</b> has been erased<br><br>You can now remove the SD card from the reader - + <b>%1 </ b>已被删除<br> <br>您现在可以从读取器中取出SD卡 - + <b>%1</b> has been written to <b>%2</b><br><br>You can now remove the SD card from the reader - + <b>%1</b> 已经成功烧录到 <b>%2</b><br><br>上了,你可以卸载SD卡了 - + Error parsing os_list.json - + 解析 os_list.json 错误 - + Format card as FAT32 - + 将SD卡格式化为FAT32格式 - + Use custom - + 使用自定义镜像 - + Select a custom .img from your computer - + 使用下载的系统镜像文件烧录 - + Connect an USB stick containing images first.<br>The images must be located in the root folder of the USB stick. - + 连接包含镜像的U盘。<br>镜像必须位于U盘的根文件夹中。 - + SD card is write protected.<br>Push the lock switch on the left side of the card upwards, and try again. - + SD卡具有写保护。<br>尝试向上推SD卡的左侧的锁定开关,然后重试。 + + + Select this button to change the destination SD card + 更改目标SD卡 + + + <b>%1</b> has been written to <b>%2</b> + <b>%1</b> 已经成功烧录到 <b>%2</b> + + + QUIT APP + 退出 + + + CONTINUE + 继续 From 6ba6370835df9cb5c09e0c609b886b5ca9990f98 Mon Sep 17 00:00:00 2001 From: Vovkiv <54743395+Vovkiv@users.noreply.github.com> Date: Mon, 16 Oct 2023 15:39:45 +0000 Subject: [PATCH 21/25] Update rpi-imager_uk.ts --- src/i18n/rpi-imager_uk.ts | 34 +++++++++++++++++----------------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/src/i18n/rpi-imager_uk.ts b/src/i18n/rpi-imager_uk.ts index eab21fb..67101e5 100644 --- a/src/i18n/rpi-imager_uk.ts +++ b/src/i18n/rpi-imager_uk.ts @@ -283,7 +283,7 @@ Advanced options - Розширені опції + Розширені налаштування @@ -298,27 +298,27 @@ to always use - завжди використовувати + для постійного використання General - + Загальні Services - + Сервіси Options - + Налаштування Set hostname: - Змінити ім'я хосту + Встановити ім'я хосту: @@ -354,7 +354,7 @@ Hidden SSID - Схована SSID + Прихована SSID @@ -389,7 +389,7 @@ Allow public-key authentication only - + Дозволити аутентифікацію лише через публічні ключі @@ -399,7 +399,7 @@ RUN SSH-KEYGEN - + ЗАПУСТИТИ ГЕНЕРАЦІЮ КЛЮЧА SHH @@ -439,12 +439,12 @@ Use image customisation? - + Використовувати кастомізацію образу? Would you like to apply image customization settings? - + Чи бажаєте ви прийняти налаштування кастомізації образу? @@ -478,17 +478,17 @@ Raspberry Pi Device - + Пристрій Raspberry Pi CHOOSE DEVICE - + ОБРАТИ ПРИСТРІЙ Select this button to choose your target Raspberry Pi - + Оберіть цю кнопку, щоб обрати модель вашої Raspberry Pi @@ -554,7 +554,7 @@ Next - + Далі @@ -589,12 +589,12 @@ Pi model: - + Модель Raspberry Pi: [ All ] - + [Усі] From 5a71676c75ccaa510fa7883b32723dd78b03bf62 Mon Sep 17 00:00:00 2001 From: Nicolas Martignoni Date: Mon, 16 Oct 2023 19:30:32 +0300 Subject: [PATCH 22/25] Update French translation --- src/i18n/rpi-imager_fr.ts | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/src/i18n/rpi-imager_fr.ts b/src/i18n/rpi-imager_fr.ts index 20ff127..ce92cca 100644 --- a/src/i18n/rpi-imager_fr.ts +++ b/src/i18n/rpi-imager_fr.ts @@ -26,7 +26,7 @@ Error writing to storage - Erreur d'écriture dans le stockage + Erreur d'écriture vers le stockage @@ -339,17 +339,17 @@ General - + Général Services - + Services Options - + Options @@ -435,7 +435,7 @@ RUN SSH-KEYGEN - + LANCER SSH-KEYGEN @@ -475,12 +475,12 @@ Use image customisation? - + Utiliser la personnalisation ? Would you like to apply image customization settings? - + Voulez-vous applquer les réglages personnalisés de l'image ? @@ -514,17 +514,17 @@ Raspberry Pi Device - + Modèle de Raspberry Pi CHOOSE DEVICE - + CHOISIR LE MODÈLE Select this button to choose your target Raspberry Pi - + Sélectionner ce bouton pour choisir le modèle de votre Raspberry Pi @@ -590,7 +590,7 @@ Next - + Suivant @@ -625,12 +625,12 @@ Pi model: - + Modèle RPi [ All ] - + [ Tous ] From 0b7aed4197cd5d1b8038ecc415f5d130282d4cfb Mon Sep 17 00:00:00 2001 From: Nicolas Martignoni Date: Mon, 16 Oct 2023 19:32:35 +0300 Subject: [PATCH 23/25] Fix a missing colon in a string - French translation --- src/i18n/rpi-imager_fr.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/i18n/rpi-imager_fr.ts b/src/i18n/rpi-imager_fr.ts index ce92cca..dabf454 100644 --- a/src/i18n/rpi-imager_fr.ts +++ b/src/i18n/rpi-imager_fr.ts @@ -625,7 +625,7 @@ Pi model: - Modèle RPi + Modèle RPi : From 36c906ad8784177c30c040989d2d9fc3eb81dd27 Mon Sep 17 00:00:00 2001 From: Vovkiv <54743395+Vovkiv@users.noreply.github.com> Date: Mon, 16 Oct 2023 17:34:56 +0000 Subject: [PATCH 24/25] Fix --- src/i18n/rpi-imager_uk.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/i18n/rpi-imager_uk.ts b/src/i18n/rpi-imager_uk.ts index 67101e5..cf8f099 100644 --- a/src/i18n/rpi-imager_uk.ts +++ b/src/i18n/rpi-imager_uk.ts @@ -379,7 +379,7 @@ Enable SSH - Увімкнути SHH + Увімкнути SSH @@ -399,7 +399,7 @@ RUN SSH-KEYGEN - ЗАПУСТИТИ ГЕНЕРАЦІЮ КЛЮЧА SHH + ЗАПУСТИТИ SHH-KEYGEN From b9afcc69bb13448d7a000bc5f43694f091c90792 Mon Sep 17 00:00:00 2001 From: qoijjj <129108030+qoijjj@users.noreply.github.com> Date: Mon, 16 Oct 2023 13:11:05 -0700 Subject: [PATCH 25/25] fix: add xz-devel to fedora build dependency installation instructions Without this, the cmake step fails with "cmake error: could NOT find LibLZMA". --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 525cb00..cf5d49f 100644 --- a/README.md +++ b/README.md @@ -65,7 +65,7 @@ If udisks2 is not functional on your Linux distribution, you can alternatively s Install the build dependencies: ``` -sudo yum install git gcc gcc-c++ make cmake libarchive-devel libcurl-devel lzma-sdk-devel openssl-devel qt5-qtbase-devel qt5-qtquickcontrols2-devel qt5-qtsvg-devel qt5-linguist +sudo yum install git gcc gcc-c++ make cmake libarchive-devel libcurl-devel lzma-sdk-devel openssl-devel qt5-qtbase-devel qt5-qtquickcontrols2-devel qt5-qtsvg-devel qt5-linguist xz-devel ``` #### Get the source