From adfb37fbf9bc41b0bb04870fc279ebda6046fbc5 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bruno=20Gon=C3=A7alves?= Date: Sun, 26 Jan 2025 21:04:19 -0300 Subject: [PATCH] Simplify translation --- contents/config/config.qml | 4 +-- contents/ui/ConfigAppearance.qml | 40 +++++++++++------------ contents/ui/ConfigGeneral.qml | 54 ++++++++++++++++---------------- contents/ui/Header.qml | 2 +- contents/ui/WebView.qml | 14 ++++----- locale/bg.json | 1 - locale/cs.json | 1 - locale/da.json | 1 - locale/de.json | 1 - locale/el.json | 1 - locale/en.json | 1 - locale/es.json | 1 - locale/et.json | 1 - locale/et.po | 4 --- locale/fi.json | 1 - locale/fi.po | 4 --- locale/fr.json | 1 - locale/he.json | 1 - locale/hr.json | 1 - locale/hu.json | 1 - locale/is.json | 1 - locale/is.po | 4 --- locale/it.json | 1 - locale/it.po | 4 --- locale/ja.json | 1 - locale/ja.po | 4 --- locale/ko.json | 1 - locale/nl.json | 1 - locale/no.json | 1 - locale/pl.json | 1 - locale/pl.po | 4 --- locale/pt.json | 1 - locale/pt.po | 4 --- locale/ro.json | 1 - locale/ru.json | 1 - locale/sk.json | 1 - locale/sv.json | 1 - locale/sv.po | 4 --- locale/tr.json | 1 - locale/tr.po | 4 --- locale/uk.json | 1 - locale/uk.po | 4 --- locale/zh.json | 1 - 43 files changed, 57 insertions(+), 125 deletions(-) delete mode 100644 locale/bg.json delete mode 100644 locale/cs.json delete mode 100644 locale/da.json delete mode 100644 locale/de.json delete mode 100644 locale/el.json delete mode 100644 locale/en.json delete mode 100644 locale/es.json delete mode 100644 locale/et.json delete mode 100644 locale/fi.json delete mode 100644 locale/fr.json delete mode 100644 locale/he.json delete mode 100644 locale/hr.json delete mode 100644 locale/hu.json delete mode 100644 locale/is.json delete mode 100644 locale/it.json delete mode 100644 locale/ja.json delete mode 100644 locale/ko.json delete mode 100644 locale/nl.json delete mode 100644 locale/no.json delete mode 100644 locale/pl.json delete mode 100644 locale/pt.json delete mode 100644 locale/ro.json delete mode 100644 locale/ru.json delete mode 100644 locale/sk.json delete mode 100644 locale/sv.json delete mode 100644 locale/tr.json delete mode 100644 locale/uk.json delete mode 100644 locale/zh.json diff --git a/contents/config/config.qml b/contents/config/config.qml index 84ad761..090f4db 100644 --- a/contents/config/config.qml +++ b/contents/config/config.qml @@ -10,13 +10,13 @@ import org.kde.plasma.configuration 2.0 ConfigModel { ConfigCategory { - name: i18nc("@title", "General") + name: i18n("General") icon: "plasma" source: "ConfigGeneral.qml" } ConfigCategory { - name: i18nc("@title", "Appearance") + name: i18n("Appearance") icon: "preferences-desktop-color" source: "ConfigAppearance.qml" } diff --git a/contents/ui/ConfigAppearance.qml b/contents/ui/ConfigAppearance.qml index 4b245cf..2746a06 100644 --- a/contents/ui/ConfigAppearance.qml +++ b/contents/ui/ConfigAppearance.qml @@ -32,8 +32,8 @@ KCM.SimpleKCM { QQC2.RadioButton { id: useFavicon - Kirigami.FormData.label: i18nc("@title:group", "Icon:") - text: i18nc("@option:radio", "Use website favicon") + Kirigami.FormData.label: i18n("Icon:") + text: i18n("Use website favicon") QQC2.ButtonGroup.group: iconGroup } @@ -41,42 +41,42 @@ KCM.SimpleKCM { QQC2.RadioButton { id: useDefaultIcon - text: i18nc("@option:radio", "Default adaptive icon") + text: i18n("Default adaptive icon") QQC2.ButtonGroup.group: iconGroup } QQC2.RadioButton { id: useDefaultDarkIcon - text: i18nc("@option:radio", "Default dark icon") + text: i18n("Default dark icon") QQC2.ButtonGroup.group: iconGroup } QQC2.RadioButton { id: useDefaultLightIcon - text: i18nc("@option:radio", "Default light icon") + text: i18n("Default light icon") QQC2.ButtonGroup.group: iconGroup } QQC2.RadioButton { id: useOutlinedChatIcon - text: i18nc("@option:radio", "Outlined chat's icon") + text: i18n("Outlined chat's icon") QQC2.ButtonGroup.group: iconGroup } QQC2.RadioButton { id: useFilledChatIcon - text: i18nc("@option:radio", "Filled chat's icon") + text: i18n("Filled chat's icon") QQC2.ButtonGroup.group: iconGroup } QQC2.RadioButton { id: useColorfulChatIcon - text: i18nc("@option:radio", "Colorful chat's icon") + text: i18n("Colorful chat's icon") QQC2.ButtonGroup.group: iconGroup } @@ -88,7 +88,7 @@ KCM.SimpleKCM { // Header Options section QQC2.Label { - Kirigami.FormData.label: i18nc("@title:group", "Header Options") + Kirigami.FormData.label: i18n("Header Options") font.bold: true Layout.fillWidth: true } @@ -97,7 +97,7 @@ KCM.SimpleKCM { QQC2.CheckBox { id: hideHeader - text: i18nc("@option:check", "Hide header") + text: i18n("Hide header") checked: plasmoid.configuration.hideHeader onCheckedChanged: plasmoid.configuration.hideHeader = checked Layout.fillWidth: true @@ -105,7 +105,7 @@ KCM.SimpleKCM { QQC2.CheckBox { id: autoHideHeader - text: i18nc("@option:check", "Auto-hide header (show on mouse hover)") + text: i18n("Auto-hide header (show on mouse hover)") checked: plasmoid.configuration.autoHideHeader onCheckedChanged: plasmoid.configuration.autoHideHeader = checked enabled: !hideHeader.checked @@ -116,7 +116,7 @@ KCM.SimpleKCM { QQC2.CheckBox { id: hideKeepOpen - text: i18nc("@option:check", 'Hide "Keep Open" button') + text: i18n("Hide Keep Open button") checked: plasmoid.configuration.hideKeepOpen onCheckedChanged: plasmoid.configuration.hideKeepOpen = checked Layout.fillWidth: true @@ -125,7 +125,7 @@ KCM.SimpleKCM { QQC2.CheckBox { id: hideCustomURL - text: i18nc("@option:check", 'Hide "Custom URL" button') + text: i18n("Hide Custom URL button") checked: plasmoid.configuration.hideCustomURL onCheckedChanged: plasmoid.configuration.hideCustomURL = checked Layout.fillWidth: true @@ -134,7 +134,7 @@ KCM.SimpleKCM { QQC2.CheckBox { id: hidePrintButton - text: i18nc("@option:check", 'Hide "Auto-Hide" button') + text: i18n("Hide Auto-Hide button") checked: plasmoid.configuration.hidePrintButton onCheckedChanged: plasmoid.configuration.hidePrintButton = checked Layout.fillWidth: true @@ -143,7 +143,7 @@ KCM.SimpleKCM { QQC2.CheckBox { id: hideCloseButton - text: i18nc("@option:check", 'Hide "Close" button') + text: i18n("Hide Close button") checked: plasmoid.configuration.hideCloseButton onCheckedChanged: plasmoid.configuration.hideCloseButton = checked Layout.fillWidth: true @@ -152,7 +152,7 @@ KCM.SimpleKCM { QQC2.CheckBox { id: hideHomeButton - text: i18nc("@option:check", 'Hide "Home" button') + text: i18n("Hide Home button") checked: plasmoid.configuration.hideHomeButton onCheckedChanged: plasmoid.configuration.hideHomeButton = checked Layout.fillWidth: true @@ -161,7 +161,7 @@ KCM.SimpleKCM { QQC2.CheckBox { id: hideDownloadButton - text: i18nc("@option:check", 'Hide "Download" button') + text: i18n("Hide Download button") checked: plasmoid.configuration.hideDownloadButton onCheckedChanged: plasmoid.configuration.hideDownloadButton = checked Layout.fillWidth: true @@ -170,7 +170,7 @@ KCM.SimpleKCM { QQC2.CheckBox { id: hideNavigationButtons - text: i18nc("@option:check", 'Hide navigation buttons') + text: i18n("Hide navigation buttons") checked: plasmoid.configuration.hideNavigationButtons onCheckedChanged: plasmoid.configuration.hideNavigationButtons = checked Layout.fillWidth: true @@ -179,7 +179,7 @@ KCM.SimpleKCM { QQC2.CheckBox { id: hideRefreshButton - text: i18nc("@option:check", 'Hide refresh button') + text: i18n("Hide refresh button") checked: plasmoid.configuration.hideRefreshButton onCheckedChanged: plasmoid.configuration.hideRefreshButton = checked Layout.fillWidth: true @@ -188,7 +188,7 @@ KCM.SimpleKCM { // Information message about hidden functionality Kirigami.InlineMessage { Layout.fillWidth: true - text: i18nc("@info:tooltip", 'You can still use the "Go back to ..." and "Keep open" actions by right-clicking the widget icon.') + text: i18n("You can still use the Go back to... and Keep open actions by right-clicking the widget icon.") visible: hideHeader.checked || hideGoToButton.checked || hideKeepOpen.checked } diff --git a/contents/ui/ConfigGeneral.qml b/contents/ui/ConfigGeneral.qml index 4264505..c6d35ce 100644 --- a/contents/ui/ConfigGeneral.qml +++ b/contents/ui/ConfigGeneral.qml @@ -108,7 +108,7 @@ KCM.SimpleKCM { // Predefined Sites Section // List of built-in chat services that can be enabled/disabled QQC2.Label { - text: i18nc("@title:group", "Predefined Sites") + text: i18n("Predefined Sites") font.bold: true Layout.fillWidth: true } @@ -175,7 +175,7 @@ KCM.SimpleKCM { Kirigami.InlineMessage { Layout.fillWidth: true type: Kirigami.MessageType.Information - text: i18nc("@info:tooltip", "Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.") + text: i18n("Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.") visible: modelData.id === "showClaude" && plasmoid.configuration.showClaude } } @@ -188,7 +188,7 @@ KCM.SimpleKCM { // Allows users to add their own chat services QQC2.Label { - text: i18nc("@title:group", "Custom Sites") + text: i18n("Custom Sites") font.bold: true Layout.fillWidth: true } @@ -206,7 +206,7 @@ KCM.SimpleKCM { QQC2.TextField { id: customSiteNameField - placeholderText: i18nc("@info:placeholder", "Site Name") + placeholderText: i18n("Site Name") Layout.fillWidth: false onAccepted: configRoot.addCustomSite() } @@ -214,7 +214,7 @@ KCM.SimpleKCM { QQC2.TextField { id: customSiteUrlField - placeholderText: i18nc("@info:placeholder", "Site URL") + placeholderText: i18n("Site URL") Layout.fillWidth: true onAccepted: configRoot.addCustomSite() } @@ -281,7 +281,7 @@ KCM.SimpleKCM { Kirigami.PlaceholderMessage { width: parent.width visible: customSitesModel.count === 0 - text: i18nc("@info:placeholder", "No custom sites added yet") + text: i18n("No custom sites added yet") } } @@ -295,7 +295,7 @@ KCM.SimpleKCM { // Permissions Section QQC2.Label { - text: i18nc("@title:group", "Permissions") + text: i18n("Permissions") font.bold: true Layout.fillWidth: true } @@ -304,7 +304,7 @@ KCM.SimpleKCM { QQC2.CheckBox { id: loadOnStartup - text: i18nc("@option:check", "Load website on Plasma startup") + text: i18n("Load website on Plasma startup") checked: plasmoid.configuration.loadOnStartup onCheckedChanged: plasmoid.configuration.loadOnStartup = checked Layout.fillWidth: true @@ -313,7 +313,7 @@ KCM.SimpleKCM { // Media permissions options QQC2.CheckBox { id: notificationsEnabled - text: i18nc("@option:check", "Allow notifications") + text: i18n("Allow notifications") checked: plasmoid.configuration.notificationsEnabled onCheckedChanged: plasmoid.configuration.notificationsEnabled = checked Layout.fillWidth: true @@ -322,8 +322,8 @@ KCM.SimpleKCM { Kirigami.InlineMessage { Layout.fillWidth: true type: Kirigami.MessageType.Information - text: i18nc("@info:tooltip", "If notifications are not working create the file:") + ` -.local/share/knotifications6/chatai_plasmoid.notifyrc ` + i18nc("@info:tooltip", "with the following content:") + ` + text: i18n("If notifications are not working create the file:") + ` +~/.local/share/knotifications6/chatai_plasmoid.notifyrc ` + i18n("containing the following text:") + ` [Global] IconName=applications-internet @@ -337,7 +337,7 @@ Action=Popup` QQC2.CheckBox { id: geolocationEnabled - text: i18nc("@option:check", "Allow geolocation access") + text: i18n("Allow geolocation access") checked: plasmoid.configuration.geolocationEnabled onCheckedChanged: plasmoid.configuration.geolocationEnabled = checked Layout.fillWidth: true @@ -346,7 +346,7 @@ Action=Popup` QQC2.CheckBox { id: microphoneEnabled - text: i18nc("@option:check", "Allow using microphone") + text: i18n("Allow using microphone") checked: plasmoid.configuration.microphoneEnabled onCheckedChanged: plasmoid.configuration.microphoneEnabled = checked Layout.fillWidth: true @@ -355,7 +355,7 @@ Action=Popup` QQC2.CheckBox { id: webcamEnabled - text: i18nc("@option:check", "Allow using webcam") + text: i18n("Allow using webcam") checked: plasmoid.configuration.webcamEnabled onCheckedChanged: plasmoid.configuration.webcamEnabled = checked Layout.fillWidth: true @@ -364,7 +364,7 @@ Action=Popup` QQC2.CheckBox { id: screenShareEnabled - text: i18nc("@option:check", "Allow screen sharing") + text: i18n("Allow screen sharing") checked: plasmoid.configuration.screenShareEnabled onCheckedChanged: plasmoid.configuration.screenShareEnabled = checked Layout.fillWidth: true @@ -377,14 +377,14 @@ Action=Popup` // Web Features Section QQC2.Label { - text: i18nc("@title:group", "Web Features") + text: i18n("Web Features") font.bold: true Layout.fillWidth: true } QQC2.CheckBox { id: spatialNavigationEnabled - text: i18nc("@option:check", "Enable spatial navigation") + text: i18n("Enable spatial navigation") checked: plasmoid.configuration.spatialNavigationEnabled onCheckedChanged: plasmoid.configuration.spatialNavigationEnabled = checked Layout.fillWidth: true @@ -393,13 +393,13 @@ Action=Popup` Kirigami.InlineMessage { Layout.fillWidth: true type: Kirigami.MessageType.Information - text: i18nc("@info:tooltip", "Allows navigation between focusable elements using arrow keys") + text: i18n("Allows navigation between focusable elements using arrow keys") visible: spatialNavigationEnabled.checked } QQC2.CheckBox { id: javascriptCanPaste - text: i18nc("@option:check", "Allow JavaScript to paste from clipboard") + text: i18n("Allow JavaScript to paste from clipboard") checked: plasmoid.configuration.javascriptCanPaste onCheckedChanged: plasmoid.configuration.javascriptCanPaste = checked Layout.fillWidth: true @@ -407,7 +407,7 @@ Action=Popup` QQC2.CheckBox { id: javascriptCanOpenWindows - text: i18nc("@option:check", "Allow JavaScript to open new windows") + text: i18n("Allow JavaScript to open new windows") checked: plasmoid.configuration.javascriptCanOpenWindows onCheckedChanged: plasmoid.configuration.javascriptCanOpenWindows = checked Layout.fillWidth: true @@ -415,7 +415,7 @@ Action=Popup` QQC2.CheckBox { id: javascriptCanAccessClipboard - text: i18nc("@option:check", "Allow JavaScript to access clipboard") + text: i18n("Allow JavaScript to access clipboard") checked: plasmoid.configuration.javascriptCanAccessClipboard onCheckedChanged: plasmoid.configuration.javascriptCanAccessClipboard = checked Layout.fillWidth: true @@ -423,7 +423,7 @@ Action=Popup` QQC2.CheckBox { id: allowUnknownUrlSchemes - text: i18nc("@option:check", "Allow unknown URL schemes") + text: i18n("Allow unknown URL schemes") checked: plasmoid.configuration.allowUnknownUrlSchemes onCheckedChanged: plasmoid.configuration.allowUnknownUrlSchemes = checked Layout.fillWidth: true @@ -431,7 +431,7 @@ Action=Popup` QQC2.CheckBox { id: playbackRequiresUserGesture - text: i18nc("@option:check", "Require user gesture for media playback") + text: i18n("Require user gesture for media playback") checked: plasmoid.configuration.playbackRequiresUserGesture onCheckedChanged: plasmoid.configuration.playbackRequiresUserGesture = checked Layout.fillWidth: true @@ -439,7 +439,7 @@ Action=Popup` QQC2.CheckBox { id: focusOnNavigationEnabled - text: i18nc("@option:check", "Enable focus on navigation") + text: i18n("Enable focus on navigation") checked: plasmoid.configuration.focusOnNavigationEnabled onCheckedChanged: plasmoid.configuration.focusOnNavigationEnabled = checked Layout.fillWidth: true @@ -447,7 +447,7 @@ Action=Popup` // Notifications Section QQC2.Label { - text: i18nc("@title:group", "Notification Settings") + text: i18n("Notification Settings") font.bold: true Layout.fillWidth: true } @@ -455,7 +455,7 @@ Action=Popup` // Downloads Section // Configuration for download location and behavior QQC2.Label { - text: i18nc("@title:group", "Download Folder") + text: i18n("Download Folder") font.bold: true Layout.fillWidth: true } @@ -502,7 +502,7 @@ Action=Popup` // Cache Management Section QQC2.Label { - text: i18nc("@title:group", "Cache Management") + text: i18n("Cache Management") font.bold: true Layout.fillWidth: true } diff --git a/contents/ui/Header.qml b/contents/ui/Header.qml index 0508125..42e92bd 100644 --- a/contents/ui/Header.qml +++ b/contents/ui/Header.qml @@ -231,7 +231,7 @@ RowLayout { .split(',') .filter(site => site?.includes('|')) .map(site => site.split('|')[0])) - .concat(["Custom URL..."]); + .concat([i18n("Custom URL...")]); // Update ComboBox model and select current item urlComboBox.model = chatModel; diff --git a/contents/ui/WebView.qml b/contents/ui/WebView.qml index 9d12a6d..0605eec 100644 --- a/contents/ui/WebView.qml +++ b/contents/ui/WebView.qml @@ -121,48 +121,48 @@ Item { visualParent: webview PlasmaExtras.MenuItem { - text: i18nc("@action:inmenu", "Back") + text: i18n("Back") icon: "go-previous" enabled: webview.canGoBack onClicked: webview.goBack() } PlasmaExtras.MenuItem { - text: i18nc("@action:inmenu", "Forward") + text: i18n("Forward") icon: "go-next" enabled: webview.canGoForward onClicked: webview.goForward() } PlasmaExtras.MenuItem { - text: i18nc("@action:inmenu", "Reload") + text: i18n("Reload") icon: "view-refresh" onClicked: reloadPage() } PlasmaExtras.MenuItem { - text: i18nc("@action:inmenu", "Save as PDF") + text: i18n("Save as PDF") icon: "document-save-as" visible: !linkContextMenu.link onClicked: printPage() } PlasmaExtras.MenuItem { - text: i18nc("@action:inmenu", "Save as MHTML") + text: i18n("Save as MHTML") icon: "document-save" visible: !linkContextMenu.link onClicked: saveMHTML() } PlasmaExtras.MenuItem { - text: i18nc("@action:inmenu", "Open Link in Browser") + text: i18n("Open Link in Browser") icon: "internet-web-browser" visible: linkContextMenu.link !== "" onClicked: Qt.openUrlExternally(linkContextMenu.link) } PlasmaExtras.MenuItem { - text: i18nc("@action:inmenu", "Copy Link Address") + text: i18n("Copy Link Address") icon: "edit-copy" visible: linkContextMenu.link !== "" onClicked: webview.triggerWebAction(WebEngineView.CopyLinkToClipboard) diff --git a/locale/bg.json b/locale/bg.json deleted file mode 100644 index acb53c9..0000000 --- a/locale/bg.json +++ /dev/null @@ -1 +0,0 @@ -{"bg":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Отвори"]},"ChatAI":{"*":["ЧатAI"]},"Back":{"*":["Назад"]},"Forward":{"*":["Напред"]},"Reload":{"*":["Презареди"]},"Save as PDF":{"*":["Запази като PDF"]},"Save as MHTML":{"*":["Запази като MHTML"]},"Open Link in Browser":{"*":["Отворете връзката в браузъра"]},"Copy Link Address":{"*":["Копирай адрес на връзката"]},"Download in progress":{"*":["Изтеглянето е в ход"]},"The file ":{"*":["Файлът"]},"Open file":{"*":["Отвори файл"]},"Open folder":{"*":["Отвори папка"]},"Close":{"*":["Затвори"]},"Cancel":{"*":["Отмени"]},"Go back to previous page":{"*":["Върнете се на предишната страница"]},"Go forward to next page":{"*":["Отидете напред на следващата страница"]},"Return to homepage/default chat":{"*":["Върнете се на началната страница/по подразбиране чат"]},"Reload current page":{"*":["Презареди текущата страница"]},"Select or enter chat website URL":{"*":["Изберете или въведете URL адрес на чат уебсайт"]},"Header will hide automatically when not in use":{"*":["Заглавието ще се скрие автоматично, когато не се използва."]},"Header will stay visible":{"*":["Заглавието ще остане видимо"]},"Manage downloads and download folder":{"*":["Управлявайте изтеглянията и папката за изтегляния"]},"Open Download Folder":{"*":["Отвори папката за изтегляния"]},"Choose Download Folder":{"*":["Изберете папка за изтегляне"]},"Widget will stay open when clicking outside":{"*":["Уиджетът ще остане отворен при кликване извън него."]},"Widget will close when clicking outside":{"*":["Уиджетът ще се затвори при кликване извън него."]},"Close the webview and release memory":{"*":["Затворете уеб изгледа и освободете паметта"]},"Icon:":{"*":["Икона:"]},"Use website favicon":{"*":["Използвайте иконата на уебсайта"]},"Default adaptive icon":{"*":["Икона по подразбиране с адаптивен дизайн"]},"Default dark icon":{"*":["Икона по подразбиране в тъмен режим"]},"Default light icon":{"*":["Икона по подразбиране за светлина"]},"Outlined chat":{"*":["Очертана беседа"]},"Filled chat":{"*":["Запълнен чат"]},"Colorful chat":{"*":["Цветен чат"]},"Header Options":{"*":["Опции на заглавието"]},"Hide header":{"*":["Скрий заглавието"]},"Auto-hide header (show on mouse hover)":{"*":["Автоматично скриване на заглавката (показване при задържане на мишката)"]},"Hide ":{"*":["Скрий"]},"Hide navigation buttons":{"*":["Скрийте навигационните бутони"]},"Hide refresh button":{"*":["Скрий бутона за опресняване"]},"You can still use the ":{"*":["Все още можете да използвате"]},"Predefined Sites":{"*":["Предефинирани сайтове"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai позволява създаване на акаунт или вход с Google само в известни браузъри. За да го използвате в този Plasmoid, трябва да използвате данни за вход, създадени предварително в традиционен браузър."]},"Custom Sites":{"*":["Персонализирани сайтове"]},"Site Name":{"*":["Име на сайта"]},"Site URL":{"*":["URL на сайта"]},"No custom sites added yet":{"*":["Все още не са добавени персонализирани сайтове."]},"Permissions":{"*":["Разрешения"]},"Load website on Plasma startup":{"*":["Заредете уебсайт при стартиране на Plasma"]},"Allow notifications":{"*":["Разреши известията"]},"If notifications are not working create the file:":{"*":["Ако известията не работят, създайте файла:"]},"with the following content:":{"*":["със следното съдържание:"]},"Allow geolocation access":{"*":["Позволете достъп до геолокация"]},"Allow using microphone":{"*":["Позволете използването на микрофон."]},"Allow using webcam":{"*":["Позволете използването на уебкамера."]},"Allow screen sharing":{"*":["Разрешете споделяне на екран"]},"Web Features":{"*":["Уеб функции"]},"Enable spatial navigation":{"*":["Активирайте пространствена навигация"]},"Allows navigation between focusable elements using arrow keys":{"*":["Позволява навигация между фокусируеми елементи с помощта на стрелковите клавиши"]},"Allow JavaScript to paste from clipboard":{"*":["Позволете на JavaScript да поставя от клипборда."]},"Allow JavaScript to open new windows":{"*":["Позволете на JavaScript да отваря нови прозорци"]},"Allow JavaScript to access clipboard":{"*":["Позволете на JavaScript да получава достъп до клипборда."]},"Allow unknown URL schemes":{"*":["Позволете неизвестни URL схеми"]},"Require user gesture for media playback":{"*":["Изисква се потребителски жест за възпроизвеждане на медия."]},"Enable focus on navigation":{"*":["Активирайте фокус върху навигацията"]},"Notification Settings":{"*":["Настройки за известия"]},"Download Folder":{"*":["Папка за изтегляне"]},"Cache Management":{"*":["Управление на кеша"]},"Open Cache Folder":{"*":["Отворете папката с кеша"]},"Open Profile Folder":{"*":["Отвори папката с профила"]},"Cache location: %1\nProfile location: %2":{"*":["Местоположение на кеша: %1 \nМестоположение на профила: %2"]},"General":{"*":["Общо"]},"Appearance":{"*":["Външен вид"]}}}} \ No newline at end of file diff --git a/locale/cs.json b/locale/cs.json deleted file mode 100644 index 5d62e32..0000000 --- a/locale/cs.json +++ /dev/null @@ -1 +0,0 @@ -{"cs":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Otevřít"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Zpět"]},"Forward":{"*":["Dále"]},"Reload":{"*":["Načíst znovu"]},"Save as PDF":{"*":["Uložit jako PDF"]},"Save as MHTML":{"*":["Uložit jako MHTML"]},"Open Link in Browser":{"*":["Otevřít odkaz v prohlížeči"]},"Copy Link Address":{"*":["Kopírovat adresu odkazu"]},"Download in progress":{"*":["Stahování probíhá"]},"The file ":{"*":["Soubor"]},"Open file":{"*":["Otevřít soubor"]},"Open folder":{"*":["Otevřít složku"]},"Close":{"*":["Zavřít"]},"Cancel":{"*":["Zrušit"]},"Go back to previous page":{"*":["Vraťte se na předchozí stránku"]},"Go forward to next page":{"*":["Přejít na další stránku"]},"Return to homepage/default chat":{"*":["Návrat na domovskou stránku/ výchozí chat"]},"Reload current page":{"*":["Načíst aktuální stránku"]},"Select or enter chat website URL":{"*":["Vyberte nebo zadejte URL webové stránky chatu"]},"Header will hide automatically when not in use":{"*":["Hlava se automaticky skryje, když se nepoužívá."]},"Header will stay visible":{"*":["Hlava zůstane viditelná"]},"Manage downloads and download folder":{"*":["Spravovat stahování a složku pro stahování"]},"Open Download Folder":{"*":["Otevřít složku Stahování"]},"Choose Download Folder":{"*":["Vyberte složku pro stažení"]},"Widget will stay open when clicking outside":{"*":["Widget zůstane otevřený při kliknutí mimo něj."]},"Widget will close when clicking outside":{"*":["Widget se zavře při kliknutí mimo něj."]},"Close the webview and release memory":{"*":["Zavřete webový pohled a uvolněte paměť."]},"Icon:":{"*":["Ikona:"]},"Use website favicon":{"*":["Použijte favicon webové stránky"]},"Default adaptive icon":{"*":["Výchozí adaptivní ikona"]},"Default dark icon":{"*":["Výchozí tmavá ikona"]},"Default light icon":{"*":["Výchozí ikona světla"]},"Outlined chat":{"*":["Ohraničený chat"]},"Filled chat":{"*":["Vyplněný chat"]},"Colorful chat":{"*":["Barevný chat"]},"Header Options":{"*":["Možnosti hlavičky"]},"Hide header":{"*":["Skrýt hlavičku"]},"Auto-hide header (show on mouse hover)":{"*":["Automatické skrytí hlavičky (zobrazit při najetí myší)"]},"Hide ":{"*":["Skrýt"]},"Hide navigation buttons":{"*":["Skrýt navigační tlačítka"]},"Hide refresh button":{"*":["Skrýt tlačítko pro obnovení"]},"You can still use the ":{"*":["Můžete stále používat"]},"Predefined Sites":{"*":["Předdefinované stránky"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai umožňuje vytvoření účtu nebo přihlášení pomocí Google pouze v dobře známých prohlížečích. Chcete-li jej použít v tomto Plasmoidu, musíte použít přihlašovací údaje, které byly dříve vytvořeny v tradičním prohlížeči."]},"Custom Sites":{"*":["Vlastní stránky"]},"Site Name":{"*":["Název webu"]},"Site URL":{"*":["URL stránky"]},"No custom sites added yet":{"*":["Zatím nebyly přidány žádné vlastní stránky."]},"Permissions":{"*":["Oprávnění"]},"Load website on Plasma startup":{"*":["Načíst webovou stránku při spuštění Plasma"]},"Allow notifications":{"*":["Povolit oznámení"]},"If notifications are not working create the file:":{"*":["Pokud oznámení nefungují, vytvořte soubor:"]},"with the following content:":{"*":["s následujícím obsahem:"]},"Allow geolocation access":{"*":["Povolit přístup k geolokaci"]},"Allow using microphone":{"*":["Povolit použití mikrofonu"]},"Allow using webcam":{"*":["Povolit použití webkamery"]},"Allow screen sharing":{"*":["Povolit sdílení obrazovky"]},"Web Features":{"*":["Webové funkce"]},"Enable spatial navigation":{"*":["Povolit prostorovou navigaci"]},"Allows navigation between focusable elements using arrow keys":{"*":["Umožňuje navigaci mezi zaostřitelnými prvky pomocí šipek."]},"Allow JavaScript to paste from clipboard":{"*":["Povolit JavaScriptu vkládat z clipboardu"]},"Allow JavaScript to open new windows":{"*":["Povolit JavaScriptu otevírat nová okna"]},"Allow JavaScript to access clipboard":{"*":["Povolit JavaScriptu přístup k schránce"]},"Allow unknown URL schemes":{"*":["Povolit neznámé URL schémata"]},"Require user gesture for media playback":{"*":["Vyžaduje uživatelské gesto pro přehrávání médií."]},"Enable focus on navigation":{"*":["Povolit zaměření na navigaci"]},"Notification Settings":{"*":["Nastavení oznámení"]},"Download Folder":{"*":["Složka ke stažení"]},"Cache Management":{"*":["Správa mezipaměti"]},"Open Cache Folder":{"*":["Otevřít složku mezipaměti"]},"Open Profile Folder":{"*":["Otevřít složku profilu"]},"Cache location: %1\nProfile location: %2":{"*":["Umístění cache: %1 \nUmístění profilu: %2"]},"General":{"*":["Obecné"]},"Appearance":{"*":["Vzhled"]}}}} \ No newline at end of file diff --git a/locale/da.json b/locale/da.json deleted file mode 100644 index 3558bfa..0000000 --- a/locale/da.json +++ /dev/null @@ -1 +0,0 @@ -{"da":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Åbn"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Tilbage"]},"Forward":{"*":["Fremad"]},"Reload":{"*":["Genindlæs"]},"Save as PDF":{"*":["Gem som PDF"]},"Save as MHTML":{"*":["Gem som MHTML"]},"Open Link in Browser":{"*":["Åbn link i browser"]},"Copy Link Address":{"*":["Kopier linkadresse"]},"Download in progress":{"*":["Download er i gang"]},"The file ":{"*":["Filen"]},"Open file":{"*":["Åbn fil"]},"Open folder":{"*":["Åbn mappe"]},"Close":{"*":["Luk"]},"Cancel":{"*":["Annuller"]},"Go back to previous page":{"*":["Gå tilbage til forrige side"]},"Go forward to next page":{"*":["Gå frem til næste side"]},"Return to homepage/default chat":{"*":["Returner til startside/standard chat"]},"Reload current page":{"*":["Genindlæs nuværende side"]},"Select or enter chat website URL":{"*":["Vælg eller indtast chat-webstedets URL"]},"Header will hide automatically when not in use":{"*":["Header vil automatisk skjule sig, når den ikke er i brug."]},"Header will stay visible":{"*":["Overskriften vil forblive synlig"]},"Manage downloads and download folder":{"*":["Administrer downloads og download-mappe"]},"Open Download Folder":{"*":["Åbn Download-mappe"]},"Choose Download Folder":{"*":["Vælg Download-mappe"]},"Widget will stay open when clicking outside":{"*":["Widget vil forblive åben, når der klikkes udenfor."]},"Widget will close when clicking outside":{"*":["Widget vil lukke, når der klikkes udenfor."]},"Close the webview and release memory":{"*":["Luk webview'en og frigiv hukommelse"]},"Icon:":{"*":["Ikon:"]},"Use website favicon":{"*":["Brug webstedets favicon"]},"Default adaptive icon":{"*":["Standard tilpasset ikon"]},"Default dark icon":{"*":["Standard mørk ikon"]},"Default light icon":{"*":["Standard lysikon"]},"Outlined chat":{"*":["Skitseret chat"]},"Filled chat":{"*":["Udfyldt chat"]},"Colorful chat":{"*":["Farverig chat"]},"Header Options":{"*":["Headerindstillinger"]},"Hide header":{"*":["Skjul header"]},"Auto-hide header (show on mouse hover)":{"*":["Auto-skjul header (vis ved museover)"]},"Hide ":{"*":["Skjul"]},"Hide navigation buttons":{"*":["Skjul navigationsknapper"]},"Hide refresh button":{"*":["Skjul opdateringsknap"]},"You can still use the ":{"*":["Du kan stadig bruge den"]},"Predefined Sites":{"*":["Forudefinerede websteder"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai tillader kun oprettelse af konto eller Google-login i velkendte browsere. For at bruge det i denne Plasmoid skal du bruge loginoplysninger, der tidligere er oprettet i en traditionel browser."]},"Custom Sites":{"*":["Brugerdefinerede websteder"]},"Site Name":{"*":["Webstednavn"]},"Site URL":{"*":["Websted URL"]},"No custom sites added yet":{"*":["Ingen brugerdefinerede sider tilføjet endnu"]},"Permissions":{"*":["Tilladelser"]},"Load website on Plasma startup":{"*":["Indlæs hjemmeside ved Plasma-opstart"]},"Allow notifications":{"*":["Tillad meddelelser"]},"If notifications are not working create the file:":{"*":["Hvis meddelelser ikke fungerer, skal du oprette filen:"]},"with the following content:":{"*":["med følgende indhold:"]},"Allow geolocation access":{"*":["Tillad geolokaliseringsadgang"]},"Allow using microphone":{"*":["Tillad brug af mikrofon"]},"Allow using webcam":{"*":["Tillad brug af webcam"]},"Allow screen sharing":{"*":["Tillad skærmdeling"]},"Web Features":{"*":["Webfunktioner"]},"Enable spatial navigation":{"*":["Aktivér rumlig navigation"]},"Allows navigation between focusable elements using arrow keys":{"*":["Tillader navigation mellem fokuserbare elementer ved hjælp af piletasterne"]},"Allow JavaScript to paste from clipboard":{"*":["Tillad JavaScript at indsætte fra udklipsholderen"]},"Allow JavaScript to open new windows":{"*":["Tillad JavaScript at åbne nye vinduer"]},"Allow JavaScript to access clipboard":{"*":["Tillad JavaScript at få adgang til udklipsholderen."]},"Allow unknown URL schemes":{"*":["Tillad ukendte URL-skemaer"]},"Require user gesture for media playback":{"*":["Kræv brugerhandling for medieafspilning"]},"Enable focus on navigation":{"*":["Aktiver fokus på navigation"]},"Notification Settings":{"*":["Notifikationsindstillinger"]},"Download Folder":{"*":["Download-mappe"]},"Cache Management":{"*":["Cachehåndtering"]},"Open Cache Folder":{"*":["Åbn cache-mappe"]},"Open Profile Folder":{"*":["Åbn profilmappe"]},"Cache location: %1\nProfile location: %2":{"*":["Cache placering: %1 \nProfil placering: %2"]},"General":{"*":["Generelt"]},"Appearance":{"*":["Udseende"]}}}} \ No newline at end of file diff --git a/locale/de.json b/locale/de.json deleted file mode 100644 index 449a860..0000000 --- a/locale/de.json +++ /dev/null @@ -1 +0,0 @@ -{"de":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Öffnen"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Zurück"]},"Forward":{"*":["Weiter"]},"Reload":{"*":["Neu laden"]},"Save as PDF":{"*":["Als PDF speichern"]},"Save as MHTML":{"*":["Als MHTML speichern"]},"Open Link in Browser":{"*":["Link im Browser öffnen"]},"Copy Link Address":{"*":["Link-Adresse kopieren"]},"Download in progress":{"*":["Download wird durchgeführt"]},"The file ":{"*":["Die Datei"]},"Open file":{"*":["Datei öffnen"]},"Open folder":{"*":["Ordner öffnen"]},"Close":{"*":["Schließen"]},"Cancel":{"*":["Abbrechen"]},"Go back to previous page":{"*":["Gehe zurück zur vorherigen Seite"]},"Go forward to next page":{"*":["Gehe zur nächsten Seite"]},"Return to homepage/default chat":{"*":["Zurück zur Startseite/Standard-Chat"]},"Reload current page":{"*":["Aktuelle Seite neu laden"]},"Select or enter chat website URL":{"*":["Wählen Sie die URL der Chat-Website aus oder geben Sie sie ein."]},"Header will hide automatically when not in use":{"*":["Der Header wird automatisch ausgeblendet, wenn er nicht verwendet wird."]},"Header will stay visible":{"*":["Der Header bleibt sichtbar."]},"Manage downloads and download folder":{"*":["Downloads und Download-Ordner verwalten"]},"Open Download Folder":{"*":["Download-Ordner öffnen"]},"Choose Download Folder":{"*":["Wählen Sie den Download-Ordner"]},"Widget will stay open when clicking outside":{"*":["Das Widget bleibt geöffnet, wenn außerhalb geklickt wird."]},"Widget will close when clicking outside":{"*":["Das Widget wird geschlossen, wenn außerhalb geklickt wird."]},"Close the webview and release memory":{"*":["Schließen Sie die Webansicht und geben Sie den Speicher frei."]},"Icon:":{"*":["Symbol:"]},"Use website favicon":{"*":["Verwenden Sie das Website-Favicon"]},"Default adaptive icon":{"*":["Standardadaptive-Icon"]},"Default dark icon":{"*":["Standard dunkles Symbol"]},"Default light icon":{"*":["Standardlichtsymbol"]},"Outlined chat":{"*":["Umriss-Chat"]},"Filled chat":{"*":["Gefüllter Chat"]},"Colorful chat":{"*":["Bunter Chat"]},"Header Options":{"*":["Header-Optionen"]},"Hide header":{"*":["Header ausblenden"]},"Auto-hide header (show on mouse hover)":{"*":["Auto-Ausblenden der Kopfzeile (bei Mouseover anzeigen)"]},"Hide ":{"*":["Ausblenden"]},"Hide navigation buttons":{"*":["Navigationsschaltflächen ausblenden"]},"Hide refresh button":{"*":["Aktualisierungsbutton ausblenden"]},"You can still use the ":{"*":["Sie können weiterhin die verwenden"]},"Predefined Sites":{"*":["Vordefinierte Sites"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai erlaubt die Kontoerstellung oder Google-Anmeldung nur in bekannten Browsern. Um es in diesem Plasmoid zu verwenden, müssen Sie Anmeldeinformationen verwenden, die zuvor in einem traditionellen Browser erstellt wurden."]},"Custom Sites":{"*":["Benutzerdefinierte Seiten"]},"Site Name":{"*":["Seitenname"]},"Site URL":{"*":["Website-URL"]},"No custom sites added yet":{"*":["Noch keine benutzerdefinierten Seiten hinzugefügt."]},"Permissions":{"*":["Berechtigungen"]},"Load website on Plasma startup":{"*":["Website beim Plasma-Start laden"]},"Allow notifications":{"*":["Benachrichtigungen zulassen"]},"If notifications are not working create the file:":{"*":["Wenn Benachrichtigungen nicht funktionieren, erstellen Sie die Datei:"]},"with the following content:":{"*":["mit dem folgenden Inhalt:"]},"Allow geolocation access":{"*":["Geolokalisierung zugreifen erlauben"]},"Allow using microphone":{"*":["Mikrofon verwenden erlauben"]},"Allow using webcam":{"*":["Webcam verwenden erlauben"]},"Allow screen sharing":{"*":["Bildschirmfreigabe erlauben"]},"Web Features":{"*":["Webfunktionen"]},"Enable spatial navigation":{"*":["Aktivieren Sie die räumliche Navigation"]},"Allows navigation between focusable elements using arrow keys":{"*":["Ermöglicht die Navigation zwischen fokussierbaren Elementen mit den Pfeiltasten."]},"Allow JavaScript to paste from clipboard":{"*":["Erlaube JavaScript, aus der Zwischenablage einzufügen."]},"Allow JavaScript to open new windows":{"*":["Erlaube JavaScript, neue Fenster zu öffnen."]},"Allow JavaScript to access clipboard":{"*":["Erlaube JavaScript den Zugriff auf die Zwischenablage."]},"Allow unknown URL schemes":{"*":["Unbekannte URL-Schemata zulassen"]},"Require user gesture for media playback":{"*":["Benutzerinteraktion für die Medienwiedergabe erforderlich"]},"Enable focus on navigation":{"*":["Fokus auf Navigation aktivieren"]},"Notification Settings":{"*":["Benachrichtigungseinstellungen"]},"Download Folder":{"*":["Download-Ordner"]},"Cache Management":{"*":["Cache-Verwaltung"]},"Open Cache Folder":{"*":["Cache-Ordner öffnen"]},"Open Profile Folder":{"*":["Profilordner öffnen"]},"Cache location: %1\nProfile location: %2":{"*":["Cache-Speicherort: %1 \nProfil-Speicherort: %2"]},"General":{"*":["Allgemein"]},"Appearance":{"*":["Erscheinungsbild"]}}}} \ No newline at end of file diff --git a/locale/el.json b/locale/el.json deleted file mode 100644 index a33fc08..0000000 --- a/locale/el.json +++ /dev/null @@ -1 +0,0 @@ -{"el":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Άνοιγμα"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Πίσω"]},"Forward":{"*":["Προώθηση"]},"Reload":{"*":["Ανανέωση"]},"Save as PDF":{"*":["Αποθήκευση ως PDF"]},"Save as MHTML":{"*":["Αποθήκευση ως MHTML"]},"Open Link in Browser":{"*":["Άνοιγμα Συνδέσμου στον Περιηγητή"]},"Copy Link Address":{"*":["Αντιγραφή Διεύθυνσης Συνδέσμου"]},"Download in progress":{"*":["Η λήψη είναι σε εξέλιξη"]},"The file ":{"*":["Το αρχείο"]},"Open file":{"*":["Άνοιγμα αρχείου"]},"Open folder":{"*":["Άνοιγμα φακέλου"]},"Close":{"*":["Κλείσιμο"]},"Cancel":{"*":["Ακύρωση"]},"Go back to previous page":{"*":["Πήγαινε πίσω στην προηγούμενη σελίδα"]},"Go forward to next page":{"*":["Προχώρα στην επόμενη σελίδα"]},"Return to homepage/default chat":{"*":["Επιστροφή στην αρχική σελίδα/προεπιλεγμένη συνομιλία"]},"Reload current page":{"*":["Επαναφόρτωση τρέχουσας σελίδας"]},"Select or enter chat website URL":{"*":["Επιλέξτε ή εισάγετε τη διεύθυνση URL της ιστοσελίδας συνομιλίας."]},"Header will hide automatically when not in use":{"*":["Η κεφαλίδα θα κρύβεται αυτόματα όταν δεν χρησιμοποιείται."]},"Header will stay visible":{"*":["Η κεφαλίδα θα παραμείνει ορατή."]},"Manage downloads and download folder":{"*":["Διαχείριση λήψεων και φακέλου λήψεων"]},"Open Download Folder":{"*":["Άνοιγμα Φακέλου Λήψης"]},"Choose Download Folder":{"*":["Επιλέξτε Φάκελο Λήψης"]},"Widget will stay open when clicking outside":{"*":["Το widget θα παραμείνει ανοιχτό όταν κάνετε κλικ έξω."]},"Widget will close when clicking outside":{"*":["Το widget θα κλείσει όταν κάνετε κλικ έξω από αυτό."]},"Close the webview and release memory":{"*":["Κλείστε την προβολή ιστού και απελευθερώστε τη μνήμη"]},"Icon:":{"*":["Εικονίδιο:"]},"Use website favicon":{"*":["Χρησιμοποιήστε το favicon της ιστοσελίδας"]},"Default adaptive icon":{"*":["Προεπιλεγμένο προσαρμοσμένο εικονίδιο"]},"Default dark icon":{"*":["Προεπιλεγμένο σκοτεινό εικονίδιο"]},"Default light icon":{"*":["Εικονίδιο προεπιλεγμένου φωτός"]},"Outlined chat":{"*":["Σχεδιασμένη συνομιλία"]},"Filled chat":{"*":["Γεμάτη συνομιλία"]},"Colorful chat":{"*":["Χρωματιστή συνομιλία"]},"Header Options":{"*":["Επιλογές Κεφαλίδας"]},"Hide header":{"*":["Απόκρυψη κεφαλίδας"]},"Auto-hide header (show on mouse hover)":{"*":["Αυτόματη απόκρυψη κεφαλίδας (εμφάνιση με την κίνηση του ποντικιού)"]},"Hide ":{"*":["Κρύψε"]},"Hide navigation buttons":{"*":["Απόκρυψη κουμπιών πλοήγησης"]},"Hide refresh button":{"*":["Απόκρυψη κουμπιού ανανέωσης"]},"You can still use the ":{"*":["Μπορείτε ακόμα να χρησιμοποιήσετε το"]},"Predefined Sites":{"*":["Προκαθορισμένες Ιστοσελίδες"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Το Claude.ai επιτρέπει τη δημιουργία λογαριασμού ή σύνδεση μέσω Google μόνο σε γνωστούς περιηγητές. Για να το χρησιμοποιήσετε σε αυτό το Plasmoid, πρέπει να χρησιμοποιήσετε τα διαπιστευτήρια σύνδεσης που έχουν δημιουργηθεί προηγουμένως σε έναν παραδοσιακό περιηγητή."]},"Custom Sites":{"*":["Προσαρμοσμένες Ιστοσελίδες"]},"Site Name":{"*":["Όνομα Ιστοσελίδας"]},"Site URL":{"*":["Διεύθυνση URL ιστότοπου"]},"No custom sites added yet":{"*":["Δεν έχουν προστεθεί προσαρμοσμένες τοποθεσίες ακόμα."]},"Permissions":{"*":["Άδειες"]},"Load website on Plasma startup":{"*":["Φόρτωση ιστοσελίδας κατά την εκκίνηση του Plasma"]},"Allow notifications":{"*":["Επιτρέψτε ειδοποιήσεις"]},"If notifications are not working create the file:":{"*":["Εάν οι ειδοποιήσεις δεν λειτουργούν, δημιουργήστε το αρχείο:"]},"with the following content:":{"*":["Δεν υπάρχει περιεχόμενο προς μετάφραση."]},"Allow geolocation access":{"*":["Επιτρέψτε την πρόσβαση γεωεντοπισμού"]},"Allow using microphone":{"*":["Επιτρέψτε τη χρήση μικροφώνου"]},"Allow using webcam":{"*":["Επιτρέψτε τη χρήση της κάμερας."]},"Allow screen sharing":{"*":["Επιτρέψτε την κοινή χρήση οθόνης"]},"Web Features":{"*":["Δυνατότητες Ιστού"]},"Enable spatial navigation":{"*":["Ενεργοποιήστε την χωρική πλοήγηση"]},"Allows navigation between focusable elements using arrow keys":{"*":["Επιτρέπει την πλοήγηση μεταξύ στοιχείων που μπορούν να εστιάσουν χρησιμοποιώντας τα πλήκτρα βέλους."]},"Allow JavaScript to paste from clipboard":{"*":["Επιτρέψτε στο JavaScript να επικολλήσει από το πρόχειρο."]},"Allow JavaScript to open new windows":{"*":["Επιτρέψτε στο JavaScript να ανοίγει νέα παράθυρα"]},"Allow JavaScript to access clipboard":{"*":["Επιτρέψτε στο JavaScript να έχει πρόσβαση στο πρόχειρο."]},"Allow unknown URL schemes":{"*":["Επιτρέψτε άγνωστα σχήματα URL"]},"Require user gesture for media playback":{"*":["Απαιτείται χειρονομία χρήστη για την αναπαραγωγή πολυμέσων."]},"Enable focus on navigation":{"*":["Ενεργοποίηση εστίασης στη ναυσιπλοΐα"]},"Notification Settings":{"*":["Ρυθμίσεις Ειδοποιήσεων"]},"Download Folder":{"*":["Φάκελος Λήψης"]},"Cache Management":{"*":["Διαχείριση Cache"]},"Open Cache Folder":{"*":["Άνοιγμα φακέλου προσωρινής μνήμης"]},"Open Profile Folder":{"*":["Άνοιγμα φακέλου προφίλ"]},"Cache location: %1\nProfile location: %2":{"*":["Τοποθεσία cache: %1 \nΤοποθεσία προφίλ: %2"]},"General":{"*":["Γενικά"]},"Appearance":{"*":["Εμφάνιση"]}}}} \ No newline at end of file diff --git a/locale/en.json b/locale/en.json deleted file mode 100644 index 675aeea..0000000 --- a/locale/en.json +++ /dev/null @@ -1 +0,0 @@ -{"en":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Open"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Back"]},"Forward":{"*":["Forward"]},"Reload":{"*":["Reload"]},"Save as PDF":{"*":["Save as PDF"]},"Save as MHTML":{"*":["Save as MHTML"]},"Open Link in Browser":{"*":["Open Link in Browser"]},"Copy Link Address":{"*":["Copy Link Address"]},"Download in progress":{"*":["Download in progress"]},"The file ":{"*":["The file "]},"Open file":{"*":["Open file"]},"Open folder":{"*":["Open folder"]},"Close":{"*":["Close"]},"Cancel":{"*":["Cancel"]},"Go back to previous page":{"*":["Go back to previous page"]},"Go forward to next page":{"*":["Go forward to next page"]},"Return to homepage/default chat":{"*":["Return to homepage/default chat"]},"Reload current page":{"*":["Reload current page"]},"Select or enter chat website URL":{"*":["Select or enter chat website URL"]},"Header will hide automatically when not in use":{"*":["Header will hide automatically when not in use"]},"Header will stay visible":{"*":["Header will stay visible"]},"Manage downloads and download folder":{"*":["Manage downloads and download folder"]},"Open Download Folder":{"*":["Open Download Folder"]},"Choose Download Folder":{"*":["Choose Download Folder"]},"Widget will stay open when clicking outside":{"*":["Widget will stay open when clicking outside"]},"Widget will close when clicking outside":{"*":["Widget will close when clicking outside"]},"Close the webview and release memory":{"*":["Close the webview and release memory"]},"Icon:":{"*":["Icon:"]},"Use website favicon":{"*":["Use website favicon"]},"Default adaptive icon":{"*":["Default adaptive icon"]},"Default dark icon":{"*":["Default dark icon"]},"Default light icon":{"*":["Default light icon"]},"Outlined chat":{"*":["Outlined chat"]},"Filled chat":{"*":["Filled chat"]},"Colorful chat":{"*":["Colorful chat"]},"Header Options":{"*":["Header Options"]},"Hide header":{"*":["Hide header"]},"Auto-hide header (show on mouse hover)":{"*":["Auto-hide header (show on mouse hover)"]},"Hide ":{"*":["Hide "]},"Hide navigation buttons":{"*":["Hide navigation buttons"]},"Hide refresh button":{"*":["Hide refresh button"]},"You can still use the ":{"*":["You can still use the "]},"Predefined Sites":{"*":["Predefined Sites"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser."]},"Custom Sites":{"*":["Custom Sites"]},"Site Name":{"*":["Site Name"]},"Site URL":{"*":["Site URL"]},"No custom sites added yet":{"*":["No custom sites added yet"]},"Permissions":{"*":["Permissions"]},"Load website on Plasma startup":{"*":["Load website on Plasma startup"]},"Allow notifications":{"*":["Allow notifications"]},"If notifications are not working create the file:":{"*":["If notifications are not working create the file:"]},"with the following content:":{"*":["with the following content:"]},"Allow geolocation access":{"*":["Allow geolocation access"]},"Allow using microphone":{"*":["Allow using microphone"]},"Allow using webcam":{"*":["Allow using webcam"]},"Allow screen sharing":{"*":["Allow screen sharing"]},"Web Features":{"*":["Web Features"]},"Enable spatial navigation":{"*":["Enable spatial navigation"]},"Allows navigation between focusable elements using arrow keys":{"*":["Allows navigation between focusable elements using arrow keys"]},"Allow JavaScript to paste from clipboard":{"*":["Allow JavaScript to paste from clipboard"]},"Allow JavaScript to open new windows":{"*":["Allow JavaScript to open new windows"]},"Allow JavaScript to access clipboard":{"*":["Allow JavaScript to access clipboard"]},"Allow unknown URL schemes":{"*":["Allow unknown URL schemes"]},"Require user gesture for media playback":{"*":["Require user gesture for media playback"]},"Enable focus on navigation":{"*":["Enable focus on navigation"]},"Notification Settings":{"*":["Notification Settings"]},"Download Folder":{"*":["Download Folder"]},"Cache Management":{"*":["Cache Management"]},"Open Cache Folder":{"*":["Open Cache Folder"]},"Open Profile Folder":{"*":["Open Profile Folder"]},"Cache location: %1\nProfile location: %2":{"*":["Cache location: %1\nProfile location: %2"]},"General":{"*":["General"]},"Appearance":{"*":["Appearance"]}}}} \ No newline at end of file diff --git a/locale/es.json b/locale/es.json deleted file mode 100644 index f042447..0000000 --- a/locale/es.json +++ /dev/null @@ -1 +0,0 @@ -{"es":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Abrir"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Atrás"]},"Forward":{"*":["Adelante"]},"Reload":{"*":["Recargar"]},"Save as PDF":{"*":["Guardar como PDF"]},"Save as MHTML":{"*":["Guardar como MHTML"]},"Open Link in Browser":{"*":["Abrir enlace en el navegador"]},"Copy Link Address":{"*":["Copiar dirección del enlace"]},"Download in progress":{"*":["Descargando en progreso"]},"The file ":{"*":["El archivo"]},"Open file":{"*":["Abrir archivo"]},"Open folder":{"*":["Abrir carpeta"]},"Close":{"*":["Cerrar"]},"Cancel":{"*":["Cancelar"]},"Go back to previous page":{"*":["Volver a la página anterior"]},"Go forward to next page":{"*":["Ir a la siguiente página"]},"Return to homepage/default chat":{"*":["Volver a la página de inicio/chat predeterminado"]},"Reload current page":{"*":["Recargar la página actual"]},"Select or enter chat website URL":{"*":["Selecciona o ingresa la URL del sitio web de chat."]},"Header will hide automatically when not in use":{"*":["El encabezado se ocultará automáticamente cuando no esté en uso."]},"Header will stay visible":{"*":["El encabezado permanecerá visible."]},"Manage downloads and download folder":{"*":["Gestionar descargas y carpeta de descargas"]},"Open Download Folder":{"*":["Abrir carpeta de descargas"]},"Choose Download Folder":{"*":["Elegir carpeta de descargas"]},"Widget will stay open when clicking outside":{"*":["El widget permanecerá abierto al hacer clic fuera."]},"Widget will close when clicking outside":{"*":["El widget se cerrará al hacer clic fuera de él."]},"Close the webview and release memory":{"*":["Cierra la vista web y libera memoria."]},"Icon:":{"*":["Ícono:"]},"Use website favicon":{"*":["Usar favicon del sitio web"]},"Default adaptive icon":{"*":["Icono adaptativo predeterminado"]},"Default dark icon":{"*":["Icono oscuro predeterminado"]},"Default light icon":{"*":["Icono de luz predeterminado"]},"Outlined chat":{"*":["Chat delineado"]},"Filled chat":{"*":["Chat lleno"]},"Colorful chat":{"*":["Chat colorido"]},"Header Options":{"*":["Opciones de encabezado"]},"Hide header":{"*":["Ocultar encabezado"]},"Auto-hide header (show on mouse hover)":{"*":["Ocultar automáticamente el encabezado (mostrar al pasar el ratón)"]},"Hide ":{"*":["Ocultar"]},"Hide navigation buttons":{"*":["Ocultar botones de navegación"]},"Hide refresh button":{"*":["Ocultar botón de refresco"]},"You can still use the ":{"*":["Aún puedes usar el"]},"Predefined Sites":{"*":["Sitios predefinidos"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai solo permite la creación de cuentas o el inicio de sesión con Google en navegadores bien conocidos. Para usarlo en este Plasmoid, necesitas utilizar las credenciales de inicio de sesión creadas previamente en un navegador tradicional."]},"Custom Sites":{"*":["Sitios Personalizados"]},"Site Name":{"*":["Nombre del sitio"]},"Site URL":{"*":["URL del sitio"]},"No custom sites added yet":{"*":["No se han añadido sitios personalizados aún."]},"Permissions":{"*":["Permisos"]},"Load website on Plasma startup":{"*":["Cargar sitio web al iniciar Plasma"]},"Allow notifications":{"*":["Permitir notificaciones"]},"If notifications are not working create the file:":{"*":["Si las notificaciones no funcionan, crea el archivo:"]},"with the following content:":{"*":["con el siguiente contenido:"]},"Allow geolocation access":{"*":["Permitir acceso a la geolocalización"]},"Allow using microphone":{"*":["Permitir el uso del micrófono"]},"Allow using webcam":{"*":["Permitir el uso de la cámara web"]},"Allow screen sharing":{"*":["Permitir compartir pantalla"]},"Web Features":{"*":["Características de la web"]},"Enable spatial navigation":{"*":["Habilitar navegación espacial"]},"Allows navigation between focusable elements using arrow keys":{"*":["Permite la navegación entre elementos enfocados utilizando las teclas de flecha."]},"Allow JavaScript to paste from clipboard":{"*":["Permitir que JavaScript pegue del portapapeles"]},"Allow JavaScript to open new windows":{"*":["Permitir que JavaScript abra nuevas ventanas"]},"Allow JavaScript to access clipboard":{"*":["Permitir que JavaScript acceda al portapapeles"]},"Allow unknown URL schemes":{"*":["Permitir esquemas de URL desconocidos"]},"Require user gesture for media playback":{"*":["Requiere un gesto del usuario para la reproducción de medios."]},"Enable focus on navigation":{"*":["Habilitar enfoque en la navegación"]},"Notification Settings":{"*":["Configuración de notificaciones"]},"Download Folder":{"*":["Carpeta de Descargas"]},"Cache Management":{"*":["Gestión de caché"]},"Open Cache Folder":{"*":["Abrir carpeta de caché"]},"Open Profile Folder":{"*":["Abrir carpeta de perfil"]},"Cache location: %1\nProfile location: %2":{"*":["Ubicación de caché: %1 \nUbicación de perfil: %2"]},"General":{"*":["General"]},"Appearance":{"*":["Apariencia"]}}}} \ No newline at end of file diff --git a/locale/et.json b/locale/et.json deleted file mode 100644 index c67b65e..0000000 --- a/locale/et.json +++ /dev/null @@ -1 +0,0 @@ -{"et":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Ava"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Tagasi"]},"Forward":{"*":["Edasi"]},"Reload":{"*":["Laadi uuesti"]},"Save as PDF":{"*":["Salvesta PDF-na"]},"Save as MHTML":{"*":["Salvesta MHTML-na."]},"Open Link in Browser":{"*":["Ava link brauseris"]},"Copy Link Address":{"*":["Kopeeri lingiaadress"]},"Download in progress":{"*":["Laadimine käib"]},"The file ":{"*":["Fail"]},"Open file":{"*":["Ava faili"]},"Open folder":{"*":["Ava kaustik"]},"Close":{"*":["Sulge"]},"Cancel":{"*":["Tühista"]},"Go back to previous page":{"*":["Mine tagasi eelnevale lehele"]},"Go forward to next page":{"*":["Mine edasi järgmisele lehele"]},"Return to homepage/default chat":{"*":["Tagasi avalehele/vaikimisi vestlusesse"]},"Reload current page":{"*":["Laadi praegune leht uuesti"]},"Select or enter chat website URL":{"*":["Vali või sisesta vestlusveebi URL"]},"Header will hide automatically when not in use":{"*":["Pealkiri peidab end automaatselt, kui seda ei kasutata."]},"Header will stay visible":{"*":["Pealkiri jääb nähtavaks"]},"Manage downloads and download folder":{"*":["Haldage allalaadimisi ja allalaadimise kausta."]},"Open Download Folder":{"*":["Ava allala kaust"]},"Choose Download Folder":{"*":["Vali allalaadimise kaust"]},"Widget will stay open when clicking outside":{"*":["Vidin jääb avatuks, kui klõpsate väljaspool."]},"Widget will close when clicking outside":{"*":["Vidin suletakse, kui klõpsate väljaspool."]},"Close the webview and release memory":{"*":["Sulge veebivaade ja vabasta mälu"]},"Icon:":{"*":["Ikon:"]},"Use website favicon":{"*":["Kasutage veebisaidi favicon'i"]},"Default adaptive icon":{"*":["Vaikimisi kohandatav ikoon"]},"Default dark icon":{"*":["Vaikimisi tume ikoon"]},"Default light icon":{"*":["Vaikimisi kerge ikoon"]},"Outlined chat":{"*":["Joonitud vestlus"]},"Filled chat":{"*":["Täidetud vestlus"]},"Colorful chat":{"*":["Värviline vestlus"]},"Header Options":{"*":["Pealkirja valikud"]},"Hide header":{"*":["Peida pealkiri"]},"Auto-hide header (show on mouse hover)":{"*":["Automaatne peitmine päisest (kuvatakse hiire üle viimisega)"]},"Hide ":{"*":["Peida"]},"Hide navigation buttons":{"*":["Peida navigeerimisnupud"]},"Hide refresh button":{"*":["Peida värskendamise nupp"]},"You can still use the ":{"*":["Saate endiselt kasutada"]},"Predefined Sites":{"*":["Eeldefineeritud saidid"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai lubab ainult konto loomist või Google'i sisselogimist tuntud brauserites. Selle kasutamiseks selles Plasmoidis peate kasutama varem traditsioonilises brauseris loodud sisselogimisandmeid."]},"Custom Sites":{"*":["Kohandatud saidid"]},"Site Name":{"*":["Saidinimi"]},"Site URL":{"*":["Saidilink"]},"No custom sites added yet":{"*":["Kohandatud saite pole veel lisatud."]},"Permissions":{"*":["Luba õigused"]},"Load website on Plasma startup":{"*":["Laadi veebisait Plasma käivitamisel"]},"Allow notifications":{"*":["Luba teavitusi"]},"If notifications are not working create the file:":{"*":["Kui teavitused ei tööta, looge fail:"]},"with the following content:":{"*":["Te olete koolitatud andmetega kuni oktoober 2023."]},"Allow geolocation access":{"*":["Luba geolokatsiooni juurdepääs."]},"Allow using microphone":{"*":["Luba mikrofoni kasutamine"]},"Allow using webcam":{"*":["Luba veebikaamera kasutamine"]},"Allow screen sharing":{"*":["Luba ekraani jagamist"]},"Web Features":{"*":["Veebifunktsioonid"]},"Enable spatial navigation":{"*":["Luba ruumilise navigeerimise."]},"Allows navigation between focusable elements using arrow keys":{"*":["Lubab navigeerimist fookustatavate elementide vahel nooleklahvide abil."]},"Allow JavaScript to paste from clipboard":{"*":["Luba JavaScript'il lõikepuhvrist kleepimist."]},"Allow JavaScript to open new windows":{"*":["Luba JavaScript'il uute akende avamine."]},"Allow JavaScript to access clipboard":{"*":["Luba JavaScript'il lõikepuhvri juurde pääseda."]},"Allow unknown URL schemes":{"*":["Luba tundmatute URL-i skeemide kasutamine"]},"Require user gesture for media playback":{"*":["Nõuab kasutaja žesti meedia taasesitamiseks"]},"Enable focus on navigation":{"*":["Luba navigeerimisele keskendumine"]},"Notification Settings":{"*":["Teavituste seaded"]},"Download Folder":{"*":["Allalaadimise kaust"]},"Cache Management":{"*":["Vahemälu haldus"]},"Open Cache Folder":{"*":["Ava kaustikatalooge"]},"Open Profile Folder":{"*":["Ava profiili kaust"]},"Cache location: %1\nProfile location: %2":{"*":["Vahemälu asukoht: %1 \nProfiili asukoht: %2"]},"General":{"*":["Üldine"]},"Appearance":{"*":["Välimus"]}}}} \ No newline at end of file diff --git a/locale/et.po b/locale/et.po index 89efcf6..326a5cb 100644 --- a/locale/et.po +++ b/locale/et.po @@ -233,10 +233,6 @@ msgstr "Luba teavitusi" msgid "If notifications are not working create the file:" msgstr "Kui teavitused ei tööta, looge fail:" -#: NEEDS WORK -msgid "with the following content:" -msgstr "Te olete koolitatud andmetega kuni oktoober 2023." - #: NEEDS WORK msgid "Allow geolocation access" msgstr "Luba geolokatsiooni juurdepääs." diff --git a/locale/fi.json b/locale/fi.json deleted file mode 100644 index 950125d..0000000 --- a/locale/fi.json +++ /dev/null @@ -1 +0,0 @@ -{"fi":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Avaa"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Takaisin"]},"Forward":{"*":["Eteenpäin"]},"Reload":{"*":["Lataa uudelleen"]},"Save as PDF":{"*":["Tallenna PDF-muodossa"]},"Save as MHTML":{"*":["Tallenna MHTML-muodossa"]},"Open Link in Browser":{"*":["Avaa linkki selaimessa"]},"Copy Link Address":{"*":["Kopioi linkin osoite"]},"Download in progress":{"*":["Lataus käynnissä"]},"The file ":{"*":["Tiedosto"]},"Open file":{"*":["Avaa tiedosto"]},"Open folder":{"*":["Avaa kansio"]},"Close":{"*":["Sulje"]},"Cancel":{"*":["Peruuta"]},"Go back to previous page":{"*":["Palaa edelliselle sivulle"]},"Go forward to next page":{"*":["Siirry seuraavalle sivulle"]},"Return to homepage/default chat":{"*":["Palaa etusivulle/oletuschatille"]},"Reload current page":{"*":["Lataa nykyinen sivu"]},"Select or enter chat website URL":{"*":["Valitse tai syötä keskustelusivuston URL-osoite"]},"Header will hide automatically when not in use":{"*":["Otsikko piiloutuu automaattisesti, kun sitä ei käytetä."]},"Header will stay visible":{"*":["Otsikko pysyy näkyvissä"]},"Manage downloads and download folder":{"*":["Hallitse latauksia ja latauskansiota"]},"Open Download Folder":{"*":["Avaa Latauskansio"]},"Choose Download Folder":{"*":["Valitse Latauskansio"]},"Widget will stay open when clicking outside":{"*":["Widget pysyy auki, kun klikkaat ulkopuolelle."]},"Widget will close when clicking outside":{"*":["Widget sulkeutuu, kun napsautat ulkopuolella."]},"Close the webview and release memory":{"*":["Sulje verkkonäkymä ja vapauta muisti"]},"Icon:":{"*":["Ikoni:"]},"Use website favicon":{"*":["Käytä verkkosivuston faviconia"]},"Default adaptive icon":{"*":["Oletusarvoinen mukautuva kuvake"]},"Default dark icon":{"*":["Oletusarvoinen tumma kuvake"]},"Default light icon":{"*":["Oletusvalon kuvake"]},"Outlined chat":{"*":["Rajaustettu keskustelu"]},"Filled chat":{"*":["Täytetty keskustelu"]},"Colorful chat":{"*":["Värikäs keskustelu"]},"Header Options":{"*":["Otsikkovaihtoehdot"]},"Hide header":{"*":["Piilota otsikko"]},"Auto-hide header (show on mouse hover)":{"*":["Automaattinen piilotusotsikko (näytä hiiren osoittimella)"]},"Hide ":{"*":["Piilota"]},"Hide navigation buttons":{"*":["Piilota navigointipainikkeet"]},"Hide refresh button":{"*":["Piilota päivitä-painike"]},"You can still use the ":{"*":["Voit silti käyttää"]},"Predefined Sites":{"*":["Esiasetetut sivustot"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai sallii tilin luomisen tai Google-kirjautumisen vain tunnetuissa selaimissa. Käyttääksesi sitä tässä Plasmoidissa, sinun on käytettävä aiemmin perinteisessä selaimessa luotuja kirjautumistietoja."]},"Custom Sites":{"*":["Mukautetut sivustot"]},"Site Name":{"*":["Sivuston nimi"]},"Site URL":{"*":["Sivuston URL"]},"No custom sites added yet":{"*":["Ei mukautettuja sivustoja ole vielä lisätty."]},"Permissions":{"*":["Oikeudet"]},"Load website on Plasma startup":{"*":["Lataa verkkosivusto Plasma-käynnistyksessä"]},"Allow notifications":{"*":["Salli ilmoitukset"]},"If notifications are not working create the file:":{"*":["Jos ilmoitukset eivät toimi, luo tiedosto:"]},"with the following content:":{"*":["You are trained on data up to October 2023."]},"Allow geolocation access":{"*":["Salli geolokaatio-oikeudet"]},"Allow using microphone":{"*":["Salli mikrofonin käyttö."]},"Allow using webcam":{"*":["Salli käyttämään verkkokameraa"]},"Allow screen sharing":{"*":["Salli näytön jakaminen"]},"Web Features":{"*":["Verkkotoiminnot"]},"Enable spatial navigation":{"*":["Ota käyttöön avaruusnavigointi"]},"Allows navigation between focusable elements using arrow keys":{"*":["Sallii navigoinnin keskitettävien elementtien välillä nuolinäppäimillä."]},"Allow JavaScript to paste from clipboard":{"*":["Salli JavaScriptin liittää leikepöydältä."]},"Allow JavaScript to open new windows":{"*":["Salli JavaScriptin avata uusia ikkunoita"]},"Allow JavaScript to access clipboard":{"*":["Salli JavaScriptin käyttää leikepöytää."]},"Allow unknown URL schemes":{"*":["Salli tuntemattomat URL-skeemat"]},"Require user gesture for media playback":{"*":["Vaaditaan käyttäjän ele media toistoon"]},"Enable focus on navigation":{"*":["Ota navigoinnissa fokus käyttöön"]},"Notification Settings":{"*":["Ilmoitusasetukset"]},"Download Folder":{"*":["Latauskansio"]},"Cache Management":{"*":["Välimuistin hallinta"]},"Open Cache Folder":{"*":["Avaa välimuistikansio"]},"Open Profile Folder":{"*":["Avaa profiilikansio"]},"Cache location: %1\nProfile location: %2":{"*":["Välimuistin sijainti: %1 \nProfiilin sijainti: %2"]},"General":{"*":["Yleinen"]},"Appearance":{"*":["Ulkoasu"]}}}} \ No newline at end of file diff --git a/locale/fi.po b/locale/fi.po index 002f9a9..e9bbb61 100644 --- a/locale/fi.po +++ b/locale/fi.po @@ -233,10 +233,6 @@ msgstr "Salli ilmoitukset" msgid "If notifications are not working create the file:" msgstr "Jos ilmoitukset eivät toimi, luo tiedosto:" -#: NEEDS WORK -msgid "with the following content:" -msgstr "You are trained on data up to October 2023." - #: NEEDS WORK msgid "Allow geolocation access" msgstr "Salli geolokaatio-oikeudet" diff --git a/locale/fr.json b/locale/fr.json deleted file mode 100644 index 99a91a5..0000000 --- a/locale/fr.json +++ /dev/null @@ -1 +0,0 @@ -{"fr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Ouvrir"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Retour"]},"Forward":{"*":["Transférer"]},"Reload":{"*":["Recharger"]},"Save as PDF":{"*":["Enregistrer sous PDF"]},"Save as MHTML":{"*":["Enregistrer sous MHTML"]},"Open Link in Browser":{"*":["Ouvrir le lien dans le navigateur"]},"Copy Link Address":{"*":["Copier l'adresse du lien"]},"Download in progress":{"*":["Téléchargement en cours"]},"The file ":{"*":["Le fichier"]},"Open file":{"*":["Ouvrir le fichier"]},"Open folder":{"*":["Ouvrir le dossier"]},"Close":{"*":["Fermer"]},"Cancel":{"*":["Annuler"]},"Go back to previous page":{"*":["Retourner à la page précédente"]},"Go forward to next page":{"*":["Aller à la page suivante"]},"Return to homepage/default chat":{"*":["Retour à la page d'accueil/chat par défaut"]},"Reload current page":{"*":["Recharger la page actuelle"]},"Select or enter chat website URL":{"*":["Sélectionnez ou saisissez l'URL du site Web de chat."]},"Header will hide automatically when not in use":{"*":["L'en-tête se masquera automatiquement lorsqu'il n'est pas utilisé."]},"Header will stay visible":{"*":["L'en-tête restera visible"]},"Manage downloads and download folder":{"*":["Gérer les téléchargements et le dossier de téléchargements"]},"Open Download Folder":{"*":["Ouvrir le dossier de téléchargement"]},"Choose Download Folder":{"*":["Choisir le dossier de téléchargement"]},"Widget will stay open when clicking outside":{"*":["Le widget restera ouvert lorsque vous cliquerez à l'extérieur."]},"Widget will close when clicking outside":{"*":["Le widget se fermera en cliquant à l'extérieur."]},"Close the webview and release memory":{"*":["Fermez la vue web et libérez la mémoire."]},"Icon:":{"*":["Icône :"]},"Use website favicon":{"*":["Utiliser le favicon du site web"]},"Default adaptive icon":{"*":["Icône adaptative par défaut"]},"Default dark icon":{"*":["Icône sombre par défaut"]},"Default light icon":{"*":["Icône de lumière par défaut"]},"Outlined chat":{"*":["Chat en surbrillance"]},"Filled chat":{"*":["Chat rempli"]},"Colorful chat":{"*":["Chat coloré"]},"Header Options":{"*":["Options d'en-tête"]},"Hide header":{"*":["Masquer le header"]},"Auto-hide header (show on mouse hover)":{"*":["Masque automatique de l'en-tête (afficher au survol de la souris)"]},"Hide ":{"*":["Cacher"]},"Hide navigation buttons":{"*":["Masquer les boutons de navigation"]},"Hide refresh button":{"*":["Masquer le bouton de rafraîchissement"]},"You can still use the ":{"*":["Vous pouvez toujours utiliser le"]},"Predefined Sites":{"*":["Sites prédéfinis"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai n'autorise la création de compte ou la connexion Google que dans des navigateurs bien connus. Pour l'utiliser dans ce Plasmoid, vous devez utiliser des identifiants de connexion créés au préalable dans un navigateur traditionnel."]},"Custom Sites":{"*":["Sites personnalisés"]},"Site Name":{"*":["Nom du site"]},"Site URL":{"*":["URL du site"]},"No custom sites added yet":{"*":["Aucun site personnalisé ajouté pour le moment."]},"Permissions":{"*":["Autorisations"]},"Load website on Plasma startup":{"*":["Charger le site Web au démarrage de Plasma"]},"Allow notifications":{"*":["Autoriser les notifications"]},"If notifications are not working create the file:":{"*":["Si les notifications ne fonctionnent pas, créez le fichier :"]},"with the following content:":{"*":["Vous êtes formé sur des données jusqu'en octobre 2023."]},"Allow geolocation access":{"*":["Autoriser l'accès à la géolocalisation"]},"Allow using microphone":{"*":["Autoriser l'utilisation du microphone"]},"Allow using webcam":{"*":["Autoriser l'utilisation de la webcam"]},"Allow screen sharing":{"*":["Autoriser le partage d'écran"]},"Web Features":{"*":["Fonctionnalités Web"]},"Enable spatial navigation":{"*":["Activer la navigation spatiale"]},"Allows navigation between focusable elements using arrow keys":{"*":["Permet la navigation entre les éléments focusables à l'aide des touches fléchées."]},"Allow JavaScript to paste from clipboard":{"*":["Autoriser JavaScript à coller depuis le presse-papiers"]},"Allow JavaScript to open new windows":{"*":["Autoriser JavaScript à ouvrir de nouvelles fenêtres"]},"Allow JavaScript to access clipboard":{"*":["Autoriser JavaScript à accéder au presse-papiers"]},"Allow unknown URL schemes":{"*":["Autoriser les schémas d'URL inconnus"]},"Require user gesture for media playback":{"*":["Exiger un geste de l'utilisateur pour la lecture multimédia"]},"Enable focus on navigation":{"*":["Activer le focus sur la navigation"]},"Notification Settings":{"*":["Paramètres de notification"]},"Download Folder":{"*":["Dossier de téléchargement"]},"Cache Management":{"*":["Gestion du cache"]},"Open Cache Folder":{"*":["Ouvrir le dossier de cache"]},"Open Profile Folder":{"*":["Ouvrir le dossier de profil"]},"Cache location: %1\nProfile location: %2":{"*":["Emplacement du cache : %1 \nEmplacement du profil : %2"]},"General":{"*":["Général"]},"Appearance":{"*":["Apparence"]}}}} \ No newline at end of file diff --git a/locale/he.json b/locale/he.json deleted file mode 100644 index 2d2fde9..0000000 --- a/locale/he.json +++ /dev/null @@ -1 +0,0 @@ -{"he":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["פתח"]},"ChatAI":{"*":["צ'אטאיי"]},"Back":{"*":["חזור"]},"Forward":{"*":["קדימה"]},"Reload":{"*":["טען מחדש"]},"Save as PDF":{"*":["שמור כ-PDF"]},"Save as MHTML":{"*":["שמור כ-MHTML"]},"Open Link in Browser":{"*":["פתח קישור בדפדפן"]},"Copy Link Address":{"*":["העתק כתובת קישור"]},"Download in progress":{"*":["ההורדה בתהליך"]},"The file ":{"*":["הקובץ"]},"Open file":{"*":["פתח קובץ"]},"Open folder":{"*":["פתח תיקייה"]},"Close":{"*":["סגור"]},"Cancel":{"*":["ביטול"]},"Go back to previous page":{"*":["חזור לדף הקודם"]},"Go forward to next page":{"*":["עבור לדף הבא"]},"Return to homepage/default chat":{"*":["חזור לדף הבית/צ'אט ברירת מחדל"]},"Reload current page":{"*":["טען מחדש את הדף הנוכחי"]},"Select or enter chat website URL":{"*":["בחר או הזן את כתובת האתר של הצ'אט"]},"Header will hide automatically when not in use":{"*":["הכותרת תסתיר את עצמה אוטומטית כאשר אינה בשימוש"]},"Header will stay visible":{"*":["הכותרת תישאר גלויה"]},"Manage downloads and download folder":{"*":["נהל הורדות ותיקיית הורדות"]},"Open Download Folder":{"*":["פתח את תיקיית ההורדות"]},"Choose Download Folder":{"*":["בחר תיקיית הורדות"]},"Widget will stay open when clicking outside":{"*":["הווידג'ט יישאר פתוח כאשר לוחצים מחוץ לו."]},"Widget will close when clicking outside":{"*":["הווידג'ט ייסגר כאשר תלחץ מחוץ לו."]},"Close the webview and release memory":{"*":["סגור את תצוגת האינטרנט ושחרר זיכרון"]},"Icon:":{"*":["אייקון:"]},"Use website favicon":{"*":["השתמש באייקון האתר"]},"Default adaptive icon":{"*":["אייקון אדפטיבי ברירת מחדל"]},"Default dark icon":{"*":["אייקון כהה ברירת מחדל"]},"Default light icon":{"*":["אייקון אור ברירת מחדל"]},"Outlined chat":{"*":["שיחה עם קווים מתארים"]},"Filled chat":{"*":["צ'אט מלא"]},"Colorful chat":{"*":["שיחה צבעונית"]},"Header Options":{"*":["אפשרויות כותרת"]},"Hide header":{"*":["הסתר כותרת"]},"Auto-hide header (show on mouse hover)":{"*":["הסתרת כותרת אוטומטית (הצג בעת ריחוף עם העכבר)"]},"Hide ":{"*":["הסתר"]},"Hide navigation buttons":{"*":["הסתר כפתורי ניווט"]},"Hide refresh button":{"*":["הסתר כפתור רענון"]},"You can still use the ":{"*":["אתה עדיין יכול להשתמש ב"]},"Predefined Sites":{"*":["אתרים מוגדרים מראש"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai מאפשרת יצירת חשבון או כניסה באמצעות Google רק בדפדפנים מוכרים. כדי להשתמש בזה ב-Plasmoid הזה, עליך להשתמש בפרטי הכניסה שנוצרו קודם לכן בדפדפן מסורתי."]},"Custom Sites":{"*":["אתרים מותאמים אישית"]},"Site Name":{"*":["שם האתר"]},"Site URL":{"*":["כתובת אתר"]},"No custom sites added yet":{"*":["עדיין לא נוספו אתרים מותאמים אישית"]},"Permissions":{"*":["הרשאות"]},"Load website on Plasma startup":{"*":["טען אתר בעת הפעלת פלאזמה"]},"Allow notifications":{"*":["אפשר התראות"]},"If notifications are not working create the file:":{"*":["אם ההתראות אינן פועלות, צור את הקובץ:"]},"with the following content:":{"*":["עם התוכן הבא:"]},"Allow geolocation access":{"*":["אפשר גישה למיקום גיאוגרפי"]},"Allow using microphone":{"*":["אפשר להשתמש במיקרופון"]},"Allow using webcam":{"*":["אפשר להשתמש במצלמת רשת"]},"Allow screen sharing":{"*":["אפשר שיתוף מסך"]},"Web Features":{"*":["תכונות רשת"]},"Enable spatial navigation":{"*":["אפשר ניווט מרחבי"]},"Allows navigation between focusable elements using arrow keys":{"*":["מאפשר ניווט בין אלמנטים שניתן למקד בהם באמצעות מקשי החצים"]},"Allow JavaScript to paste from clipboard":{"*":["אפשר ל-JavaScript להדביק מהלוח."]},"Allow JavaScript to open new windows":{"*":["אפשר ל-JavaScript לפתוח חלונות חדשים"]},"Allow JavaScript to access clipboard":{"*":["אפשר ל-JavaScript לגשת ללוח."]},"Allow unknown URL schemes":{"*":["אפשר פרוטוקולי URL לא ידועים"]},"Require user gesture for media playback":{"*":["דרוש מחווה של משתמש להפעלת מדיה"]},"Enable focus on navigation":{"*":["אפשר מיקוד על ניווט"]},"Notification Settings":{"*":["הגדרות התראות"]},"Download Folder":{"*":["תיקיית הורדות"]},"Cache Management":{"*":["ניהול מטמון"]},"Open Cache Folder":{"*":["פתח תיקיית מטמון"]},"Open Profile Folder":{"*":["פתח תיקיית פרופיל"]},"Cache location: %1\nProfile location: %2":{"*":["מיקום מטמון: %1 \nמיקום פרופיל: %2"]},"General":{"*":["כללי"]},"Appearance":{"*":["מראה"]}}}} \ No newline at end of file diff --git a/locale/hr.json b/locale/hr.json deleted file mode 100644 index f625a6d..0000000 --- a/locale/hr.json +++ /dev/null @@ -1 +0,0 @@ -{"hr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Otvoreno"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Natrag"]},"Forward":{"*":["Naprijed"]},"Reload":{"*":["Ponovno učitaj"]},"Save as PDF":{"*":["Spremi kao PDF"]},"Save as MHTML":{"*":["Spremi kao MHTML"]},"Open Link in Browser":{"*":["Otvorite poveznicu u pregledniku"]},"Copy Link Address":{"*":["Kopiraj adresu veze"]},"Download in progress":{"*":["Preuzimanje u tijeku"]},"The file ":{"*":["Datoteka"]},"Open file":{"*":["Otvorite datoteku"]},"Open folder":{"*":["Otvorite mapu"]},"Close":{"*":["Zatvori"]},"Cancel":{"*":["Otkaži"]},"Go back to previous page":{"*":["Vratite se na prethodnu stranicu"]},"Go forward to next page":{"*":["Idite naprijed na sljedeću stranicu"]},"Return to homepage/default chat":{"*":["Vrati se na početnu stranicu/izvorni chat"]},"Reload current page":{"*":["Ponovno učitaj trenutnu stranicu"]},"Select or enter chat website URL":{"*":["Odaberite ili unesite URL web stranice za chat"]},"Header will hide automatically when not in use":{"*":["Zaglavlje će se automatski sakriti kada se ne koristi."]},"Header will stay visible":{"*":["Zaglavlje će ostati vidljivo"]},"Manage downloads and download folder":{"*":["Upravljajte preuzimanjima i mapom za preuzimanja"]},"Open Download Folder":{"*":["Otvorite mapu za preuzimanje"]},"Choose Download Folder":{"*":["Odaberite mapu za preuzimanje"]},"Widget will stay open when clicking outside":{"*":["Widget će ostati otvoren kada kliknete izvan njega."]},"Widget will close when clicking outside":{"*":["Widget će se zatvoriti kada kliknete izvan njega."]},"Close the webview and release memory":{"*":["Zatvorite webview i oslobodite memoriju"]},"Icon:":{"*":["Ikona:"]},"Use website favicon":{"*":["Koristite favicon web stranice"]},"Default adaptive icon":{"*":["Zadana prilagodljiva ikona"]},"Default dark icon":{"*":["Zadana tamna ikona"]},"Default light icon":{"*":["Zadana ikona svjetla"]},"Outlined chat":{"*":["Obrisani razgovor"]},"Filled chat":{"*":["Ispunjeni chat"]},"Colorful chat":{"*":["Šareni chat"]},"Header Options":{"*":["Opcije zaglavlja"]},"Hide header":{"*":["Sakrij zaglavlje"]},"Auto-hide header (show on mouse hover)":{"*":["Automatsko sakrivanje zaglavlja (prikaži pri prelasku miša)"]},"Hide ":{"*":["Sakrij"]},"Hide navigation buttons":{"*":["Sakrij gumbe za navigaciju"]},"Hide refresh button":{"*":["Sakrij gumb za osvježavanje"]},"You can still use the ":{"*":["Još uvijek možete koristiti"]},"Predefined Sites":{"*":["Predefinirani web-mjesta"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai dopušta kreiranje računa ili prijavu putem Googlea samo u poznatim preglednicima. Da biste ga koristili u ovom Plasmoidu, trebate koristiti vjerodajnice za prijavu koje su prethodno kreirane u tradicionalnom pregledniku."]},"Custom Sites":{"*":["Prilagođene stranice"]},"Site Name":{"*":["Naziv stranice"]},"Site URL":{"*":["URL stranice"]},"No custom sites added yet":{"*":["Još nisu dodani prilagođeni web-lokacije."]},"Permissions":{"*":["Dozvole"]},"Load website on Plasma startup":{"*":["Učitaj web stranicu pri pokretanju Plasme"]},"Allow notifications":{"*":["Dopusti obavijesti"]},"If notifications are not working create the file:":{"*":["Ako obavijesti ne rade, kreirajte datoteku:"]},"with the following content:":{"*":["s sljedećim sadržajem:"]},"Allow geolocation access":{"*":["Dopusti pristup geolokaciji"]},"Allow using microphone":{"*":["Dopusti korištenje mikrofona"]},"Allow using webcam":{"*":["Dopusti korištenje web kamere"]},"Allow screen sharing":{"*":["Dopusti dijeljenje ekrana"]},"Web Features":{"*":["Web značajke"]},"Enable spatial navigation":{"*":["Omogući prostornu navigaciju"]},"Allows navigation between focusable elements using arrow keys":{"*":["Omogućuje navigaciju između fokusabilnih elemenata pomoću strelica."]},"Allow JavaScript to paste from clipboard":{"*":["Dopusti JavaScriptu da zalijepi iz međuspremnika"]},"Allow JavaScript to open new windows":{"*":["Dopustite JavaScriptu da otvara nove prozore"]},"Allow JavaScript to access clipboard":{"*":["Dopustite JavaScriptu pristup međuspremniku"]},"Allow unknown URL schemes":{"*":["Dopusti nepoznate URL sheme"]},"Require user gesture for media playback":{"*":["Zatražite korisnički gest za reprodukciju medija"]},"Enable focus on navigation":{"*":["Omogući fokus na navigaciji"]},"Notification Settings":{"*":["Postavke obavijesti"]},"Download Folder":{"*":["Mapa za preuzimanje"]},"Cache Management":{"*":["Upravljanje predmemorijom"]},"Open Cache Folder":{"*":["Otvorite mapu predmemorije"]},"Open Profile Folder":{"*":["Otvorite mapu profila"]},"Cache location: %1\nProfile location: %2":{"*":["Lokacija predmemorije: %1 \nLokacija profila: %2"]},"General":{"*":["Općenito"]},"Appearance":{"*":["Izgled"]}}}} \ No newline at end of file diff --git a/locale/hu.json b/locale/hu.json deleted file mode 100644 index 8639b4d..0000000 --- a/locale/hu.json +++ /dev/null @@ -1 +0,0 @@ -{"hu":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Megnyitás"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Vissza"]},"Forward":{"*":["Tovább"]},"Reload":{"*":["Újratöltés"]},"Save as PDF":{"*":["Mentés PDF-ként"]},"Save as MHTML":{"*":["Mentés MHTML-ként"]},"Open Link in Browser":{"*":["Link megnyitása a böngészőben"]},"Copy Link Address":{"*":["Link cím másolása"]},"Download in progress":{"*":["Letöltés folyamatban"]},"The file ":{"*":["A fájl"]},"Open file":{"*":["Fájl megnyitása"]},"Open folder":{"*":["Mappa megnyitása"]},"Close":{"*":["Bezárás"]},"Cancel":{"*":["Mégse"]},"Go back to previous page":{"*":["Térj vissza az előző oldalra"]},"Go forward to next page":{"*":["Tovább a következő oldalra"]},"Return to homepage/default chat":{"*":["Térj vissza a kezdőlapra/ alapértelmezett csevegéshez"]},"Reload current page":{"*":["Az aktuális oldal újratöltése"]},"Select or enter chat website URL":{"*":["Válassza ki vagy adja meg a csevegő webhely URL-jét"]},"Header will hide automatically when not in use":{"*":["A fejléc automatikusan elrejti magát, amikor nincs használatban."]},"Header will stay visible":{"*":["A fejléc látható marad."]},"Manage downloads and download folder":{"*":["Letöltések és letöltési mappa kezelése"]},"Open Download Folder":{"*":["Letöltési mappa megnyitása"]},"Choose Download Folder":{"*":["Válassza a Letöltési mappát"]},"Widget will stay open when clicking outside":{"*":["A widget nyitva marad, ha a külső területre kattint."]},"Widget will close when clicking outside":{"*":["A widget bezárul, ha a külső területre kattint."]},"Close the webview and release memory":{"*":["Zárja be a webnézetet és szabadítson fel memóriát."]},"Icon:":{"*":["Ikon:"]},"Use website favicon":{"*":["Használja a weboldal faviconját"]},"Default adaptive icon":{"*":["Alapértelmezett adaptív ikon"]},"Default dark icon":{"*":["Alapértelmezett sötét ikon"]},"Default light icon":{"*":["Alapértelmezett világos ikon"]},"Outlined chat":{"*":["Kiemelt csevegés"]},"Filled chat":{"*":["Töltött csevegés"]},"Colorful chat":{"*":["Színes csevegés"]},"Header Options":{"*":["Fejléc lehetőségek"]},"Hide header":{"*":["Fejléc elrejtése"]},"Auto-hide header (show on mouse hover)":{"*":["Automatikus elrejtés fejléc (megmutatás egérmutatóra)"]},"Hide ":{"*":["Elrejtés"]},"Hide navigation buttons":{"*":["Navigációs gombok elrejtése"]},"Hide refresh button":{"*":["Frissítés gomb elrejtése"]},"You can still use the ":{"*":["Még mindig használhatod a"]},"Predefined Sites":{"*":["Előre definiált webhelyek"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["A Claude.ai csak a fiók létrehozását vagy a Google bejelentkezést engedélyezi jól ismert böngészőkben. Ennek a Plasmoidnak a használatához a korábban egy hagyományos böngészőben létrehozott bejelentkezési adatokat kell használnia."]},"Custom Sites":{"*":["Egyedi webhelyek"]},"Site Name":{"*":["Webhely neve"]},"Site URL":{"*":["Webhely URL"]},"No custom sites added yet":{"*":["Még nincs hozzáadva egyedi webhely."]},"Permissions":{"*":["Engedélyek"]},"Load website on Plasma startup":{"*":["Weboldal betöltése a Plasma indításakor"]},"Allow notifications":{"*":["Engedélyezze az értesítéseket"]},"If notifications are not working create the file:":{"*":["Ha az értesítések nem működnek, hozd létre a fájlt:"]},"with the following content:":{"*":["a következő tartalommal:"]},"Allow geolocation access":{"*":["Engedélyezze a geolokációs hozzáférést"]},"Allow using microphone":{"*":["Mikrofon használatának engedélyezése"]},"Allow using webcam":{"*":["Webkamera használatának engedélyezése"]},"Allow screen sharing":{"*":["Képernyőmegosztás engedélyezése"]},"Web Features":{"*":["Webfunkciók"]},"Enable spatial navigation":{"*":["Engedélyezze a térbeli navigációt"]},"Allows navigation between focusable elements using arrow keys":{"*":["Lehetővé teszi a fókuszálható elemek közötti navigálást a nyílbillentyűk segítségével."]},"Allow JavaScript to paste from clipboard":{"*":["Engedélyezze a JavaScript számára a vágólapról való beillesztést."]},"Allow JavaScript to open new windows":{"*":["Engedélyezze a JavaScript számára új ablakok megnyitását."]},"Allow JavaScript to access clipboard":{"*":["Engedélyezze a JavaScript számára a vágólap elérését."]},"Allow unknown URL schemes":{"*":["Ismeretlen URL séma engedélyezése"]},"Require user gesture for media playback":{"*":["A média lejátszásához felhasználói gesztus szükséges."]},"Enable focus on navigation":{"*":["Engedélyezze a fókuszt a navigáción."]},"Notification Settings":{"*":["Értesítési beállítások"]},"Download Folder":{"*":["Letöltési mappa"]},"Cache Management":{"*":["Gyorsítótár-kezelés"]},"Open Cache Folder":{"*":["Cache mappa megnyitása"]},"Open Profile Folder":{"*":["Profilmappa megnyitása"]},"Cache location: %1\nProfile location: %2":{"*":["Cache hely: %1\nProfil hely: %2"]},"General":{"*":["Általános"]},"Appearance":{"*":["Megjelenés"]}}}} \ No newline at end of file diff --git a/locale/is.json b/locale/is.json deleted file mode 100644 index 6fdb931..0000000 --- a/locale/is.json +++ /dev/null @@ -1 +0,0 @@ -{"is":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Opna"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Til baka"]},"Forward":{"*":["Framleiða"]},"Reload":{"*":["Endurhlaða"]},"Save as PDF":{"*":["Vista sem PDF"]},"Save as MHTML":{"*":["Vista sem MHTML"]},"Open Link in Browser":{"*":["Opna tengil í vafra"]},"Copy Link Address":{"*":["Kópa tenglaheimild"]},"Download in progress":{"*":["Niðurhal í gangi"]},"The file ":{"*":["Skjalið"]},"Open file":{"*":["Opna skrá"]},"Open folder":{"*":["Opna möppu"]},"Close":{"*":["Lokaðu"]},"Cancel":{"*":["Hætta við"]},"Go back to previous page":{"*":["Fara aftur á fyrri síðu"]},"Go forward to next page":{"*":["Farðu áfram á næstu síðu"]},"Return to homepage/default chat":{"*":["Aftur á heimasíðu/staðlaða spjallið"]},"Reload current page":{"*":["Endurhlaða núverandi síðu"]},"Select or enter chat website URL":{"*":["Veldu eða sláðu inn vefslóð spjallvefsins"]},"Header will hide automatically when not in use":{"*":["Header munar sjálfkrafa þegar það er ekki í notkun."]},"Header will stay visible":{"*":["Header munur verður sýnilegt"]},"Manage downloads and download folder":{"*":["Stjórna niðurhölum og niðurhalsmappa"]},"Open Download Folder":{"*":["Opna niðurhalsmappa"]},"Choose Download Folder":{"*":["veldu niðurhalsmappa"]},"Widget will stay open when clicking outside":{"*":["Virkni mun vera opin þegar smellt er utan við."]},"Widget will close when clicking outside":{"*":["Virkni mun loka þegar smellt er utan."]},"Close the webview and release memory":{"*":["Loka vefsjá og losa minni"]},"Icon:":{"*":["Tákn:"]},"Use website favicon":{"*":["Notaðu vefsvæðisfána"]},"Default adaptive icon":{"*":["sjálfgefið aðlagað tákn"]},"Default dark icon":{"*":["Sjálfgefið dökkt tákn"]},"Default light icon":{"*":["Sjálfgefið ljós tákn"]},"Outlined chat":{"*":["Skilgreind spjall"]},"Filled chat":{"*":["Fyllt spjall"]},"Colorful chat":{"*":["Litandi spjall"]},"Header Options":{"*":["Valkostir fyrirsagnir"]},"Hide header":{"*":["Fela fyrirsagnir"]},"Auto-hide header (show on mouse hover)":{"*":["Sjálfvirk falið fyrirsagnir (sýna við músarvönd)"]},"Hide ":{"*":["Felaðu"]},"Hide navigation buttons":{"*":["Fela navigasjónarhnappana."]},"Hide refresh button":{"*":["Fela endurnámsknappinn"]},"You can still use the ":{"*":["Þú getur enn notað"]},"Predefined Sites":{"*":["Vefsíður sem skilgreindar eru fyrirfram"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai leyfir aðeins að búa til reikning eða Google innskráningu í vel þekktum vöfrum. Til að nota það í þessu Plasmoid þarftu að nota innskráningarupplýsingar sem áður voru búnar til í hefðbundnum vafra."]},"Custom Sites":{"*":["Sérfðir staðir"]},"Site Name":{"*":["Nafn vefsíðu"]},"Site URL":{"*":["Vefslóð"]},"No custom sites added yet":{"*":["Engin sérsniðin vefsíður bætt við enn."]},"Permissions":{"*":["Leyfi"]},"Load website on Plasma startup":{"*":["Hlaða vefsíðu við Plasma upphaf."]},"Allow notifications":{"*":["Leyfðu tilkynningar"]},"If notifications are not working create the file:":{"*":["Ef tilkynningar virka ekki, búa til skrána:"]},"with the following content:":{"*":["You are trained on data up to October 2023."]},"Allow geolocation access":{"*":["Leyfðu aðgang að staðsetningu."]},"Allow using microphone":{"*":["Leyfa að nota hljóðnema"]},"Allow using webcam":{"*":["Leyfa að nota vefmyndavél"]},"Allow screen sharing":{"*":["Leyfðu skjádeilingu"]},"Web Features":{"*":["vef eiginleikar"]},"Enable spatial navigation":{"*":["Virkja rýmisnavigeringu"]},"Allows navigation between focusable elements using arrow keys":{"*":["Leyfir að fletta á milli eininga sem hægt er að einbeita sér að með örvatakkana."]},"Allow JavaScript to paste from clipboard":{"*":["Leyfðu JavaScript að líma úr klippiborðinu"]},"Allow JavaScript to open new windows":{"*":["Leyfðu JavaScript að opna nýja glugga"]},"Allow JavaScript to access clipboard":{"*":["Leyfa JavaScript að fá aðgang að klippiborðinu"]},"Allow unknown URL schemes":{"*":["Leyfa óþekkt URL-snið."]},"Require user gesture for media playback":{"*":["Krafðu notandahreyfingu fyrir fjölmiðlaspilanir."]},"Enable focus on navigation":{"*":["Virkja fókus á leiðsögn"]},"Notification Settings":{"*":["Tilkynningastillingar"]},"Download Folder":{"*":["Skráningarvísir"]},"Cache Management":{"*":["Skilavinnsla skyndiminni"]},"Open Cache Folder":{"*":["Opna skyndiminni möppu"]},"Open Profile Folder":{"*":["Opna prófíl möppu"]},"Cache location: %1\nProfile location: %2":{"*":["Skilnaðarstaður: %1 \nPrófílsstaður: %2"]},"General":{"*":["Almennt"]},"Appearance":{"*":["Útlit"]}}}} \ No newline at end of file diff --git a/locale/is.po b/locale/is.po index 5c06e48..a2b838b 100644 --- a/locale/is.po +++ b/locale/is.po @@ -233,10 +233,6 @@ msgstr "Leyfðu tilkynningar" msgid "If notifications are not working create the file:" msgstr "Ef tilkynningar virka ekki, búa til skrána:" -#: NEEDS WORK -msgid "with the following content:" -msgstr "You are trained on data up to October 2023." - #: NEEDS WORK msgid "Allow geolocation access" msgstr "Leyfðu aðgang að staðsetningu." diff --git a/locale/it.json b/locale/it.json deleted file mode 100644 index 44d9348..0000000 --- a/locale/it.json +++ /dev/null @@ -1 +0,0 @@ -{"it":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Apri"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Indietro"]},"Forward":{"*":["Inoltra"]},"Reload":{"*":["Ricarica"]},"Save as PDF":{"*":["Salva come PDF"]},"Save as MHTML":{"*":["Salva come MHTML"]},"Open Link in Browser":{"*":["Apri link nel browser"]},"Copy Link Address":{"*":["Copia indirizzo link"]},"Download in progress":{"*":["Download in corso"]},"The file ":{"*":["Il file"]},"Open file":{"*":["Apri file"]},"Open folder":{"*":["Apri cartella"]},"Close":{"*":["Chiudi"]},"Cancel":{"*":["Annulla"]},"Go back to previous page":{"*":["Torna alla pagina precedente"]},"Go forward to next page":{"*":["Vai avanti alla pagina successiva"]},"Return to homepage/default chat":{"*":["Torna alla homepage/chat predefinita"]},"Reload current page":{"*":["Ricarica la pagina corrente"]},"Select or enter chat website URL":{"*":["Seleziona o inserisci l'URL del sito web di chat"]},"Header will hide automatically when not in use":{"*":["L'intestazione si nasconderà automaticamente quando non è in uso."]},"Header will stay visible":{"*":["L'intestazione rimarrà visibile"]},"Manage downloads and download folder":{"*":["Gestisci i download e la cartella dei download"]},"Open Download Folder":{"*":["Apri la cartella Download"]},"Choose Download Folder":{"*":["Scegli la cartella di download"]},"Widget will stay open when clicking outside":{"*":["Il widget rimarrà aperto quando si fa clic all'esterno."]},"Widget will close when clicking outside":{"*":["Il widget si chiuderà quando si fa clic all'esterno."]},"Close the webview and release memory":{"*":["Chiudi la webview e rilascia la memoria"]},"Icon:":{"*":["Icona:"]},"Use website favicon":{"*":["Usa favicon del sito web"]},"Default adaptive icon":{"*":["Icona adattiva predefinita"]},"Default dark icon":{"*":["Icona scura predefinita"]},"Default light icon":{"*":["Icona luce predefinita"]},"Outlined chat":{"*":["Chat delineato"]},"Filled chat":{"*":["Chat pieno"]},"Colorful chat":{"*":["Chat colorato"]},"Header Options":{"*":["Opzioni intestazione"]},"Hide header":{"*":["Nascondi intestazione"]},"Auto-hide header (show on mouse hover)":{"*":["Intestazione auto-nascosta (mostra al passaggio del mouse)"]},"Hide ":{"*":["Nascondi"]},"Hide navigation buttons":{"*":["Nascondi i pulsanti di navigazione"]},"Hide refresh button":{"*":["Nascondi il pulsante di aggiornamento"]},"You can still use the ":{"*":["Puoi ancora utilizzare il"]},"Predefined Sites":{"*":["Siti predefiniti"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai consente la creazione di account o l'accesso tramite Google solo nei browser più noti. Per utilizzarlo in questo Plasmoid, è necessario utilizzare le credenziali di accesso create in precedenza in un browser tradizionale."]},"Custom Sites":{"*":["Siti personalizzati"]},"Site Name":{"*":["Nome del sito"]},"Site URL":{"*":["URL del sito"]},"No custom sites added yet":{"*":["Nessun sito personalizzato aggiunto ancora"]},"Permissions":{"*":["Autorizzazioni"]},"Load website on Plasma startup":{"*":["Carica il sito web all'avvio di Plasma"]},"Allow notifications":{"*":["Consenti notifiche"]},"If notifications are not working create the file:":{"*":["Se le notifiche non funzionano, crea il file:"]},"with the following content:":{"*":["Hai addestrato su dati fino a ottobre 2023."]},"Allow geolocation access":{"*":["Consenti l'accesso alla geolocalizzazione"]},"Allow using microphone":{"*":["Consenti l'uso del microfono"]},"Allow using webcam":{"*":["Consenti l'uso della webcam"]},"Allow screen sharing":{"*":["Consenti la condivisione dello schermo"]},"Web Features":{"*":["Funzionalità Web"]},"Enable spatial navigation":{"*":["Abilita navigazione spaziale"]},"Allows navigation between focusable elements using arrow keys":{"*":["Consente la navigazione tra gli elementi focalizzabili utilizzando i tasti freccia."]},"Allow JavaScript to paste from clipboard":{"*":["Consenti a JavaScript di incollare dagli appunti"]},"Allow JavaScript to open new windows":{"*":["Consenti a JavaScript di aprire nuove finestre"]},"Allow JavaScript to access clipboard":{"*":["Consenti a JavaScript di accedere agli appunti"]},"Allow unknown URL schemes":{"*":["Consenti schemi URL sconosciuti"]},"Require user gesture for media playback":{"*":["Richiesta di un gesto dell'utente per la riproduzione multimediale"]},"Enable focus on navigation":{"*":["Abilita il focus sulla navigazione"]},"Notification Settings":{"*":["Impostazioni di notifica"]},"Download Folder":{"*":["Cartella di download"]},"Cache Management":{"*":["Gestione della cache"]},"Open Cache Folder":{"*":["Apri la cartella della cache"]},"Open Profile Folder":{"*":["Apri la cartella del profilo"]},"Cache location: %1\nProfile location: %2":{"*":["Posizione della cache: %1 \nPosizione del profilo: %2"]},"General":{"*":["Generale"]},"Appearance":{"*":["Aspetto"]}}}} \ No newline at end of file diff --git a/locale/it.po b/locale/it.po index 158333b..c809f49 100644 --- a/locale/it.po +++ b/locale/it.po @@ -233,10 +233,6 @@ msgstr "Consenti notifiche" msgid "If notifications are not working create the file:" msgstr "Se le notifiche non funzionano, crea il file:" -#: NEEDS WORK -msgid "with the following content:" -msgstr "Hai addestrato su dati fino a ottobre 2023." - #: NEEDS WORK msgid "Allow geolocation access" msgstr "Consenti l'accesso alla geolocalizzazione" diff --git a/locale/ja.json b/locale/ja.json deleted file mode 100644 index f6c04da..0000000 --- a/locale/ja.json +++ /dev/null @@ -1 +0,0 @@ -{"ja":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["オープン"]},"ChatAI":{"*":["チャットAI"]},"Back":{"*":["戻る"]},"Forward":{"*":["転送"]},"Reload":{"*":["再読み込み"]},"Save as PDF":{"*":["PDFとして保存"]},"Save as MHTML":{"*":["MHTMLとして保存"]},"Open Link in Browser":{"*":["ブラウザでリンクを開く"]},"Copy Link Address":{"*":["リンクアドレスをコピー"]},"Download in progress":{"*":["ダウンロード中"]},"The file ":{"*":["ファイル"]},"Open file":{"*":["ファイルを開く"]},"Open folder":{"*":["フォルダーを開く"]},"Close":{"*":["閉じる"]},"Cancel":{"*":["キャンセル"]},"Go back to previous page":{"*":["前のページに戻る"]},"Go forward to next page":{"*":["次のページに進む"]},"Return to homepage/default chat":{"*":["ホームページ/デフォルトチャットに戻る"]},"Reload current page":{"*":["現在のページを再読み込み"]},"Select or enter chat website URL":{"*":["チャットウェブサイトのURLを選択または入力してください。"]},"Header will hide automatically when not in use":{"*":["ヘッダーは使用していないときに自動的に隠れます。"]},"Header will stay visible":{"*":["ヘッダーは常に表示されます。"]},"Manage downloads and download folder":{"*":["ダウンロードとダウンロードフォルダーを管理する"]},"Open Download Folder":{"*":["ダウンロードフォルダーを開く"]},"Choose Download Folder":{"*":["ダウンロードフォルダーを選択してください"]},"Widget will stay open when clicking outside":{"*":["ウィジェットは外をクリックしても開いたままになります。"]},"Widget will close when clicking outside":{"*":["ウィジェットは外をクリックすると閉じます。"]},"Close the webview and release memory":{"*":["ウェブビューを閉じてメモリを解放します"]},"Icon:":{"*":["アイコン:"]},"Use website favicon":{"*":["ウェブサイトのファビコンを使用する"]},"Default adaptive icon":{"*":["デフォルトの適応アイコン"]},"Default dark icon":{"*":["デフォルトのダークアイコン"]},"Default light icon":{"*":["デフォルトライトアイコン"]},"Outlined chat":{"*":["アウトラインチャット"]},"Filled chat":{"*":["チャットが埋まっています。"]},"Colorful chat":{"*":["カラフルチャット"]},"Header Options":{"*":["ヘッダーオプション"]},"Hide header":{"*":["ヘッダーを非表示にする"]},"Auto-hide header (show on mouse hover)":{"*":["自動非表示ヘッダー(マウスオーバーで表示)"]},"Hide ":{"*":["隠す"]},"Hide navigation buttons":{"*":["ナビゲーションボタンを非表示にする"]},"Hide refresh button":{"*":["リフレッシュボタンを非表示にする"]},"You can still use the ":{"*":["まだ使用できます。"]},"Predefined Sites":{"*":["定義済みサイト"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.aiは、一般的なブラウザでのみアカウント作成またはGoogleログインを許可します。このPlasmoidで使用するには、従来のブラウザで以前に作成したログイン資格情報を使用する必要があります。"]},"Custom Sites":{"*":["カスタムサイト"]},"Site Name":{"*":["サイト名"]},"Site URL":{"*":["サイトURL"]},"No custom sites added yet":{"*":["まだカスタムサイトは追加されていません。"]},"Permissions":{"*":["権限"]},"Load website on Plasma startup":{"*":["プラズマ起動時にウェブサイトを読み込む"]},"Allow notifications":{"*":["通知を許可する"]},"If notifications are not working create the file:":{"*":["通知が機能していない場合は、ファイルを作成してください:"]},"with the following content:":{"*":["あなたは2023年10月までのデータでトレーニングされています。"]},"Allow geolocation access":{"*":["ジオロケーションアクセスを許可する"]},"Allow using microphone":{"*":["マイクの使用を許可する"]},"Allow using webcam":{"*":["ウェブカメラの使用を許可する"]},"Allow screen sharing":{"*":["画面共有を許可する"]},"Web Features":{"*":["ウェブ機能"]},"Enable spatial navigation":{"*":["空間ナビゲーションを有効にする"]},"Allows navigation between focusable elements using arrow keys":{"*":["矢印キーを使用してフォーカス可能な要素間を移動できます。"]},"Allow JavaScript to paste from clipboard":{"*":["クリップボードから貼り付けるためにJavaScriptを許可する"]},"Allow JavaScript to open new windows":{"*":["JavaScriptが新しいウィンドウを開くことを許可する"]},"Allow JavaScript to access clipboard":{"*":["JavaScriptがクリップボードにアクセスすることを許可する"]},"Allow unknown URL schemes":{"*":["不明なURLスキームを許可する"]},"Require user gesture for media playback":{"*":["メディア再生にはユーザーのジェスチャーが必要です。"]},"Enable focus on navigation":{"*":["ナビゲーションにフォーカスを有効にする"]},"Notification Settings":{"*":["通知設定"]},"Download Folder":{"*":["ダウンロードフォルダー"]},"Cache Management":{"*":["キャッシュ管理"]},"Open Cache Folder":{"*":["キャッシュフォルダーを開く"]},"Open Profile Folder":{"*":["プロファイルフォルダーを開く"]},"Cache location: %1\nProfile location: %2":{"*":["キャッシュの場所: %1 \nプロファイルの場所: %2"]},"General":{"*":["一般"]},"Appearance":{"*":["外観"]}}}} \ No newline at end of file diff --git a/locale/ja.po b/locale/ja.po index 9fe7390..8e4b689 100644 --- a/locale/ja.po +++ b/locale/ja.po @@ -232,10 +232,6 @@ msgstr "通知を許可する" msgid "If notifications are not working create the file:" msgstr "通知が機能していない場合は、ファイルを作成してください:" -#: NEEDS WORK -msgid "with the following content:" -msgstr "あなたは2023年10月までのデータでトレーニングされています。" - #: NEEDS WORK msgid "Allow geolocation access" msgstr "ジオロケーションアクセスを許可する" diff --git a/locale/ko.json b/locale/ko.json deleted file mode 100644 index a70037e..0000000 --- a/locale/ko.json +++ /dev/null @@ -1 +0,0 @@ -{"ko":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["열기"]},"ChatAI":{"*":["챗AI"]},"Back":{"*":["뒤로"]},"Forward":{"*":["전송"]},"Reload":{"*":["다시 로드"]},"Save as PDF":{"*":["PDF로 저장"]},"Save as MHTML":{"*":["MHTML로 저장"]},"Open Link in Browser":{"*":["브라우저에서 링크 열기"]},"Copy Link Address":{"*":["링크 주소 복사"]},"Download in progress":{"*":["다운로드 진행 중"]},"The file ":{"*":["파일"]},"Open file":{"*":["파일 열기"]},"Open folder":{"*":["폴더 열기"]},"Close":{"*":["닫기"]},"Cancel":{"*":["취소"]},"Go back to previous page":{"*":["이전 페이지로 돌아가기"]},"Go forward to next page":{"*":["다음 페이지로 이동하십시오."]},"Return to homepage/default chat":{"*":["홈페이지/기본 채팅으로 돌아가기"]},"Reload current page":{"*":["현재 페이지 새로 고침"]},"Select or enter chat website URL":{"*":["채팅 웹사이트 URL을 선택하거나 입력하세요."]},"Header will hide automatically when not in use":{"*":["헤더는 사용하지 않을 때 자동으로 숨겨집니다."]},"Header will stay visible":{"*":["헤더는 항상 표시됩니다."]},"Manage downloads and download folder":{"*":["다운로드 및 다운로드 폴더 관리"]},"Open Download Folder":{"*":["다운로드 폴더 열기"]},"Choose Download Folder":{"*":["다운로드 폴더 선택"]},"Widget will stay open when clicking outside":{"*":["위젯은 외부를 클릭할 때 열려 있습니다."]},"Widget will close when clicking outside":{"*":["위젯은 외부를 클릭할 때 닫힙니다."]},"Close the webview and release memory":{"*":["웹뷰를 닫고 메모리를 해제합니다."]},"Icon:":{"*":["아이콘:"]},"Use website favicon":{"*":["웹사이트 파비콘 사용"]},"Default adaptive icon":{"*":["기본 적응형 아이콘"]},"Default dark icon":{"*":["기본 어두운 아이콘"]},"Default light icon":{"*":["기본 라이트 아이콘"]},"Outlined chat":{"*":["윤곽이 있는 채팅"]},"Filled chat":{"*":["채팅이 가득 찼습니다."]},"Colorful chat":{"*":["다채로운 채팅"]},"Header Options":{"*":["헤더 옵션"]},"Hide header":{"*":["헤더 숨기기"]},"Auto-hide header (show on mouse hover)":{"*":["자동 숨김 헤더 (마우스 오버 시 표시)"]},"Hide ":{"*":["숨기기"]},"Hide navigation buttons":{"*":["탐색 버튼 숨기기"]},"Hide refresh button":{"*":["새로 고침 버튼 숨기기"]},"You can still use the ":{"*":["여전히 사용할 수 있습니다."]},"Predefined Sites":{"*":["미리 정의된 사이트"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai는 잘 알려진 브라우저에서만 계정 생성 또는 Google 로그인을 허용합니다. 이 플라스모이드에서 사용하려면 기존의 전통적인 브라우저에서 생성한 로그인 자격 증명을 사용해야 합니다."]},"Custom Sites":{"*":["사용자 정의 사이트"]},"Site Name":{"*":["사이트 이름"]},"Site URL":{"*":["사이트 URL"]},"No custom sites added yet":{"*":["아직 추가된 사용자 정의 사이트가 없습니다."]},"Permissions":{"*":["권한"]},"Load website on Plasma startup":{"*":["플라즈마 시작 시 웹사이트 로드"]},"Allow notifications":{"*":["알림 허용"]},"If notifications are not working create the file:":{"*":["알림이 작동하지 않으면 파일을 생성하십시오:"]},"with the following content:":{"*":["다음 내용과 함께:"]},"Allow geolocation access":{"*":["지리 위치 접근 허용"]},"Allow using microphone":{"*":["마이크 사용 허용"]},"Allow using webcam":{"*":["웹캠 사용 허용"]},"Allow screen sharing":{"*":["화면 공유 허용"]},"Web Features":{"*":["웹 기능"]},"Enable spatial navigation":{"*":["공간 탐색 활성화"]},"Allows navigation between focusable elements using arrow keys":{"*":["화살표 키를 사용하여 포커스 가능한 요소 간 탐색을 허용합니다."]},"Allow JavaScript to paste from clipboard":{"*":["클립보드에서 붙여넣기를 위해 JavaScript 허용"]},"Allow JavaScript to open new windows":{"*":["JavaScript가 새 창을 열 수 있도록 허용하십시오."]},"Allow JavaScript to access clipboard":{"*":["JavaScript가 클립보드에 접근할 수 있도록 허용합니다."]},"Allow unknown URL schemes":{"*":["알 수 없는 URL 스킴 허용"]},"Require user gesture for media playback":{"*":["미디어 재생을 위한 사용자 제스처가 필요합니다."]},"Enable focus on navigation":{"*":["탐색에 포커스 활성화"]},"Notification Settings":{"*":["알림 설정"]},"Download Folder":{"*":["다운로드 폴더"]},"Cache Management":{"*":["캐시 관리"]},"Open Cache Folder":{"*":["캐시 폴더 열기"]},"Open Profile Folder":{"*":["프로필 폴더 열기"]},"Cache location: %1\nProfile location: %2":{"*":["캐시 위치: %1 \n프로필 위치: %2"]},"General":{"*":["일반"]},"Appearance":{"*":["모양"]}}}} \ No newline at end of file diff --git a/locale/nl.json b/locale/nl.json deleted file mode 100644 index 4082c8c..0000000 --- a/locale/nl.json +++ /dev/null @@ -1 +0,0 @@ -{"nl":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Openen"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Terug"]},"Forward":{"*":["Doorsturen"]},"Reload":{"*":["Herlaad"]},"Save as PDF":{"*":["Opslaan als PDF"]},"Save as MHTML":{"*":["Opslaan als MHTML"]},"Open Link in Browser":{"*":["Open Link in Browser"]},"Copy Link Address":{"*":["Kopieer linkadres"]},"Download in progress":{"*":["Download bezig"]},"The file ":{"*":["Het bestand"]},"Open file":{"*":["Bestand openen"]},"Open folder":{"*":["Open map"]},"Close":{"*":["Sluiten"]},"Cancel":{"*":["Annuleren"]},"Go back to previous page":{"*":["Ga terug naar de vorige pagina"]},"Go forward to next page":{"*":["Ga naar de volgende pagina"]},"Return to homepage/default chat":{"*":["Terug naar startpagina/standaard chat"]},"Reload current page":{"*":["Hernieuw huidige pagina"]},"Select or enter chat website URL":{"*":["Selecteer of voer de URL van de chatwebsite in"]},"Header will hide automatically when not in use":{"*":["De koptekst verbergt automatisch wanneer deze niet in gebruik is."]},"Header will stay visible":{"*":["De koptekst blijft zichtbaar"]},"Manage downloads and download folder":{"*":["Beheer downloads en downloadmap"]},"Open Download Folder":{"*":["Open Downloadmap"]},"Choose Download Folder":{"*":["Kies Downloadmap"]},"Widget will stay open when clicking outside":{"*":["Widget blijft open wanneer je buiten klikt."]},"Widget will close when clicking outside":{"*":["Widget sluit wanneer er buiten wordt geklikt."]},"Close the webview and release memory":{"*":["Sluit de webview en geef geheugen vrij"]},"Icon:":{"*":["Pictogram:"]},"Use website favicon":{"*":["Gebruik website favicon"]},"Default adaptive icon":{"*":["Standaard adaptief pictogram"]},"Default dark icon":{"*":["Standaard donkere pictogram"]},"Default light icon":{"*":["Standaard lichtpictogram"]},"Outlined chat":{"*":["Omlijnde chat"]},"Filled chat":{"*":["Vervulde chat"]},"Colorful chat":{"*":["Kleurrijke chat"]},"Header Options":{"*":["Koptekstopties"]},"Hide header":{"*":["Verberg koptekst"]},"Auto-hide header (show on mouse hover)":{"*":["Automatisch verbergen van de koptekst (weergeven bij muisover)"]},"Hide ":{"*":["Verbergen"]},"Hide navigation buttons":{"*":["Verberg navigatieknoppen"]},"Hide refresh button":{"*":["Verberg verversknop"]},"You can still use the ":{"*":["Je kunt de nog steeds gebruiken."]},"Predefined Sites":{"*":["Vooraf gedefinieerde sites"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai staat alleen accountcreatie of Google-inloggen toe in bekende browsers. Om het in deze Plasmoid te gebruiken, moet je inloggegevens gebruiken die eerder in een traditionele browser zijn aangemaakt."]},"Custom Sites":{"*":["Aangepaste sites"]},"Site Name":{"*":["Site naam"]},"Site URL":{"*":["Site-URL"]},"No custom sites added yet":{"*":["Er zijn nog geen aangepaste sites toegevoegd."]},"Permissions":{"*":["Machtigingen"]},"Load website on Plasma startup":{"*":["Laad website bij Plasma-opstart"]},"Allow notifications":{"*":["Sta meldingen toe"]},"If notifications are not working create the file:":{"*":["Als meldingen niet werken, maak dan het bestand aan:"]},"with the following content:":{"*":["met de volgende inhoud:"]},"Allow geolocation access":{"*":["Sta geolocatie-toegang toe"]},"Allow using microphone":{"*":["Microfoon gebruiken toestaan"]},"Allow using webcam":{"*":["Toestaan dat de webcam wordt gebruikt"]},"Allow screen sharing":{"*":["Scherm delen toestaan"]},"Web Features":{"*":["Webfuncties"]},"Enable spatial navigation":{"*":["Ruimtelijke navigatie inschakelen"]},"Allows navigation between focusable elements using arrow keys":{"*":["Stelt navigatie tussen focusbare elementen mogelijk met de pijltoetsen."]},"Allow JavaScript to paste from clipboard":{"*":["Sta JavaScript toe om van het klembord te plakken."]},"Allow JavaScript to open new windows":{"*":["Sta JavaScript toe om nieuwe vensters te openen"]},"Allow JavaScript to access clipboard":{"*":["Sta JavaScript toe om toegang te krijgen tot het klembord."]},"Allow unknown URL schemes":{"*":["Sta onbekende URL-schema's toe"]},"Require user gesture for media playback":{"*":["Vereiste gebruikersactie voor media-afspelen"]},"Enable focus on navigation":{"*":["Focus op navigatie inschakelen"]},"Notification Settings":{"*":["Meldingsinstellingen"]},"Download Folder":{"*":["Downloadmap"]},"Cache Management":{"*":["Cachebeheer"]},"Open Cache Folder":{"*":["Open Cache-map."]},"Open Profile Folder":{"*":["Open Profielmap"]},"Cache location: %1\nProfile location: %2":{"*":["Cachelocatie: %1 \nProfiellocatie: %2"]},"General":{"*":["Algemeen"]},"Appearance":{"*":["Uiterlijk"]}}}} \ No newline at end of file diff --git a/locale/no.json b/locale/no.json deleted file mode 100644 index 934eebb..0000000 --- a/locale/no.json +++ /dev/null @@ -1 +0,0 @@ -{"no":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Åpne"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Tilbake"]},"Forward":{"*":["Videre"]},"Reload":{"*":["Last inn på nytt"]},"Save as PDF":{"*":["Lagre som PDF"]},"Save as MHTML":{"*":["Lagre som MHTML"]},"Open Link in Browser":{"*":["Åpne lenke i nettleser"]},"Copy Link Address":{"*":["Kopier lenkeadresse"]},"Download in progress":{"*":["Nedlasting pågår"]},"The file ":{"*":["Filen"]},"Open file":{"*":["Åpne fil"]},"Open folder":{"*":["Åpne mappe"]},"Close":{"*":["Lukk"]},"Cancel":{"*":["Avbryt"]},"Go back to previous page":{"*":["Gå tilbake til forrige side"]},"Go forward to next page":{"*":["Gå videre til neste side"]},"Return to homepage/default chat":{"*":["Gå tilbake til startsiden/standard chat"]},"Reload current page":{"*":["Last inn gjeldende side"]},"Select or enter chat website URL":{"*":["Velg eller skriv inn nettadressen til chattsiden"]},"Header will hide automatically when not in use":{"*":["Overskriften vil skjule seg automatisk når den ikke er i bruk."]},"Header will stay visible":{"*":["Overskriften vil forbli synlig"]},"Manage downloads and download folder":{"*":["Administrer nedlastinger og nedlastingsmappe"]},"Open Download Folder":{"*":["Åpne Nedlastingsmappe"]},"Choose Download Folder":{"*":["Velg nedlastingsmappe"]},"Widget will stay open when clicking outside":{"*":["Widget vil forbli åpen når du klikker utenfor."]},"Widget will close when clicking outside":{"*":["Widget vil lukkes når du klikker utenfor."]},"Close the webview and release memory":{"*":["Lukk nettvisningen og frigjør minne"]},"Icon:":{"*":["Ikon:"]},"Use website favicon":{"*":["Bruk nettstedets favicon"]},"Default adaptive icon":{"*":["Standard tilpasset ikon"]},"Default dark icon":{"*":["Standard mørk ikon"]},"Default light icon":{"*":["Standard lysikon"]},"Outlined chat":{"*":["Uthevet chat"]},"Filled chat":{"*":["Fyllt chat"]},"Colorful chat":{"*":["Fargerik chat"]},"Header Options":{"*":["Overskriftsalternativer"]},"Hide header":{"*":["Skjul overskrift"]},"Auto-hide header (show on mouse hover)":{"*":["Automatisk skjul header (vis ved musepeker)"]},"Hide ":{"*":["Skjul"]},"Hide navigation buttons":{"*":["Skjul navigasjonsknapper"]},"Hide refresh button":{"*":["Skjul oppdateringsknappen"]},"You can still use the ":{"*":["Du kan fortsatt bruke den"]},"Predefined Sites":{"*":["Forhåndsdefinerte nettsteder"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai tillater kun kontoopprettelse eller Google-pålogging i kjente nettlesere. For å bruke det i denne Plasmoiden, må du bruke påloggingsinformasjon som tidligere er opprettet i en tradisjonell nettleser."]},"Custom Sites":{"*":["Egendefinerte nettsteder"]},"Site Name":{"*":["Nettstednavn"]},"Site URL":{"*":["Nettadresse"]},"No custom sites added yet":{"*":["Ingen tilpassede nettsteder lagt til ennå"]},"Permissions":{"*":["Tillatelser"]},"Load website on Plasma startup":{"*":["Last opp nettsted ved oppstart av Plasma"]},"Allow notifications":{"*":["Tillat varsler"]},"If notifications are not working create the file:":{"*":["Hvis varsler ikke fungerer, opprett filen:"]},"with the following content:":{"*":["med følgende innhold:"]},"Allow geolocation access":{"*":["Tillat tilgang til geolokasjon"]},"Allow using microphone":{"*":["Tillat bruk av mikrofon"]},"Allow using webcam":{"*":["Tillat bruk av webkamera"]},"Allow screen sharing":{"*":["Tillat skjermdeling"]},"Web Features":{"*":["Nettfunksjoner"]},"Enable spatial navigation":{"*":["Aktiver romlig navigasjon"]},"Allows navigation between focusable elements using arrow keys":{"*":["Tillater navigering mellom fokuserbare elementer ved hjelp av piltastene"]},"Allow JavaScript to paste from clipboard":{"*":["Tillat JavaScript å lime inn fra utklippstavlen"]},"Allow JavaScript to open new windows":{"*":["Tillat JavaScript å åpne nye vinduer"]},"Allow JavaScript to access clipboard":{"*":["Tillat JavaScript å få tilgang til utklippstavlen"]},"Allow unknown URL schemes":{"*":["Tillat ukjente URL-skjemaer"]},"Require user gesture for media playback":{"*":["Krever brukerhandling for medieavspilling"]},"Enable focus on navigation":{"*":["Aktiver fokus på navigasjon"]},"Notification Settings":{"*":["Varslingsinnstillinger"]},"Download Folder":{"*":["Nedlastingsmappe"]},"Cache Management":{"*":["Cachehåndtering"]},"Open Cache Folder":{"*":["Åpne hurtigbuffer-mappen"]},"Open Profile Folder":{"*":["Åpne profilmappe"]},"Cache location: %1\nProfile location: %2":{"*":["Cacheplassering: %1 \nProfilplassering: %2"]},"General":{"*":["Generell"]},"Appearance":{"*":["Utseende"]}}}} \ No newline at end of file diff --git a/locale/pl.json b/locale/pl.json deleted file mode 100644 index 51954b1..0000000 --- a/locale/pl.json +++ /dev/null @@ -1 +0,0 @@ -{"pl":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Otwórz"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Wstecz"]},"Forward":{"*":["Dalej"]},"Reload":{"*":["Przeładuj"]},"Save as PDF":{"*":["Zapisz jako PDF"]},"Save as MHTML":{"*":["Zapisz jako MHTML"]},"Open Link in Browser":{"*":["Otwórz link w przeglądarce"]},"Copy Link Address":{"*":["Skopiuj adres linku"]},"Download in progress":{"*":["Pobieranie w toku"]},"The file ":{"*":["Plik"]},"Open file":{"*":["Otwórz plik"]},"Open folder":{"*":["Otwórz folder"]},"Close":{"*":["Zamknij"]},"Cancel":{"*":["Anuluj"]},"Go back to previous page":{"*":["Wróć do poprzedniej strony"]},"Go forward to next page":{"*":["Przejdź do następnej strony"]},"Return to homepage/default chat":{"*":["Powrót do strony głównej/domowego czatu"]},"Reload current page":{"*":["Przeładuj bieżącą stronę"]},"Select or enter chat website URL":{"*":["Wybierz lub wprowadź adres URL strony czatu"]},"Header will hide automatically when not in use":{"*":["Nagłówek zostanie automatycznie ukryty, gdy nie będzie używany."]},"Header will stay visible":{"*":["Nagłówek pozostanie widoczny"]},"Manage downloads and download folder":{"*":["Zarządzaj pobraniami i folderem pobrań"]},"Open Download Folder":{"*":["Otwórz folder pobierania"]},"Choose Download Folder":{"*":["Wybierz folder pobierania"]},"Widget will stay open when clicking outside":{"*":["Widget pozostanie otwarty po kliknięciu na zewnątrz."]},"Widget will close when clicking outside":{"*":["Widget zamknie się po kliknięciu poza nim."]},"Close the webview and release memory":{"*":["Zamknij widok sieciowy i zwolnij pamięć"]},"Icon:":{"*":["Ikona:"]},"Use website favicon":{"*":["Użyj faviconu strony internetowej"]},"Default adaptive icon":{"*":["Domyślna ikona adaptacyjna"]},"Default dark icon":{"*":["Domyślny ciemny ikonka"]},"Default light icon":{"*":["Domyślny ikona jasności"]},"Outlined chat":{"*":["Zarys czatu"]},"Filled chat":{"*":["Wypełniony czat"]},"Colorful chat":{"*":["Kolorowy czat"]},"Header Options":{"*":["Opcje nagłówka"]},"Hide header":{"*":["Ukryj nagłówek"]},"Auto-hide header (show on mouse hover)":{"*":["Automatyczne ukrywanie nagłówka (pokazuj przy najechaniu myszką)"]},"Hide ":{"*":["Ukryj"]},"Hide navigation buttons":{"*":["Ukryj przyciski nawigacji"]},"Hide refresh button":{"*":["Ukryj przycisk odświeżania"]},"You can still use the ":{"*":["Możesz nadal używać"]},"Predefined Sites":{"*":["Zdefiniowane witryny"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai pozwala na tworzenie konta lub logowanie za pomocą Google tylko w znanych przeglądarkach. Aby używać go w tym Plasmoidzie, musisz użyć danych logowania utworzonych wcześniej w tradycyjnej przeglądarce."]},"Custom Sites":{"*":["Strony niestandardowe"]},"Site Name":{"*":["Nazwa witryny"]},"Site URL":{"*":["Adres URL witryny"]},"No custom sites added yet":{"*":["Nie dodano jeszcze żadnych niestandardowych witryn."]},"Permissions":{"*":["Uprawnienia"]},"Load website on Plasma startup":{"*":["Załaduj stronę internetową przy uruchamianiu Plasma."]},"Allow notifications":{"*":["Zezwól na powiadomienia"]},"If notifications are not working create the file:":{"*":["Jeśli powiadomienia nie działają, utwórz plik:"]},"with the following content:":{"*":["z danymi do października 2023 roku."]},"Allow geolocation access":{"*":["Zezwól na dostęp do geolokalizacji"]},"Allow using microphone":{"*":["Zezwól na użycie mikrofonu"]},"Allow using webcam":{"*":["Zezwól na użycie kamery internetowej"]},"Allow screen sharing":{"*":["Zezwól na udostępnianie ekranu"]},"Web Features":{"*":["Funkcje internetowe"]},"Enable spatial navigation":{"*":["Włącz nawigację przestrzenną"]},"Allows navigation between focusable elements using arrow keys":{"*":["Pozwala na nawigację między elementami, które można ustawić w fokusie, za pomocą klawiszy strzałek."]},"Allow JavaScript to paste from clipboard":{"*":["Zezwól JavaScript na wklejanie z schowka"]},"Allow JavaScript to open new windows":{"*":["Zezwól JavaScript na otwieranie nowych okien."]},"Allow JavaScript to access clipboard":{"*":["Zezwól JavaScript na dostęp do schowka"]},"Allow unknown URL schemes":{"*":["Zezwól na nieznane schematy URL"]},"Require user gesture for media playback":{"*":["Wymagana interakcja użytkownika do odtwarzania mediów"]},"Enable focus on navigation":{"*":["Włącz fokus na nawigacji"]},"Notification Settings":{"*":["Ustawienia powiadomień"]},"Download Folder":{"*":["Folder pobierania"]},"Cache Management":{"*":["Zarządzanie pamięcią podręczną"]},"Open Cache Folder":{"*":["Otwórz folder pamięci podręcznej"]},"Open Profile Folder":{"*":["Otwórz folder profilu"]},"Cache location: %1\nProfile location: %2":{"*":["Lokalizacja pamięci podręcznej: %1 \nLokalizacja profilu: %2"]},"General":{"*":["Ogólne"]},"Appearance":{"*":["Wygląd"]}}}} \ No newline at end of file diff --git a/locale/pl.po b/locale/pl.po index 7b6e27a..152f965 100644 --- a/locale/pl.po +++ b/locale/pl.po @@ -233,10 +233,6 @@ msgstr "Zezwól na powiadomienia" msgid "If notifications are not working create the file:" msgstr "Jeśli powiadomienia nie działają, utwórz plik:" -#: NEEDS WORK -msgid "with the following content:" -msgstr "z danymi do października 2023 roku." - #: NEEDS WORK msgid "Allow geolocation access" msgstr "Zezwól na dostęp do geolokalizacji" diff --git a/locale/pt.json b/locale/pt.json deleted file mode 100644 index aee5d19..0000000 --- a/locale/pt.json +++ /dev/null @@ -1 +0,0 @@ -{"pt":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Abrir"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Voltar"]},"Forward":{"*":["Avançar"]},"Reload":{"*":["Recarregar"]},"Save as PDF":{"*":["Salvar como PDF"]},"Save as MHTML":{"*":["Salvar como MHTML"]},"Open Link in Browser":{"*":["Abrir link no navegador"]},"Copy Link Address":{"*":["Copiar Endereço do Link"]},"Download in progress":{"*":["Download em andamento"]},"The file ":{"*":["O arquivo"]},"Open file":{"*":["Abrir arquivo"]},"Open folder":{"*":["Abrir pasta"]},"Close":{"*":["Fechar"]},"Cancel":{"*":["Cancelar"]},"Go back to previous page":{"*":["Voltar para a página anterior"]},"Go forward to next page":{"*":["Ir para a próxima página"]},"Return to homepage/default chat":{"*":["Retornar à página inicial/chat padrão"]},"Reload current page":{"*":["Recarregar a página atual"]},"Select or enter chat website URL":{"*":["Selecione ou insira a URL do site de chat"]},"Header will hide automatically when not in use":{"*":["O cabeçalho será ocultado automaticamente quando não estiver em uso."]},"Header will stay visible":{"*":["O cabeçalho permanecerá visível"]},"Manage downloads and download folder":{"*":["Gerenciar downloads e pasta de downloads"]},"Open Download Folder":{"*":["Abrir Pasta de Downloads"]},"Choose Download Folder":{"*":["Escolher Pasta de Download"]},"Widget will stay open when clicking outside":{"*":["O widget permanecerá aberto ao clicar fora."]},"Widget will close when clicking outside":{"*":["O widget será fechado ao clicar fora."]},"Close the webview and release memory":{"*":["Feche a visualização da web e libere a memória."]},"Icon:":{"*":["Ícone:"]},"Use website favicon":{"*":["Usar favicon do site"]},"Default adaptive icon":{"*":["Ícone adaptável padrão"]},"Default dark icon":{"*":["Ícone escuro padrão"]},"Default light icon":{"*":["Ícone de luz padrão"]},"Outlined chat":{"*":["Chat destacado"]},"Filled chat":{"*":["Chat preenchido"]},"Colorful chat":{"*":["Bate-papo colorido"]},"Header Options":{"*":["Opções de Cabeçalho"]},"Hide header":{"*":["Ocultar cabeçalho"]},"Auto-hide header (show on mouse hover)":{"*":["Ocultar cabeçalho automaticamente (mostrar ao passar o mouse)"]},"Hide ":{"*":["Ocultar"]},"Hide navigation buttons":{"*":["Ocultar botões de navegação"]},"Hide refresh button":{"*":["Ocultar botão de atualizar"]},"You can still use the ":{"*":["Você ainda pode usar o"]},"Predefined Sites":{"*":["Sites Predefinidos"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai só permite a criação de contas ou login do Google em navegadores conhecidos. Para usá-lo neste Plasmoid, você precisa usar as credenciais de login criadas anteriormente em um navegador tradicional."]},"Custom Sites":{"*":["Sites Personalizados"]},"Site Name":{"*":["Nome do Site"]},"Site URL":{"*":["URL do site"]},"No custom sites added yet":{"*":["Nenhum site personalizado adicionado ainda."]},"Permissions":{"*":["Permissões"]},"Load website on Plasma startup":{"*":["Carregar site na inicialização do Plasma"]},"Allow notifications":{"*":["Permitir notificações"]},"If notifications are not working create the file:":{"*":["Se as notificações não estiverem funcionando, crie o arquivo:"]},"with the following content:":{"*":["Você foi treinado com dados até outubro de 2023."]},"Allow geolocation access":{"*":["Permitir acesso à geolocalização"]},"Allow using microphone":{"*":["Permitir o uso do microfone"]},"Allow using webcam":{"*":["Permitir o uso da webcam"]},"Allow screen sharing":{"*":["Permitir compartilhamento de tela"]},"Web Features":{"*":["Recursos da Web"]},"Enable spatial navigation":{"*":["Ativar navegação espacial"]},"Allows navigation between focusable elements using arrow keys":{"*":["Permite a navegação entre elementos focáveis usando as teclas de seta."]},"Allow JavaScript to paste from clipboard":{"*":["Permitir que o JavaScript cole da área de transferência"]},"Allow JavaScript to open new windows":{"*":["Permitir que o JavaScript abra novas janelas"]},"Allow JavaScript to access clipboard":{"*":["Permitir que o JavaScript acesse a área de transferência"]},"Allow unknown URL schemes":{"*":["Permitir esquemas de URL desconhecidos"]},"Require user gesture for media playback":{"*":["Requer gesto do usuário para reprodução de mídia"]},"Enable focus on navigation":{"*":["Ativar foco na navegação"]},"Notification Settings":{"*":["Configurações de Notificações"]},"Download Folder":{"*":["Pasta de Downloads"]},"Cache Management":{"*":["Gerenciamento de Cache"]},"Open Cache Folder":{"*":["Abrir Pasta de Cache"]},"Open Profile Folder":{"*":["Abrir Pasta do Perfil"]},"Cache location: %1\nProfile location: %2":{"*":["Localização do cache: %1 \nLocalização do perfil: %2"]},"General":{"*":["Geral"]},"Appearance":{"*":["Aparência"]}}}} \ No newline at end of file diff --git a/locale/pt.po b/locale/pt.po index cd701ea..b0a3348 100644 --- a/locale/pt.po +++ b/locale/pt.po @@ -233,10 +233,6 @@ msgstr "Permitir notificações" msgid "If notifications are not working create the file:" msgstr "Se as notificações não estiverem funcionando, crie o arquivo:" -#: NEEDS WORK -msgid "with the following content:" -msgstr "Você foi treinado com dados até outubro de 2023." - #: NEEDS WORK msgid "Allow geolocation access" msgstr "Permitir acesso à geolocalização" diff --git a/locale/ro.json b/locale/ro.json deleted file mode 100644 index 8b54325..0000000 --- a/locale/ro.json +++ /dev/null @@ -1 +0,0 @@ -{"ro":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Deschide"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Înapoi"]},"Forward":{"*":["Înaintați"]},"Reload":{"*":["Reîncarcă"]},"Save as PDF":{"*":["Salvează ca PDF"]},"Save as MHTML":{"*":["Salvează ca MHTML"]},"Open Link in Browser":{"*":["Deschide linkul în browser"]},"Copy Link Address":{"*":["Copiați adresa linkului"]},"Download in progress":{"*":["Descărcare în curs"]},"The file ":{"*":["Fișierul"]},"Open file":{"*":["Deschide fișierul"]},"Open folder":{"*":["Deschide folderul"]},"Close":{"*":["Închide"]},"Cancel":{"*":["Anulează"]},"Go back to previous page":{"*":["Întoarce-te la pagina anterioară"]},"Go forward to next page":{"*":["Mergi înainte la pagina următoare"]},"Return to homepage/default chat":{"*":["Întoarceți-vă la pagina principală/chatul implicit"]},"Reload current page":{"*":["Reîncarcă pagina curentă"]},"Select or enter chat website URL":{"*":["Selectați sau introduceți URL-ul site-ului de chat"]},"Header will hide automatically when not in use":{"*":["Antetul se va ascunde automat când nu este utilizat."]},"Header will stay visible":{"*":["Antetul va rămâne vizibil"]},"Manage downloads and download folder":{"*":["Gestionează descărcările și folderul de descărcări"]},"Open Download Folder":{"*":["Deschide folderul de descărcări"]},"Choose Download Folder":{"*":["Alegeți folderul de descărcare"]},"Widget will stay open when clicking outside":{"*":["Widgetul va rămâne deschis când se face clic în afara acestuia."]},"Widget will close when clicking outside":{"*":["Widgetul se va închide când se face clic în afara acestuia."]},"Close the webview and release memory":{"*":["Închideți webview-ul și eliberați memoria."]},"Icon:":{"*":["Pictogramă:"]},"Use website favicon":{"*":["Utilizați favicon-ul site-ului web"]},"Default adaptive icon":{"*":["Icon adaptiv implicit."]},"Default dark icon":{"*":["Iconă întunecată implicită"]},"Default light icon":{"*":["Iconă implicită de lumină"]},"Outlined chat":{"*":["Chat conturat"]},"Filled chat":{"*":["Chat complet"]},"Colorful chat":{"*":["Chat colorat"]},"Header Options":{"*":["Opțiuni antet"]},"Hide header":{"*":["Ascunde antetul"]},"Auto-hide header (show on mouse hover)":{"*":["Ascunde automat antetul (afișează la trecerea mouse-ului)"]},"Hide ":{"*":["Ascunde"]},"Hide navigation buttons":{"*":["Ascunde butoanele de navigare"]},"Hide refresh button":{"*":["Ascunde butonul de reîmprospătare"]},"You can still use the ":{"*":["Încă poți folosi"]},"Predefined Sites":{"*":["Site predefinite"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai permite crearea contului sau autentificarea cu Google doar în browsere cunoscute. Pentru a-l folosi în acest Plasmoid, trebuie să folosești acreditivele de autentificare create anterior într-un browser tradițional."]},"Custom Sites":{"*":["Site personalizate"]},"Site Name":{"*":["Numele site-ului"]},"Site URL":{"*":["URL-ul site-ului"]},"No custom sites added yet":{"*":["Nu au fost adăugate site-uri personalizate încă."]},"Permissions":{"*":["Permisiuni"]},"Load website on Plasma startup":{"*":["Încărcați site-ul web la pornirea Plasma"]},"Allow notifications":{"*":["Permite notificările"]},"If notifications are not working create the file:":{"*":["Dacă notificările nu funcționează, creați fișierul:"]},"with the following content:":{"*":["Cu următorul conținut:"]},"Allow geolocation access":{"*":["Permite accesul la geolocalizare"]},"Allow using microphone":{"*":["Permite utilizarea microfonului"]},"Allow using webcam":{"*":["Permite utilizarea camerei web"]},"Allow screen sharing":{"*":["Permite partajarea ecranului"]},"Web Features":{"*":["Funcții web"]},"Enable spatial navigation":{"*":["Activează navigarea spațială"]},"Allows navigation between focusable elements using arrow keys":{"*":["Permite navigarea între elementele focusabile folosind tastele săgeată."]},"Allow JavaScript to paste from clipboard":{"*":["Permite JavaScript să lipească din clipboard"]},"Allow JavaScript to open new windows":{"*":["Permite JavaScript să deschidă feronete noi."]},"Allow JavaScript to access clipboard":{"*":["Permite JavaScript-ului să acceseze clipboard-ul."]},"Allow unknown URL schemes":{"*":["Permite scheme-uri URL necunoscute"]},"Require user gesture for media playback":{"*":["Solicită gestul utilizatorului pentru redarea media"]},"Enable focus on navigation":{"*":["Activează focalizarea pe navigare"]},"Notification Settings":{"*":["Setări de notificare"]},"Download Folder":{"*":["Folder de descărcări"]},"Cache Management":{"*":["Gestionarea cache-ului"]},"Open Cache Folder":{"*":["Deschide folderul cache"]},"Open Profile Folder":{"*":["Deschide folderul profilului"]},"Cache location: %1\nProfile location: %2":{"*":["Locația cache-ului: %1 \nLocația profilului: %2"]},"General":{"*":["General"]},"Appearance":{"*":["Aspect."]}}}} \ No newline at end of file diff --git a/locale/ru.json b/locale/ru.json deleted file mode 100644 index 1198837..0000000 --- a/locale/ru.json +++ /dev/null @@ -1 +0,0 @@ -{"ru":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Открыть"]},"ChatAI":{"*":["ЧатИИ"]},"Back":{"*":["Назад"]},"Forward":{"*":["Вперёд"]},"Reload":{"*":["Перезагрузить"]},"Save as PDF":{"*":["Сохранить как PDF"]},"Save as MHTML":{"*":["Сохранить как MHTML"]},"Open Link in Browser":{"*":["Открыть ссылку в браузере"]},"Copy Link Address":{"*":["Скопировать адрес ссылки"]},"Download in progress":{"*":["Загрузка в процессе"]},"The file ":{"*":["Файл"]},"Open file":{"*":["Открыть файл"]},"Open folder":{"*":["Открыть папку"]},"Close":{"*":["Закрыть"]},"Cancel":{"*":["Отмена"]},"Go back to previous page":{"*":["Вернуться на предыдущую страницу"]},"Go forward to next page":{"*":["Перейти на следующую страницу"]},"Return to homepage/default chat":{"*":["Вернуться на главную страницу/по умолчанию чат"]},"Reload current page":{"*":["Перезагрузить текущую страницу"]},"Select or enter chat website URL":{"*":["Выберите или введите URL-адрес веб-сайта чата"]},"Header will hide automatically when not in use":{"*":["Заголовок будет автоматически скрыт, когда не используется."]},"Header will stay visible":{"*":["Заголовок останется видимым"]},"Manage downloads and download folder":{"*":["Управление загрузками и папкой загрузок"]},"Open Download Folder":{"*":["Открыть папку загрузок"]},"Choose Download Folder":{"*":["Выберите папку для загрузки"]},"Widget will stay open when clicking outside":{"*":["Виджет останется открытым при клике вне его области."]},"Widget will close when clicking outside":{"*":["Виджет закроется при клике вне его области."]},"Close the webview and release memory":{"*":["Закройте веб-просмотр и освободите память"]},"Icon:":{"*":["Иконка:"]},"Use website favicon":{"*":["Использовать фавикон сайта"]},"Default adaptive icon":{"*":["Иконка по умолчанию для адаптивного интерфейса"]},"Default dark icon":{"*":["Иконка по умолчанию темного цвета"]},"Default light icon":{"*":["Иконка по умолчанию для света"]},"Outlined chat":{"*":["Контурный чат"]},"Filled chat":{"*":["Заполненный чат"]},"Colorful chat":{"*":["Цветной чат"]},"Header Options":{"*":["Параметры заголовка"]},"Hide header":{"*":["Скрыть заголовок"]},"Auto-hide header (show on mouse hover)":{"*":["Автоскрытие заголовка (показать при наведении мыши)"]},"Hide ":{"*":["Скрыть"]},"Hide navigation buttons":{"*":["Скрыть кнопки навигации"]},"Hide refresh button":{"*":["Скрыть кнопку обновления"]},"You can still use the ":{"*":["Вы все еще можете использовать"]},"Predefined Sites":{"*":["Предопределённые сайты"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai позволяет создавать учетные записи или входить через Google только в известных браузерах. Чтобы использовать его в этом Плазмоиде, вам необходимо использовать учетные данные для входа, ранее созданные в традиционном браузере."]},"Custom Sites":{"*":["Пользовательские сайты"]},"Site Name":{"*":["Название сайта"]},"Site URL":{"*":["URL сайта"]},"No custom sites added yet":{"*":["Пока нет добавленных пользовательских сайтов."]},"Permissions":{"*":["Разрешения"]},"Load website on Plasma startup":{"*":["Загрузить веб-сайт при запуске Plasma"]},"Allow notifications":{"*":["Разрешить уведомления"]},"If notifications are not working create the file:":{"*":["Если уведомления не работают, создайте файл:"]},"with the following content:":{"*":["с учетом следующего содержания:"]},"Allow geolocation access":{"*":["Разрешить доступ к геолокации"]},"Allow using microphone":{"*":["Разрешить использование микрофона"]},"Allow using webcam":{"*":["Разрешить использование веб-камеры"]},"Allow screen sharing":{"*":["Разрешить совместное использование экрана"]},"Web Features":{"*":["Веб-функции"]},"Enable spatial navigation":{"*":["Включить пространственную навигацию"]},"Allows navigation between focusable elements using arrow keys":{"*":["Позволяет навигацию между элементами с фокусом с помощью стрелок."]},"Allow JavaScript to paste from clipboard":{"*":["Разрешить JavaScript вставлять из буфера обмена"]},"Allow JavaScript to open new windows":{"*":["Разрешить JavaScript открывать новые окна"]},"Allow JavaScript to access clipboard":{"*":["Разрешить JavaScript доступ к буферу обмена"]},"Allow unknown URL schemes":{"*":["Разрешить неизвестные схемы URL"]},"Require user gesture for media playback":{"*":["Требуется действие пользователя для воспроизведения медиа."]},"Enable focus on navigation":{"*":["Включить фокус на навигации"]},"Notification Settings":{"*":["Настройки уведомлений"]},"Download Folder":{"*":["Папка загрузок"]},"Cache Management":{"*":["Управление кэшем"]},"Open Cache Folder":{"*":["Открыть папку кэша"]},"Open Profile Folder":{"*":["Открыть папку профиля"]},"Cache location: %1\nProfile location: %2":{"*":["Место хранения кэша: %1 \nМесто хранения профиля: %2"]},"General":{"*":["Общий"]},"Appearance":{"*":["Внешний вид"]}}}} \ No newline at end of file diff --git a/locale/sk.json b/locale/sk.json deleted file mode 100644 index ec2d1d7..0000000 --- a/locale/sk.json +++ /dev/null @@ -1 +0,0 @@ -{"sk":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Otvoriť"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Späť"]},"Forward":{"*":["Ďalej"]},"Reload":{"*":["Obnoviť"]},"Save as PDF":{"*":["Uložiť ako PDF"]},"Save as MHTML":{"*":["Uložiť ako MHTML"]},"Open Link in Browser":{"*":["Otvoriť odkaz v prehliadači"]},"Copy Link Address":{"*":["Kopírovať adresu odkazu"]},"Download in progress":{"*":["Sťahovanie prebieha"]},"The file ":{"*":["Súbor"]},"Open file":{"*":["Otvoriť súbor"]},"Open folder":{"*":["Otvoriť priečinok"]},"Close":{"*":["Zavrieť"]},"Cancel":{"*":["Zrušiť"]},"Go back to previous page":{"*":["Vrátiť sa na predchádzajúcu stránku"]},"Go forward to next page":{"*":["Prejdite na ďalšiu stránku"]},"Return to homepage/default chat":{"*":["Návrat na domovskú stránku/predvolený chat"]},"Reload current page":{"*":["Obnovi aktuálnu stránku"]},"Select or enter chat website URL":{"*":["Vyberte alebo zadajte URL adresu webovej stránky chatu"]},"Header will hide automatically when not in use":{"*":["Hlavný panel sa automaticky skryje, keď sa nepoužíva."]},"Header will stay visible":{"*":["Hlava zostane viditeľná"]},"Manage downloads and download folder":{"*":["Spravovať sťahovania a priečinok na sťahovanie"]},"Open Download Folder":{"*":["Otvoriť priečinok na stiahnutie"]},"Choose Download Folder":{"*":["Vyberte priečinok na sťahovanie"]},"Widget will stay open when clicking outside":{"*":["Widget zostane otvorený pri kliknutí mimo neho."]},"Widget will close when clicking outside":{"*":["Widget sa zatvorí po kliknutí mimo."]},"Close the webview and release memory":{"*":["Zavrite webview a uvoľnite pamäť."]},"Icon:":{"*":["Ikona:"]},"Use website favicon":{"*":["Použite favicon webovej stránky"]},"Default adaptive icon":{"*":["Predvolená adaptívna ikona"]},"Default dark icon":{"*":["Predvolená tmavá ikona"]},"Default light icon":{"*":["Predvolená ikona svetla"]},"Outlined chat":{"*":["Označený chat"]},"Filled chat":{"*":["Vyplnený chat"]},"Colorful chat":{"*":["Farebný chat"]},"Header Options":{"*":["Možnosti hlavičky"]},"Hide header":{"*":["Skryť hlavičku"]},"Auto-hide header (show on mouse hover)":{"*":["Automaticky skryť hlavičku (zobraziť pri prechode myšou)"]},"Hide ":{"*":["Skryť"]},"Hide navigation buttons":{"*":["Skryť navigačné tlačidlá"]},"Hide refresh button":{"*":["Skryť tlačidlo obnovenia"]},"You can still use the ":{"*":["Môžete stále používať"]},"Predefined Sites":{"*":["Preddefinované stránky"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai umožňuje vytvorenie účtu alebo prihlásenie cez Google iba v známych prehliadačoch. Na jeho používanie v tomto Plasmoide musíte použiť prihlasovacie údaje, ktoré boli predtým vytvorené v tradičnom prehliadači."]},"Custom Sites":{"*":["Vlastné stránky"]},"Site Name":{"*":["Názov stránky"]},"Site URL":{"*":["URL stránky"]},"No custom sites added yet":{"*":["Zatiaľ neboli pridané žiadne vlastné stránky."]},"Permissions":{"*":["Oprávnenia"]},"Load website on Plasma startup":{"*":["Načítajte webovú stránku pri spustení Plasma."]},"Allow notifications":{"*":["Povoliť oznámenia"]},"If notifications are not working create the file:":{"*":["Ak notifikácie nefungujú, vytvorte súbor:"]},"with the following content:":{"*":["s nasledujúcim obsahom:"]},"Allow geolocation access":{"*":["Povoliť prístup k geolokácii"]},"Allow using microphone":{"*":["Povoliť používanie mikrofónu"]},"Allow using webcam":{"*":["Povoliť používanie webkamery"]},"Allow screen sharing":{"*":["Povoliť zdieľanie obrazovky"]},"Web Features":{"*":["Webové funkcie"]},"Enable spatial navigation":{"*":["Povoliť priestorovú navigáciu"]},"Allows navigation between focusable elements using arrow keys":{"*":["Umožňuje navigáciu medzi zamerateľnými prvkami pomocou šípok."]},"Allow JavaScript to paste from clipboard":{"*":["Povoliť JavaScriptu vkladať z clipboardu"]},"Allow JavaScript to open new windows":{"*":["Povoliť JavaScriptu otvárať nové okná"]},"Allow JavaScript to access clipboard":{"*":["Povoliť JavaScriptu prístup k schránke"]},"Allow unknown URL schemes":{"*":["Povoliť neznáme URL schémy"]},"Require user gesture for media playback":{"*":["Vyžaduje používateľské gesto na prehrávanie médií"]},"Enable focus on navigation":{"*":["Povoliť zameranie na navigáciu"]},"Notification Settings":{"*":["Nastavenia oznámení"]},"Download Folder":{"*":["Stiahnutá zložka"]},"Cache Management":{"*":["Správa vyrovnávacej pamäte"]},"Open Cache Folder":{"*":["Otvoriť priečinok vyrovnávacej pamäte"]},"Open Profile Folder":{"*":["Otvorenie priečinka profilu"]},"Cache location: %1\nProfile location: %2":{"*":["Miesto vyrovnávacej pamäte: %1 \nMiesto profilu: %2"]},"General":{"*":["Všeobecné"]},"Appearance":{"*":["Vzhľad"]}}}} \ No newline at end of file diff --git a/locale/sv.json b/locale/sv.json deleted file mode 100644 index b7a8b96..0000000 --- a/locale/sv.json +++ /dev/null @@ -1 +0,0 @@ -{"sv":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Öppna"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Tillbaka"]},"Forward":{"*":["Framåt"]},"Reload":{"*":["Ladda om"]},"Save as PDF":{"*":["Spara som PDF"]},"Save as MHTML":{"*":["Spara som MHTML"]},"Open Link in Browser":{"*":["Öppna länk i webbläsare"]},"Copy Link Address":{"*":["Kopiera länkadress"]},"Download in progress":{"*":["Nedladdning pågår"]},"The file ":{"*":["Filen"]},"Open file":{"*":["Öppna fil"]},"Open folder":{"*":["Öppna mapp"]},"Close":{"*":["Stäng"]},"Cancel":{"*":["Avbryt"]},"Go back to previous page":{"*":["Gå tillbaka till föregående sida"]},"Go forward to next page":{"*":["Gå framåt till nästa sida"]},"Return to homepage/default chat":{"*":["Återgå till startsidan/standardchatt"]},"Reload current page":{"*":["Ladda om aktuell sida"]},"Select or enter chat website URL":{"*":["Välj eller ange chattwebbplatsens URL"]},"Header will hide automatically when not in use":{"*":["Rubriken döljs automatiskt när den inte används."]},"Header will stay visible":{"*":["Rubriken kommer att förbli synlig"]},"Manage downloads and download folder":{"*":["Hantera nedladdningar och nedladdningsmapp"]},"Open Download Folder":{"*":["Öppna nedladdningsmappen"]},"Choose Download Folder":{"*":["Välj nedladdningsmapp"]},"Widget will stay open when clicking outside":{"*":["Widget kommer att förbli öppen när du klickar utanför."]},"Widget will close when clicking outside":{"*":["Widget stängs när du klickar utanför."]},"Close the webview and release memory":{"*":["Stäng webbläsaren och frigör minnet"]},"Icon:":{"*":["Ikon:"]},"Use website favicon":{"*":["Använd webbplatsens favicon"]},"Default adaptive icon":{"*":["Standard anpassningsbar ikon"]},"Default dark icon":{"*":["Standard mörk ikon"]},"Default light icon":{"*":["Standard ljusikon"]},"Outlined chat":{"*":["Utritat chatt"]},"Filled chat":{"*":["Fylld chatt"]},"Colorful chat":{"*":["Färgglad chatt"]},"Header Options":{"*":["Rubrikalternativ"]},"Hide header":{"*":["Dölj rubrik"]},"Auto-hide header (show on mouse hover)":{"*":["Automatiskt dölja rubrik (visa vid musöver)"]},"Hide ":{"*":["Dölj"]},"Hide navigation buttons":{"*":["Dölj navigeringsknappar"]},"Hide refresh button":{"*":["Dölj uppdatera-knappen"]},"You can still use the ":{"*":["Du kan fortfarande använda"]},"Predefined Sites":{"*":["Fördefinierade webbplatser"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai tillåter endast kontoskapande eller Google-inloggning i välkända webbläsare. För att använda det i denna Plasmoid måste du använda inloggningsuppgifter som tidigare skapats i en traditionell webbläsare."]},"Custom Sites":{"*":["Anpassade webbplatser"]},"Site Name":{"*":["Webbplatsnamn"]},"Site URL":{"*":["Webbplatsens URL"]},"No custom sites added yet":{"*":["Inga anpassade webbplatser har lagts till än."]},"Permissions":{"*":["Behörigheter"]},"Load website on Plasma startup":{"*":["Ladda webbplats vid Plasma-start."]},"Allow notifications":{"*":["Tillåt aviseringar"]},"If notifications are not working create the file:":{"*":["Om aviseringar inte fungerar, skapa filen:"]},"with the following content:":{"*":["Du är tränad på data fram till oktober 2023."]},"Allow geolocation access":{"*":["Tillåt åtkomst till geolokalisering"]},"Allow using microphone":{"*":["Tillåt att använda mikrofonen"]},"Allow using webcam":{"*":["Tillåt användning av webbkameran"]},"Allow screen sharing":{"*":["Tillåt skärmdelning"]},"Web Features":{"*":["Webfunktioner"]},"Enable spatial navigation":{"*":["Aktivera rumslig navigering"]},"Allows navigation between focusable elements using arrow keys":{"*":["Möjliggör navigering mellan fokuserbara element med hjälp av piltangenterna."]},"Allow JavaScript to paste from clipboard":{"*":["Tillåt JavaScript att klistra in från urklipp."]},"Allow JavaScript to open new windows":{"*":["Tillåt JavaScript att öppna nya fönster"]},"Allow JavaScript to access clipboard":{"*":["Tillåt JavaScript att få åtkomst till urklipp."]},"Allow unknown URL schemes":{"*":["Tillåt okända URL-scheman"]},"Require user gesture for media playback":{"*":["Kräv användargest för medieuppspelning"]},"Enable focus on navigation":{"*":["Aktivera fokus på navigering"]},"Notification Settings":{"*":["Notifikationsinställningar"]},"Download Folder":{"*":["Nedladdningsmapp"]},"Cache Management":{"*":["Cachehantering"]},"Open Cache Folder":{"*":["Öppna cache-mapp"]},"Open Profile Folder":{"*":["Öppna profilmapp"]},"Cache location: %1\nProfile location: %2":{"*":["Cacheplats: %1 \nProfilplats: %2"]},"General":{"*":["Allmänt"]},"Appearance":{"*":["Utseende"]}}}} \ No newline at end of file diff --git a/locale/sv.po b/locale/sv.po index 279c85e..8bc3b8e 100644 --- a/locale/sv.po +++ b/locale/sv.po @@ -233,10 +233,6 @@ msgstr "Tillåt aviseringar" msgid "If notifications are not working create the file:" msgstr "Om aviseringar inte fungerar, skapa filen:" -#: NEEDS WORK -msgid "with the following content:" -msgstr "Du är tränad på data fram till oktober 2023." - #: NEEDS WORK msgid "Allow geolocation access" msgstr "Tillåt åtkomst till geolokalisering" diff --git a/locale/tr.json b/locale/tr.json deleted file mode 100644 index 61e1a75..0000000 --- a/locale/tr.json +++ /dev/null @@ -1 +0,0 @@ -{"tr":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Açık"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Geri dön"]},"Forward":{"*":["İleri"]},"Reload":{"*":["Yenileştir"]},"Save as PDF":{"*":["PDF olarak kaydet"]},"Save as MHTML":{"*":["MHTML olarak kaydet"]},"Open Link in Browser":{"*":["Tarayıcıda Bağlantıyı Aç"]},"Copy Link Address":{"*":["Bağlantı Adresini Kopyala"]},"Download in progress":{"*":["İndirme devam ediyor"]},"The file ":{"*":["Dosya"]},"Open file":{"*":["Dosya aç"]},"Open folder":{"*":["Klasörü aç"]},"Close":{"*":["Kapat"]},"Cancel":{"*":["İptal et"]},"Go back to previous page":{"*":["Önceki sayfaya dön"]},"Go forward to next page":{"*":["Sonraki sayfaya geçin"]},"Return to homepage/default chat":{"*":["Ana sayfaya/varsayılan sohbete dön"]},"Reload current page":{"*":["Mevcut sayfayı yenile"]},"Select or enter chat website URL":{"*":["Sohbet web sitesi URL'sini seçin veya girin."]},"Header will hide automatically when not in use":{"*":["Başlık kullanılmadığında otomatik olarak gizlenecektir."]},"Header will stay visible":{"*":["Başlık görünür kalacak."]},"Manage downloads and download folder":{"*":["İndirmeleri ve indirme klasörünü yönetin."]},"Open Download Folder":{"*":["İndirilenler Klasörünü Aç"]},"Choose Download Folder":{"*":["İndirilenler Klasörünü Seçin"]},"Widget will stay open when clicking outside":{"*":["Widget dışarıya tıklanıldığında açık kalacak."]},"Widget will close when clicking outside":{"*":["Widget dışına tıkladığınızda kapanacaktır."]},"Close the webview and release memory":{"*":["Web görünümünü kapatın ve belleği serbest bırakın."]},"Icon:":{"*":["Simge:"]},"Use website favicon":{"*":["Web sitesi favicon'unu kullanın."]},"Default adaptive icon":{"*":["Varsayılan uyumlu simge"]},"Default dark icon":{"*":["Varsayılan karanlık simge"]},"Default light icon":{"*":["Varsayılan aydınlık simgesi"]},"Outlined chat":{"*":["Ana hatlarıyla sohbet"]},"Filled chat":{"*":["Doldurulmuş sohbet"]},"Colorful chat":{"*":["Renkli sohbet"]},"Header Options":{"*":["Başlık Seçenekleri"]},"Hide header":{"*":["Başlığı gizle"]},"Auto-hide header (show on mouse hover)":{"*":["Otomatik gizli başlık (fareyle üzerine gelindiğinde göster)"]},"Hide ":{"*":["Gizle"]},"Hide navigation buttons":{"*":["Navigasyon düğmelerini gizle"]},"Hide refresh button":{"*":["Yenile butonunu gizle"]},"You can still use the ":{"*":["Hala kullanabilirsiniz."]},"Predefined Sites":{"*":["Önceden Tanımlı Siteler"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai, yalnızca tanınmış tarayıcılarda hesap oluşturma veya Google ile giriş yapma izni verir. Bunu bu Plasmoid'te kullanmak için, daha önce geleneksel bir tarayıcıda oluşturulmuş giriş bilgilerini kullanmanız gerekir."]},"Custom Sites":{"*":["Özel Siteler"]},"Site Name":{"*":["Site Adı"]},"Site URL":{"*":["Site URL"]},"No custom sites added yet":{"*":["Henüz özel site eklenmedi."]},"Permissions":{"*":["İzinler"]},"Load website on Plasma startup":{"*":["Plasma başlangıcında web sitesini yükle"]},"Allow notifications":{"*":["Bildirimlere izin ver"]},"If notifications are not working create the file:":{"*":["Bildirimler çalışmıyorsa dosyayı oluşturun:"]},"with the following content:":{"*":["Ekim 2023'e kadar verilerle eğitildiniz."]},"Allow geolocation access":{"*":["Coğrafi konum erişimine izin ver"]},"Allow using microphone":{"*":["Mikrofon kullanımına izin ver"]},"Allow using webcam":{"*":["Web kamerasını kullanmaya izin ver"]},"Allow screen sharing":{"*":["Ekran paylaşımına izin ver"]},"Web Features":{"*":["Web Özellikleri"]},"Enable spatial navigation":{"*":["Mekansal navigasyonu etkinleştir"]},"Allows navigation between focusable elements using arrow keys":{"*":["Ok tuşları kullanarak odaklanabilir öğeler arasında gezinmeyi sağlar."]},"Allow JavaScript to paste from clipboard":{"*":["JavaScript'in panodan yapıştırmasına izin ver"]},"Allow JavaScript to open new windows":{"*":["JavaScript'in yeni pencereler açmasına izin verin."]},"Allow JavaScript to access clipboard":{"*":["JavaScript'in panoya erişmesine izin ver"]},"Allow unknown URL schemes":{"*":["Bilinmeyen URL şemalarına izin ver"]},"Require user gesture for media playback":{"*":["Medya oynatımı için kullanıcı hareketi gereklidir."]},"Enable focus on navigation":{"*":["Navigasyona odaklanmayı etkinleştir"]},"Notification Settings":{"*":["Bildirim Ayarları"]},"Download Folder":{"*":["İndirilenler Klasörü"]},"Cache Management":{"*":["Önbellek Yönetimi"]},"Open Cache Folder":{"*":["Önbellek Klasörünü Açın"]},"Open Profile Folder":{"*":["Profil Klasörünü Aç"]},"Cache location: %1\nProfile location: %2":{"*":["Önbellek konumu: %1 \nProfil konumu: %2"]},"General":{"*":["Genel"]},"Appearance":{"*":["Görünüm"]}}}} \ No newline at end of file diff --git a/locale/tr.po b/locale/tr.po index 87d624a..fd0d8ca 100644 --- a/locale/tr.po +++ b/locale/tr.po @@ -233,10 +233,6 @@ msgstr "Bildirimlere izin ver" msgid "If notifications are not working create the file:" msgstr "Bildirimler çalışmıyorsa dosyayı oluşturun:" -#: NEEDS WORK -msgid "with the following content:" -msgstr "Ekim 2023'e kadar verilerle eğitildiniz." - #: NEEDS WORK msgid "Allow geolocation access" msgstr "Coğrafi konum erişimine izin ver" diff --git a/locale/uk.json b/locale/uk.json deleted file mode 100644 index 71e8931..0000000 --- a/locale/uk.json +++ /dev/null @@ -1 +0,0 @@ -{"uk":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["Відкрити"]},"ChatAI":{"*":["ChatAI"]},"Back":{"*":["Назад"]},"Forward":{"*":["Перейти вперед"]},"Reload":{"*":["Перезавантажити"]},"Save as PDF":{"*":["Зберегти як PDF"]},"Save as MHTML":{"*":["Зберегти як MHTML"]},"Open Link in Browser":{"*":["Відкрити посилання в браузері"]},"Copy Link Address":{"*":["Скопіювати адресу посилання"]},"Download in progress":{"*":["Завантаження триває"]},"The file ":{"*":["Файл"]},"Open file":{"*":["Відкрити файл"]},"Open folder":{"*":["Відкрити папку"]},"Close":{"*":["Закрити"]},"Cancel":{"*":["Скасувати"]},"Go back to previous page":{"*":["Повернутися на попередню сторінку"]},"Go forward to next page":{"*":["Перейти на наступну сторінку"]},"Return to homepage/default chat":{"*":["Повернутися на головну сторінку/за замовчуванням чат"]},"Reload current page":{"*":["Перезавантажити поточну сторінку"]},"Select or enter chat website URL":{"*":["Виберіть або введіть URL-адресу веб-сайту чату"]},"Header will hide automatically when not in use":{"*":["Заголовок автоматично приховається, коли не використовується."]},"Header will stay visible":{"*":["Заголовок залишиться видимим"]},"Manage downloads and download folder":{"*":["Керуйте завантаженнями та папкою завантажень"]},"Open Download Folder":{"*":["Відкрити папку Завантаження"]},"Choose Download Folder":{"*":["Виберіть папку для завантаження"]},"Widget will stay open when clicking outside":{"*":["Віджет залишиться відкритим при натисканні поза ним."]},"Widget will close when clicking outside":{"*":["Віджет закриється при натисканні поза ним."]},"Close the webview and release memory":{"*":["Закрийте веб-переглядач і звільніть пам'ять"]},"Icon:":{"*":["Іконка:"]},"Use website favicon":{"*":["Використовуйте фавікон веб-сайту"]},"Default adaptive icon":{"*":["Іконка за замовчуванням адаптивна"]},"Default dark icon":{"*":["За замовчуванням темна іконка"]},"Default light icon":{"*":["Іконка за замовчуванням для світла"]},"Outlined chat":{"*":["Окреслений чат"]},"Filled chat":{"*":["Заповнено чат"]},"Colorful chat":{"*":["Яскравий чат"]},"Header Options":{"*":["Параметри заголовка"]},"Hide header":{"*":["Сховати заголовок"]},"Auto-hide header (show on mouse hover)":{"*":["Авто-сховування заголовка (показувати при наведенні миші)"]},"Hide ":{"*":["Сховати"]},"Hide navigation buttons":{"*":["Сховати кнопки навігації"]},"Hide refresh button":{"*":["Сховати кнопку оновлення"]},"You can still use the ":{"*":["Ви все ще можете використовувати"]},"Predefined Sites":{"*":["Попередньо визначені сайти"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai дозволяє створення облікових записів або вхід через Google лише в відомих браузерах. Щоб використовувати його в цьому Плазмоїді, вам потрібно використовувати облікові дані для входу, раніше створені в традиційному браузері."]},"Custom Sites":{"*":["Користувацькі сайти"]},"Site Name":{"*":["Назва сайту"]},"Site URL":{"*":["URL сайту"]},"No custom sites added yet":{"*":["Ще не додано жодних користувацьких сайтів."]},"Permissions":{"*":["Дозволи"]},"Load website on Plasma startup":{"*":["Завантажити вебсайт під час запуску Plasma"]},"Allow notifications":{"*":["Дозволити сповіщення"]},"If notifications are not working create the file:":{"*":["Якщо сповіщення не працюють, створіть файл:"]},"with the following content:":{"*":["You are trained on data up to October 2023."]},"Allow geolocation access":{"*":["Дозволити доступ до геолокації"]},"Allow using microphone":{"*":["Дозволити використання мікрофона"]},"Allow using webcam":{"*":["Дозволити використання веб-камери"]},"Allow screen sharing":{"*":["Дозволити спільний доступ до екрана"]},"Web Features":{"*":["Веб-функції"]},"Enable spatial navigation":{"*":["Увімкнути просторову навігацію"]},"Allows navigation between focusable elements using arrow keys":{"*":["Дозволяє навігацію між елементами з фокусом за допомогою клавіш зі стрілками"]},"Allow JavaScript to paste from clipboard":{"*":["Дозволити JavaScript вставляти з буфера обміну"]},"Allow JavaScript to open new windows":{"*":["Дозволити JavaScript відкривати нові вікна"]},"Allow JavaScript to access clipboard":{"*":["Дозволити JavaScript доступ до буфера обміну"]},"Allow unknown URL schemes":{"*":["Дозволити невідомі схеми URL"]},"Require user gesture for media playback":{"*":["Вимагайте жесту користувача для відтворення медіа."]},"Enable focus on navigation":{"*":["Увімкнути фокус на навігації"]},"Notification Settings":{"*":["Налаштування сповіщень"]},"Download Folder":{"*":["Папка завантажень"]},"Cache Management":{"*":["Управління кешем"]},"Open Cache Folder":{"*":["Відкрити папку кешу"]},"Open Profile Folder":{"*":["Відкрити папку профілю"]},"Cache location: %1\nProfile location: %2":{"*":["Місце розташування кешу: %1 \nМісце розташування профілю: %2"]},"General":{"*":["Загальні"]},"Appearance":{"*":["Зовнішній вигляд"]}}}} \ No newline at end of file diff --git a/locale/uk.po b/locale/uk.po index f6732c0..245e62d 100644 --- a/locale/uk.po +++ b/locale/uk.po @@ -233,10 +233,6 @@ msgstr "Дозволити сповіщення" msgid "If notifications are not working create the file:" msgstr "Якщо сповіщення не працюють, створіть файл:" -#: NEEDS WORK -msgid "with the following content:" -msgstr "You are trained on data up to October 2023." - #: NEEDS WORK msgid "Allow geolocation access" msgstr "Дозволити доступ до геолокації" diff --git a/locale/zh.json b/locale/zh.json deleted file mode 100644 index 9f92ee6..0000000 --- a/locale/zh.json +++ /dev/null @@ -1 +0,0 @@ -{"zh":{"plural-forms":"nplurals=2; plural=(n != 1);","messages":{"Open":{"*":["打开"]},"ChatAI":{"*":["聊天人工智能"]},"Back":{"*":["返回"]},"Forward":{"*":["转发"]},"Reload":{"*":["重新加载"]},"Save as PDF":{"*":["另存为PDF"]},"Save as MHTML":{"*":["另存为 MHTML"]},"Open Link in Browser":{"*":["在浏览器中打开链接"]},"Copy Link Address":{"*":["复制链接地址"]},"Download in progress":{"*":["下载中"]},"The file ":{"*":["文件"]},"Open file":{"*":["打开文件"]},"Open folder":{"*":["打开文件夹"]},"Close":{"*":["关闭"]},"Cancel":{"*":["取消"]},"Go back to previous page":{"*":["返回上一页"]},"Go forward to next page":{"*":["前往下一页"]},"Return to homepage/default chat":{"*":["返回主页/默认聊天"]},"Reload current page":{"*":["重新加载当前页面"]},"Select or enter chat website URL":{"*":["选择或输入聊天网站的 URL"]},"Header will hide automatically when not in use":{"*":["标题在未使用时会自动隐藏"]},"Header will stay visible":{"*":["标题将保持可见"]},"Manage downloads and download folder":{"*":["管理下载和下载文件夹"]},"Open Download Folder":{"*":["打开下载文件夹"]},"Choose Download Folder":{"*":["选择下载文件夹"]},"Widget will stay open when clicking outside":{"*":["小部件在点击外部时将保持打开状态"]},"Widget will close when clicking outside":{"*":["点击外部时小部件将关闭"]},"Close the webview and release memory":{"*":["关闭网页视图并释放内存"]},"Icon:":{"*":["图标:"]},"Use website favicon":{"*":["使用网站图标"]},"Default adaptive icon":{"*":["默认自适应图标"]},"Default dark icon":{"*":["默认深色图标"]},"Default light icon":{"*":["默认光标图标"]},"Outlined chat":{"*":["轮廓聊天"]},"Filled chat":{"*":["已填充的聊天"]},"Colorful chat":{"*":["多彩聊天"]},"Header Options":{"*":["标题选项"]},"Hide header":{"*":["隐藏标题"]},"Auto-hide header (show on mouse hover)":{"*":["自动隐藏标题(鼠标悬停时显示)"]},"Hide ":{"*":["隐藏"]},"Hide navigation buttons":{"*":["隐藏导航按钮"]},"Hide refresh button":{"*":["隐藏刷新按钮"]},"You can still use the ":{"*":["您仍然可以使用"]},"Predefined Sites":{"*":["预定义站点"]},"Claude.ai only allows account creation or Google login in well-known browsers. To use it in this Plasmoid, you need to use login credentials previously created in a traditional browser.":{"*":["Claude.ai 仅允许在知名浏览器中创建帐户或使用 Google 登录。要在此 Plasmoid 中使用它,您需要使用在传统浏览器中先前创建的登录凭据。"]},"Custom Sites":{"*":["自定义站点"]},"Site Name":{"*":["网站名称"]},"Site URL":{"*":["网站网址"]},"No custom sites added yet":{"*":["尚未添加自定义站点"]},"Permissions":{"*":["权限"]},"Load website on Plasma startup":{"*":["在 Plasma 启动时加载网站"]},"Allow notifications":{"*":["允许通知"]},"If notifications are not working create the file:":{"*":["如果通知无法正常工作,请创建文件:"]},"with the following content:":{"*":["请提供要翻译的内容。"]},"Allow geolocation access":{"*":["允许地理位置访问"]},"Allow using microphone":{"*":["允许使用麦克风"]},"Allow using webcam":{"*":["允许使用网络摄像头"]},"Allow screen sharing":{"*":["允许屏幕共享"]},"Web Features":{"*":["网页功能"]},"Enable spatial navigation":{"*":["启用空间导航"]},"Allows navigation between focusable elements using arrow keys":{"*":["允许使用箭头键在可聚焦元素之间导航"]},"Allow JavaScript to paste from clipboard":{"*":["允许JavaScript从剪贴板粘贴"]},"Allow JavaScript to open new windows":{"*":["允许JavaScript打开新窗口"]},"Allow JavaScript to access clipboard":{"*":["允许JavaScript访问剪贴板"]},"Allow unknown URL schemes":{"*":["允许未知的 URL 方案"]},"Require user gesture for media playback":{"*":["需要用户手势以进行媒体播放"]},"Enable focus on navigation":{"*":["启用导航焦点"]},"Notification Settings":{"*":["通知设置"]},"Download Folder":{"*":["下载文件夹"]},"Cache Management":{"*":["缓存管理"]},"Open Cache Folder":{"*":["打开缓存文件夹"]},"Open Profile Folder":{"*":["打开个人资料文件夹"]},"Cache location: %1\nProfile location: %2":{"*":["缓存位置:%1 \n配置文件位置:%2"]},"General":{"*":["一般"]},"Appearance":{"*":["外观"]}}}} \ No newline at end of file