i18n: generate desktop entries with xdgen
This commit is contained in:
parent
28c3510671
commit
d1224aaa5e
50 changed files with 1543 additions and 769 deletions
38
Cargo.lock
generated
38
Cargo.lock
generated
|
|
@ -1738,6 +1738,7 @@ dependencies = [
|
||||||
"upower_dbus",
|
"upower_dbus",
|
||||||
"url",
|
"url",
|
||||||
"which",
|
"which",
|
||||||
|
"xdgen",
|
||||||
"xkb-data",
|
"xkb-data",
|
||||||
"xkeysym",
|
"xkeysym",
|
||||||
"zbus 5.13.2",
|
"zbus 5.13.2",
|
||||||
|
|
@ -2812,6 +2813,16 @@ dependencies = [
|
||||||
"xdg",
|
"xdg",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "freedesktop_entry_parser"
|
||||||
|
version = "2.0.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "fc6d3a3635983a889f065aa9ce760384713f23a9b4a04f696f86c39a5d7a6a5a"
|
||||||
|
dependencies = [
|
||||||
|
"indexmap 2.13.0",
|
||||||
|
"nom 8.0.0",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "fs-err"
|
name = "fs-err"
|
||||||
version = "3.3.0"
|
version = "3.3.0"
|
||||||
|
|
@ -9356,6 +9367,18 @@ dependencies = [
|
||||||
"wayland-protocols-wlr",
|
"wayland-protocols-wlr",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "xdgen"
|
||||||
|
version = "0.1.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "25af88f104f06d5aeb80c77e5eb85e6f6f355f86f6e34307a14befd716efe4bf"
|
||||||
|
dependencies = [
|
||||||
|
"fluent",
|
||||||
|
"freedesktop_entry_parser",
|
||||||
|
"unic-langid",
|
||||||
|
"xmltree",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "xkb-data"
|
name = "xkb-data"
|
||||||
version = "0.2.2"
|
version = "0.2.2"
|
||||||
|
|
@ -9421,12 +9444,27 @@ dependencies = [
|
||||||
"bytemuck",
|
"bytemuck",
|
||||||
]
|
]
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "xml"
|
||||||
|
version = "1.2.1"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "b8aa498d22c9bbaf482329839bc5620c46be275a19a812e9a22a2b07529a642a"
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "xml-rs"
|
name = "xml-rs"
|
||||||
version = "0.8.28"
|
version = "0.8.28"
|
||||||
source = "registry+https://github.com/rust-lang/crates.io-index"
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
|
checksum = "3ae8337f8a065cfc972643663ea4279e04e7256de865aa66fe25cec5fb912d3f"
|
||||||
|
|
||||||
|
[[package]]
|
||||||
|
name = "xmltree"
|
||||||
|
version = "0.12.0"
|
||||||
|
source = "registry+https://github.com/rust-lang/crates.io-index"
|
||||||
|
checksum = "cbc04313cab124e498ab1724e739720807b6dc405b9ed0edc5860164d2e4ff70"
|
||||||
|
dependencies = [
|
||||||
|
"xml",
|
||||||
|
]
|
||||||
|
|
||||||
[[package]]
|
[[package]]
|
||||||
name = "xmlwriter"
|
name = "xmlwriter"
|
||||||
version = "0.1.0"
|
version = "0.1.0"
|
||||||
|
|
|
||||||
|
|
@ -5,6 +5,9 @@ edition = "2024"
|
||||||
license = "GPL-3.0-only"
|
license = "GPL-3.0-only"
|
||||||
publish = false
|
publish = false
|
||||||
|
|
||||||
|
[build-dependencies]
|
||||||
|
xdgen = "0.1"
|
||||||
|
|
||||||
[dependencies]
|
[dependencies]
|
||||||
accounts-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
|
accounts-zbus = { git = "https://github.com/pop-os/dbus-settings-bindings", optional = true }
|
||||||
anyhow = "1.0"
|
anyhow = "1.0"
|
||||||
|
|
|
||||||
223
cosmic-settings/build.rs
Normal file
223
cosmic-settings/build.rs
Normal file
|
|
@ -0,0 +1,223 @@
|
||||||
|
use std::{env, fs, path::PathBuf};
|
||||||
|
use xdgen::{App, Context, FluentString};
|
||||||
|
|
||||||
|
fn main() {
|
||||||
|
let ctx = Context::new("../i18n", env::var("CARGO_PKG_NAME").unwrap()).unwrap();
|
||||||
|
|
||||||
|
[
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings",
|
||||||
|
"app",
|
||||||
|
"xdg-entry-comment",
|
||||||
|
"xdg-entry-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.About",
|
||||||
|
"xdg-entry-about",
|
||||||
|
"xdg-entry-about-comment",
|
||||||
|
"xdg-entry-about-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Accessibility",
|
||||||
|
"xdg-entry-ally",
|
||||||
|
"xdg-entry-a11y-comment",
|
||||||
|
"xdg-entry-a11y-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Appearance",
|
||||||
|
"appearance",
|
||||||
|
"xdg-entry-appearance-comment",
|
||||||
|
"xdg-entry-appearance-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Applications",
|
||||||
|
"xdg-entry-applications",
|
||||||
|
"xdg-entry-applications-comment",
|
||||||
|
"xdg-entry-applications-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Bluetooth",
|
||||||
|
"bluetooth",
|
||||||
|
"xdg-entry-bluetooth-comment",
|
||||||
|
"xdg-entry-bluetooth-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.DateTime",
|
||||||
|
"xdg-entry-date-time",
|
||||||
|
"xdg-entry-date-time-comment",
|
||||||
|
"xdg-entry-date-time-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.DefaultApps",
|
||||||
|
"xdg-entry-default-apps",
|
||||||
|
"xdg-entry-default-apps-comment",
|
||||||
|
"xdg-entry-default-apps-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Desktop",
|
||||||
|
"xdg-entry-desktop",
|
||||||
|
"xdg-entry-desktop-comment",
|
||||||
|
"xdg-entry-desktop-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Displays",
|
||||||
|
"xdg-entry-displays",
|
||||||
|
"xdg-entry-displays-comment",
|
||||||
|
"xdg-entry-displays-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Dock",
|
||||||
|
"xdg-entry-dock",
|
||||||
|
"xdg-entry-dock-comment",
|
||||||
|
"xdg-entry-dock-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Input",
|
||||||
|
"xdg-entry-input",
|
||||||
|
"xdg-entry-input-comment",
|
||||||
|
"xdg-entry-input-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Keyboard",
|
||||||
|
"xdg-entry-keyboard",
|
||||||
|
"xdg-entry-keyboard-comment",
|
||||||
|
"xdg-entry-keyboard-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Mouse",
|
||||||
|
"xdg-entry-mouse",
|
||||||
|
"xdg-entry-mouse-comment",
|
||||||
|
"xdg-entry-mouse-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Network",
|
||||||
|
"xdg-entry-network",
|
||||||
|
"xdg-entry-network-comment",
|
||||||
|
"xdg-entry-network-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Notifications",
|
||||||
|
"xdg-entry-notifications",
|
||||||
|
"xdg-entry-notifications-comment",
|
||||||
|
"xdg-entry-notifications-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Panel",
|
||||||
|
"xdg-entry-panel",
|
||||||
|
"xdg-entry-panel-comment",
|
||||||
|
"xdg-entry-panel-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Power",
|
||||||
|
"xdg-entry-power",
|
||||||
|
"xdg-entry-power-comment",
|
||||||
|
"xdg-entry-power-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.RegionLanguage",
|
||||||
|
"xdg-entry-region-language",
|
||||||
|
"xdg-entry-region-language-comment",
|
||||||
|
"xdg-entry-region-language-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Sound",
|
||||||
|
"xdg-entry-sound",
|
||||||
|
"xdg-entry-sound-comment",
|
||||||
|
"xdg-entry-sound-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.StartupApps",
|
||||||
|
"xdg-entry-startup-apps",
|
||||||
|
"xdg-entry-startup-apps-comment",
|
||||||
|
"xdg-entry-startup-apps-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.System",
|
||||||
|
"xdg-entry-system",
|
||||||
|
"xdg-entry-system-comment",
|
||||||
|
"xdg-entry-system-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Time",
|
||||||
|
"xdg-entry-time-language",
|
||||||
|
"xdg-entry-time-language-comment",
|
||||||
|
"xdg-entry-time-language-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Touchpad",
|
||||||
|
"xdg-entry-touchpad",
|
||||||
|
"xdg-entry-touchpad-comment",
|
||||||
|
"xdg-entry-touchpad-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Users",
|
||||||
|
"xdg-entry-users",
|
||||||
|
"xdg-entry-users-comment",
|
||||||
|
"xdg-entry-users-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Vpn",
|
||||||
|
"vpn",
|
||||||
|
"xdg-entry-vpn-comment",
|
||||||
|
"xdg-entry-vpn-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Wallpaper",
|
||||||
|
"xdg-entry-wallpaper",
|
||||||
|
"xdg-entry-wallpaper-comment",
|
||||||
|
"xdg-entry-wallpaper-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.WindowManagement",
|
||||||
|
"xdg-entry-window-management",
|
||||||
|
"xdg-entry-window-management-comment",
|
||||||
|
"xdg-entry-window-management-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Wired",
|
||||||
|
"xdg-entry-wired",
|
||||||
|
"xdg-entry-wired-comment",
|
||||||
|
"xdg-entry-wired-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Wireless",
|
||||||
|
"xdg-entry-wireless",
|
||||||
|
"xdg-entry-wireless-comment",
|
||||||
|
"xdg-entry-wireless-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.Workspaces",
|
||||||
|
"xdg-entry-workspaces",
|
||||||
|
"xdg-entry-workspaces-comment",
|
||||||
|
"xdg-entry-workspaces-keywords",
|
||||||
|
),
|
||||||
|
(
|
||||||
|
"com.system76.CosmicSettings.LegacyApplications",
|
||||||
|
"xdg-entry-x11-applications",
|
||||||
|
"xdg-entry-x11-applications-comment",
|
||||||
|
"xdg-entry-x11-applications-keywords",
|
||||||
|
),
|
||||||
|
]
|
||||||
|
.into_iter()
|
||||||
|
.map(|(id, name, comment, keywords)| {
|
||||||
|
let app = App::new(FluentString(name))
|
||||||
|
.comment(FluentString(comment))
|
||||||
|
.keywords(FluentString(keywords));
|
||||||
|
|
||||||
|
let output = PathBuf::from("../target/xdgen");
|
||||||
|
|
||||||
|
(id, app, output)
|
||||||
|
})
|
||||||
|
.for_each(|(id, app, output)| {
|
||||||
|
fs::create_dir_all(&output).unwrap();
|
||||||
|
fs::write(
|
||||||
|
output.join(format!("{}.desktop", id)),
|
||||||
|
app.expand_desktop(
|
||||||
|
dbg!(format!("../resources/applications/{}.desktop", id)),
|
||||||
|
&ctx,
|
||||||
|
)
|
||||||
|
.unwrap(),
|
||||||
|
)
|
||||||
|
.unwrap();
|
||||||
|
});
|
||||||
|
}
|
||||||
33
i18n/af/cosmic_settings.ftl
vendored
33
i18n/af/cosmic_settings.ftl
vendored
|
|
@ -6,6 +6,37 @@ unknown = Onbekend
|
||||||
|
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
xdg-entry-about = Oor
|
||||||
|
xdg-entry-about-comment = Toestelnaam, hardeware-inligtings, standaardinstellings van die bedryfstelsel.
|
||||||
|
xdg-entry-about-keywords = COSMIC;Oor
|
||||||
|
|
||||||
|
xdg-entry-a11y = Toeganklikhede
|
||||||
|
xdg-entry-a11y-keywords = COSMIC;Toeganklikhede;A11y;Screen;Reader;Magnifier;Contrast;Color;
|
||||||
|
|
||||||
|
xdg-entry-appearance = Weergawe
|
||||||
|
xdg-entry-appearance-comment = Aksentkleure en temas.
|
||||||
|
xdg-entry-appearance-keywords = COSMIC;Weergawe;Aksentkleure;Color;Icon;Font;Temas
|
||||||
|
|
||||||
|
xdg-entry-applications = Toepassings
|
||||||
|
|
||||||
|
xdg-entry-bluetooth-comment = Bestuur Bluetooth-toestelle
|
||||||
|
|
||||||
|
xdg-entry-date-time = Datum en tyd
|
||||||
|
xdg-entry-date-time-comment = Tydsone, outomatiese klokinstellings en tydformatering.
|
||||||
|
|
||||||
|
xdg-entry-default-apps = Standaard toepassings
|
||||||
|
xdg-entry-default-apps-comment = Default web browser, mail client, file browser, and other applications.
|
||||||
|
|
||||||
|
xdg-entry-displays = Vertoonskerme
|
||||||
|
xdg-entry-displays-comment = Vertoonopsies, grafiese modusse en naglig.
|
||||||
|
xdg-entry-displays-keywords = COSMIC;Vertoonskerme;
|
||||||
|
|
||||||
|
xdg-entry-dock = Dock
|
||||||
|
xdg-entry-dock-comment = 'n Opsionele balk vir programme en applets.
|
||||||
|
|
||||||
|
xdg-entry-input = Invoertoestelle
|
||||||
|
xdg-entry-input-comment = Sleutelbord, muis, ens.
|
||||||
|
|
||||||
## Network & Wireless
|
## Network & Wireless
|
||||||
|
|
||||||
connections-and-profiles = { $variant ->
|
connections-and-profiles = { $variant ->
|
||||||
|
|
@ -176,5 +207,3 @@ color-filter = Kleurfiltertipe
|
||||||
.deuteranopia = Groen/Rooi (groenswakheid, Deuteranopie)
|
.deuteranopia = Groen/Rooi (groenswakheid, Deuteranopie)
|
||||||
.protanopia = Rooi/Groen (rooiswakheid, Protanopie)
|
.protanopia = Rooi/Groen (rooiswakheid, Protanopie)
|
||||||
.tritanopia = Blou/Geel (bluoswakheid, Tritanopie)
|
.tritanopia = Blou/Geel (bluoswakheid, Tritanopie)
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
99
i18n/ar/cosmic_settings.ftl
vendored
99
i18n/ar/cosmic_settings.ftl
vendored
|
|
@ -4,6 +4,105 @@ ok = حسنًا
|
||||||
unknown = مجهول
|
unknown = مجهول
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
xdg-entry-about = عن
|
||||||
|
xdg-entry-about-comment = اسم الجهاز، معلومات العتاد، إعدادات نظام التشغيل المبدئية.
|
||||||
|
|
||||||
|
xdg-entry-a11y = الإتاحة
|
||||||
|
xdg-entry-a11y-comment = إعدادات الإتاحة
|
||||||
|
|
||||||
|
xdg-entry-appearance = المظهر
|
||||||
|
xdg-entry-appearance-comment = ألوان التمييز والسمات.
|
||||||
|
|
||||||
|
xdg-entry-applications = التطبيقات
|
||||||
|
|
||||||
|
xdg-entry-bluetooth = البلوتوث
|
||||||
|
xdg-entry-bluetooth-comment = أدر أجهزة البلوتوث
|
||||||
|
|
||||||
|
xdg-entry-date-time = التاريخ والوقت
|
||||||
|
xdg-entry-date-time-comment = المنطقة الزمنية وإعدادات الساعة التلقائية وتنسيق الوقت.
|
||||||
|
|
||||||
|
xdg-entry-default-apps = التطبيقات المبدئية
|
||||||
|
xdg-entry-default-apps-comment = متصفح الويب المبدئي، عميل البريد، متصفح الملفات، والتطبيقات الأخرى.
|
||||||
|
|
||||||
|
xdg-entry-desktop = سطح المكتب
|
||||||
|
xdg-entry-desktop-comment = Wallpaper, appearance, panel, dock, window management and workspace settings.
|
||||||
|
|
||||||
|
xdg-entry-displays = شاشات العرض
|
||||||
|
xdg-entry-displays-comment = خيارات العرض، وأنماط الرسوميات، والوضع الليلي.
|
||||||
|
|
||||||
|
xdg-entry-dock = الإرساء
|
||||||
|
xdg-entry-dock-comment = شريط اختياري للتطبيقات والبريمجات.
|
||||||
|
|
||||||
|
xdg-entry-input = أجهزة الإدخال
|
||||||
|
xdg-entry-input-comment = لوحة المفاتيح، المؤشر، إلخ.
|
||||||
|
|
||||||
|
xdg-entry-keyboard = لوحة المفاتيح
|
||||||
|
xdg-entry-keyboard-comment = مصادر الإدخال، التبديل، إدخال الأحرف الخاصة، الاختصارات.
|
||||||
|
|
||||||
|
xdg-entry-mouse = الفأرة
|
||||||
|
xdg-entry-mouse-comment = سرعة الفأرة، والتسارع، والتمرير الطبيعي.
|
||||||
|
|
||||||
|
xdg-entry-network = الشبكة والاتصالات اللاسلكية
|
||||||
|
xdg-entry-network-comment = أدر اتصالات الشبكة
|
||||||
|
|
||||||
|
xdg-entry-notifications = الإشعارات
|
||||||
|
xdg-entry-notifications-comment = عدم الإزعاج، إشعارات شاشة القفل، وإعدادات لكل تطبيق.
|
||||||
|
|
||||||
|
xdg-entry-panel = اللوحة
|
||||||
|
xdg-entry-panel-comment = شريط النظام الأساسي للقوائم والبريمجات.
|
||||||
|
|
||||||
|
xdg-entry-power = الطاقة والبطارية
|
||||||
|
xdg-entry-power-comment = أوضاع الطاقة وخيارات توفير الطاقة.
|
||||||
|
|
||||||
|
xdg-entry-region-language = اللغة والمنطقة
|
||||||
|
xdg-entry-region-language-comment = نسق التواريخ والأوقات والأرقام بناءً على منطقتك.
|
||||||
|
|
||||||
|
xdg-entry-sound = الصوت
|
||||||
|
xdg-entry-sound-comment = إعدادات الصوت للأجهزة والتنبيهات والتطبيقات.
|
||||||
|
|
||||||
|
xdg-entry-startup-apps = تطبيقات بدء التشغيل
|
||||||
|
xdg-entry-startup-apps-comment = اضبط التطبيقات التي تعمل عند الولوج.
|
||||||
|
|
||||||
|
xdg-entry-system = النظام والحسابات
|
||||||
|
xdg-entry-system-comment = System information, accounts, and firmware updates.
|
||||||
|
|
||||||
|
xdg-entry-time-language = الوقت واللغة
|
||||||
|
xdg-entry-time-language-comment = Manage system date, time, region, and language.
|
||||||
|
|
||||||
|
xdg-entry-touchpad = لوحة اللمس
|
||||||
|
xdg-entry-touchpad-comment = سرعة لوحة اللمس، خيارات النقر، الإيماءات.
|
||||||
|
|
||||||
|
xdg-entry-users = المستخدمين
|
||||||
|
xdg-entry-users-comment = الاستيثاق وحسابات المستخدمين.
|
||||||
|
xdg-entry-users-keywords = COSMIC;User;Account;
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = اتصالات VPN وملفات تعريف الاتصال.
|
||||||
|
xdg-entry-vpn-keywords = COSMIC;VPN;Network;Connection;OpenVPN;OpenConnect;
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = Wallpaper
|
||||||
|
xdg-entry-wallpaper-comment = Wallpaper images, colors, and slideshow options.
|
||||||
|
xdg-entry-wallpaper-keywords = COSMIC;Wallpaper;Background;Slideshow;
|
||||||
|
|
||||||
|
xdg-entry-window-management = Window management
|
||||||
|
xdg-entry-window-management-comment = Super key action, window control options, and additional window tiling options.
|
||||||
|
xdg-entry-window-management-keywords = COSMIC;Window;Management;Tiling;Super;Key;
|
||||||
|
|
||||||
|
xdg-entry-wired = Wired
|
||||||
|
xdg-entry-wired-comment = Wired connections and connection profiles.
|
||||||
|
xdg-entry-wired-keywords = COSMIC;Wired;LAN;Network;Connection;
|
||||||
|
|
||||||
|
xdg-entry-wireless = Wi-Fi
|
||||||
|
xdg-entry-wireless-comment = Wi-Fi connections and connection profiles.
|
||||||
|
xdg-entry-wireless-keywords = COSMIC;WiFi;Wi-Fi;Network;Connection;
|
||||||
|
|
||||||
|
xdg-entry-workspaces = Workspaces
|
||||||
|
xdg-entry-workspaces-comment = Workspace orientation, overview, and multi-monitor behavior.
|
||||||
|
xdg-entry-workspaces-keywords = COSMIC;Workspace;Orientation;Overview;Monitor;
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = توافق تطبيقات اكس11
|
||||||
|
xdg-entry-x11-applications-comment = توسيع نطاق تطبيق نظام النوافذ اكس11 والاختصارات العامة.
|
||||||
|
xdg-entry-x11-applications-keywords = COSMIC;X11;Application;Compatibility;
|
||||||
|
|
||||||
## Network & Wireless
|
## Network & Wireless
|
||||||
|
|
||||||
connections-and-profiles =
|
connections-and-profiles =
|
||||||
|
|
|
||||||
89
i18n/cs/cosmic_settings.ftl
vendored
89
i18n/cs/cosmic_settings.ftl
vendored
|
|
@ -2,6 +2,95 @@ app = Nastavení COSMIC
|
||||||
unknown = Neznámé
|
unknown = Neznámé
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
## Freedesktop desktop entries
|
||||||
|
|
||||||
|
xdg-entry-about = O systému
|
||||||
|
xdg-entry-about-comment = Název zařízení, informace o hardwaru, výchozí nastavení operačního systému
|
||||||
|
|
||||||
|
xdg-entry-a11y = Přístupnost
|
||||||
|
xdg-entry-a11y-comment = Nastavení přístupnosti
|
||||||
|
|
||||||
|
xdg-entry-appearance = Vzhled
|
||||||
|
xdg-entry-appearance-comment = Barvy zvýraznění a motivy
|
||||||
|
|
||||||
|
xdg-entry-applications = Aplikace
|
||||||
|
|
||||||
|
xdg-entry-bluetooth-comment = Správa Bluetooth zařízení
|
||||||
|
|
||||||
|
xdg-entry-date-time = Datum a čas
|
||||||
|
xdg-entry-date-time-comment = Časová zóna, automatické nastavení hodin a formátování času
|
||||||
|
|
||||||
|
xdg-entry-default-apps = Výchozí aplikace
|
||||||
|
xdg-entry-default-apps-comment = Výchozí webový prohlížeč, poštovní klient, prohlížeč souborů a další aplikace
|
||||||
|
|
||||||
|
xdg-entry-desktop = Plocha
|
||||||
|
xdg-entry-desktop-comment = Nastavení pracovní plochy, vzhledu a chování oken
|
||||||
|
|
||||||
|
xdg-entry-displays = Obrazovky
|
||||||
|
xdg-entry-displays-comment = Možnosti obrazovek, grafické režimy a noční světlo
|
||||||
|
|
||||||
|
xdg-entry-dock = Dok
|
||||||
|
xdg-entry-dock-comment = Volitelná lišta pro aplikace a applety
|
||||||
|
|
||||||
|
xdg-entry-input = Vstupní zařízení
|
||||||
|
xdg-entry-input-comment = Klávesnice, kurzor a další
|
||||||
|
|
||||||
|
xdg-entry-keyboard = Klávesnice
|
||||||
|
xdg-entry-keyboard-comment = Vstupní zdroje, přepínání, vkládání speciálních znaků, zkratky
|
||||||
|
|
||||||
|
xdg-entry-mouse = Myš
|
||||||
|
xdg-entry-mouse-comment = Rychlost myši, zrychlení, přirozené rolování
|
||||||
|
|
||||||
|
xdg-entry-network = Síť a Wi-Fi
|
||||||
|
xdg-entry-network-comment = Správa síťových připojení
|
||||||
|
|
||||||
|
xdg-entry-notifications = Oznámení
|
||||||
|
xdg-entry-notifications-comment = Nerušit, oznámení na zamykací obrazovce a nastavení podle aplikace
|
||||||
|
|
||||||
|
xdg-entry-panel-comment = Hlavní systémová lišta pro menu a applety
|
||||||
|
|
||||||
|
xdg-entry-power = Napájení a baterie
|
||||||
|
xdg-entry-power-comment = Režimy napájení a možnosti úspory energie
|
||||||
|
|
||||||
|
xdg-entry-region-language = Region a jazyk
|
||||||
|
xdg-entry-region-language-comment = Formátujte datumy, časy a čísla podle vašeho regionu
|
||||||
|
|
||||||
|
xdg-entry-sound = Zvuk
|
||||||
|
xdg-entry-sound-comment = Nastavení zvuku pro zařízení, upozornění a aplikace
|
||||||
|
|
||||||
|
xdg-entry-startup-apps = Automaticky spouštěné aplikace
|
||||||
|
xdg-entry-startup-apps-comment = Správa aplikací, které se spouštějí při přihlášení
|
||||||
|
|
||||||
|
xdg-entry-system = Systém a účty
|
||||||
|
xdg-entry-system-comment = Informace o systému, uživatelé a firmware
|
||||||
|
|
||||||
|
xdg-entry-time-language = Čas a jazyk
|
||||||
|
xdg-entry-time-language-comment = Nastavení času a jazyka
|
||||||
|
|
||||||
|
xdg-entry-touchpad-comment = Rychlost touchpadu, nastavení klikání, gesta
|
||||||
|
|
||||||
|
xdg-entry-users = Uživatelé
|
||||||
|
xdg-entry-users-comment = Ověření a uživatelské účty
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = VPN připojení a profily
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = Tapeta
|
||||||
|
xdg-entry-wallpaper-comment = Obrázky tapet, barvy a možnosti prezentace
|
||||||
|
|
||||||
|
xdg-entry-window-management = Správa oken
|
||||||
|
xdg-entry-window-management-comment = Akce klávesy Super, možnosti ovládání oken a další možnosti dlaždicového režimu oken
|
||||||
|
|
||||||
|
xdg-entry-wired = Drátové
|
||||||
|
xdg-entry-wired-comment = Drátové připojení a profily
|
||||||
|
|
||||||
|
xdg-entry-wireless-comment = Wi-Fi připojení a profily
|
||||||
|
|
||||||
|
xdg-entry-workspaces = Pracovní plochy
|
||||||
|
xdg-entry-workspaces-comment = Chování a orientace pracovních ploch
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = Kompatibilita aplikací X11
|
||||||
|
xdg-entry-x11-applications-comment = Měřítko a globální klávesové zkratky aplikací využívajících okenní systém X11
|
||||||
|
|
||||||
## Desktop
|
## Desktop
|
||||||
|
|
||||||
desktop = Plocha
|
desktop = Plocha
|
||||||
|
|
|
||||||
127
i18n/en/cosmic_settings.ftl
vendored
127
i18n/en/cosmic_settings.ftl
vendored
|
|
@ -6,6 +6,133 @@ unknown = Unknown
|
||||||
|
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
## Freedesktop desktop entries
|
||||||
|
|
||||||
|
xdg-entry-comment = Settings application for COSMIC.
|
||||||
|
xdg-entry-keywords = COSMIC;Settings;
|
||||||
|
|
||||||
|
xdg-entry-about = About
|
||||||
|
xdg-entry-about-comment = Device name, hardware information, operating system defaults.
|
||||||
|
xdg-entry-about-keywords = COSMIC;About
|
||||||
|
|
||||||
|
xdg-entry-a11y = Accessibility
|
||||||
|
xdg-entry-a11y-comment = Screen reader, magnifier, high contrast, and color filters.
|
||||||
|
xdg-entry-a11y-keywords = COSMIC;Accessibility;A11y;Screen;Reader;Magnifier;Contrast;Color;
|
||||||
|
|
||||||
|
xdg-entry-appearance = Appearance
|
||||||
|
xdg-entry-appearance-comment = Accent colors and theming.
|
||||||
|
xdg-entry-appearance-keywords = COSMIC;Accent;Color;Icon;Font;Theme
|
||||||
|
|
||||||
|
xdg-entry-applications = Applications
|
||||||
|
xdg-entry-applications-comment = Default applications, startup applications, and X11 application compatibility settings.
|
||||||
|
xdg-entry-applications-keywords = COSMIC;Default;Application;Startup;X11;Compatibility
|
||||||
|
|
||||||
|
xdg-entry-bluetooth-comment = Manage Bluetooth devices.
|
||||||
|
xdg-entry-bluetooth-keywords = COSMIC;Bluetooth;
|
||||||
|
|
||||||
|
xdg-entry-date-time = Date & Time
|
||||||
|
xdg-entry-date-time-comment = Time zone, automatic clock settings, and time formatting.
|
||||||
|
xdg-entry-date-time-keywords = COSMIC;Time;Zone;
|
||||||
|
|
||||||
|
xdg-entry-default-apps = Default Applications
|
||||||
|
xdg-entry-default-apps-comment = Default web browser, mail client, file browser, and other applications.
|
||||||
|
xdg-entry-default-apps-keywords = COSMIC;Default;Application
|
||||||
|
|
||||||
|
xdg-entry-desktop = Desktop
|
||||||
|
xdg-entry-desktop-comment = Wallpaper, appearance, panel, dock, window management and workspace settings.
|
||||||
|
xdg-entry-desktop-keywords = COSMIC;Desktop;
|
||||||
|
|
||||||
|
xdg-entry-displays = Displays
|
||||||
|
xdg-entry-displays-comment = Manage display configuration settings.
|
||||||
|
xdg-entry-displays-keywords = COSMIC;Display;
|
||||||
|
|
||||||
|
xdg-entry-dock = Dock
|
||||||
|
xdg-entry-dock-comment = An optional bar for apps and applets.
|
||||||
|
xdg-entry-dock-keywords = COSMIC;Dock;Panel;Applet
|
||||||
|
|
||||||
|
xdg-entry-input = Input Devices
|
||||||
|
xdg-entry-input-comment = Keyboard and mouse settings.
|
||||||
|
xdg-entry-input-keywords = COSMIC;Input;Keyboard;Mouse;Mice;
|
||||||
|
|
||||||
|
xdg-entry-keyboard = Keyboard
|
||||||
|
xdg-entry-keyboard-comment = Input sources, switching, special character entry, shortcuts.
|
||||||
|
xdg-entry-keyboard-keywords = COSMIC;Keyboard;Input;Source;Shortcuts;
|
||||||
|
|
||||||
|
xdg-entry-mouse = Mouse
|
||||||
|
xdg-entry-mouse-comment = Mouse speed, acceleration, and natural scrolling.
|
||||||
|
xdg-entry-mouse-keywords = COSMIC;Mouse;Acceleration;Scrolling;
|
||||||
|
|
||||||
|
xdg-entry-network = Network & Wireless
|
||||||
|
xdg-entry-network-comment = Manage network connections.
|
||||||
|
xdg-entry-network-keywords = COSMIC;Network;Wireless;WiFi;VPN;
|
||||||
|
|
||||||
|
xdg-entry-notifications = Notifications
|
||||||
|
xdg-entry-notifications-comment = Do Not Disturb, lockscreen notifications, and per-application settings.
|
||||||
|
xdg-entry-notifications-keywords = COSMIC;Notification;Lock;
|
||||||
|
|
||||||
|
xdg-entry-panel = Panel
|
||||||
|
xdg-entry-panel-comment = Primary system bar for menus and applets.
|
||||||
|
xdg-entry-panel-keywords = COSMIC;Panel;Applet
|
||||||
|
|
||||||
|
xdg-entry-power = Power & Battery
|
||||||
|
xdg-entry-power-comment = Power modes and power saving options.
|
||||||
|
xdg-entry-power-keywords = COSMIC;Power;Battery
|
||||||
|
|
||||||
|
xdg-entry-region-language = Region & Language
|
||||||
|
xdg-entry-region-language-comment = Format dates, times, and numbers based on your region.
|
||||||
|
xdg-entry-region-language-keywords = COSMIC;Region;Language;Date;Format;Time;Locale;Localization;
|
||||||
|
|
||||||
|
xdg-entry-sound = Sound
|
||||||
|
xdg-entry-sound-comment = Audio settings for devices, alerts, and applications.
|
||||||
|
xdg-entry-sound-keywords = COSMIC;Sound;Audio;Alert;Pipewire;
|
||||||
|
|
||||||
|
xdg-entry-startup-apps = Startup Applications
|
||||||
|
xdg-entry-startup-apps-comment = Configure applications which run on login.
|
||||||
|
xdg-entry-startup-apps-keywords = COSMIC;Startup;Application;
|
||||||
|
|
||||||
|
xdg-entry-system = System & Accounts
|
||||||
|
xdg-entry-system-comment = System information, accounts, and firmware updates.
|
||||||
|
xdg-entry-system-keywords = COSMIC;System;Info;Accounts;Firmware;
|
||||||
|
|
||||||
|
xdg-entry-time-language = Time & Language
|
||||||
|
xdg-entry-time-language-comment = Manage system date, time, region, and language.
|
||||||
|
xdg-entry-time-language-keywords = COSMIC;System;Time;Date;Region;Language;
|
||||||
|
|
||||||
|
xdg-entry-touchpad = Touchpad
|
||||||
|
xdg-entry-touchpad-comment = Touchpad speed, click options, and gestures.
|
||||||
|
xdg-entry-touchpad-keywords = COSMIC;Touchpad;Gesture;
|
||||||
|
|
||||||
|
xdg-entry-users = Users
|
||||||
|
xdg-entry-users-comment = Authentication and user accounts.
|
||||||
|
xdg-entry-users-keywords = COSMIC;User;Account;
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = VPN connections and connection profiles.
|
||||||
|
xdg-entry-vpn-keywords = COSMIC;VPN;Network;Connection;OpenVPN;OpenConnect;
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = Wallpaper
|
||||||
|
xdg-entry-wallpaper-comment = Wallpaper images, colors, and slideshow options.
|
||||||
|
xdg-entry-wallpaper-keywords = COSMIC;Wallpaper;Background;Slideshow;
|
||||||
|
|
||||||
|
xdg-entry-window-management = Window Management
|
||||||
|
xdg-entry-window-management-comment = Super key action, window control options, and additional window tiling options.
|
||||||
|
xdg-entry-window-management-keywords = COSMIC;Window;Management;Tiling;Super;Key;
|
||||||
|
|
||||||
|
xdg-entry-wired = Wired
|
||||||
|
xdg-entry-wired-comment = Wired connections and connection profiles.
|
||||||
|
xdg-entry-wired-keywords = COSMIC;Wired;LAN;Network;Connection;
|
||||||
|
|
||||||
|
xdg-entry-wireless = Wi-Fi
|
||||||
|
xdg-entry-wireless-comment = Wi-Fi connections and connection profiles.
|
||||||
|
xdg-entry-wireless-keywords = COSMIC;WiFi;Wi-Fi;Network;Connection;
|
||||||
|
|
||||||
|
xdg-entry-workspaces = Workspaces
|
||||||
|
xdg-entry-workspaces-comment = Workspace orientation, overview, and multi-monitor behavior.
|
||||||
|
xdg-entry-workspaces-keywords = COSMIC;Workspace;Orientation;Overview;Monitor;
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = X11 Applications Compatibility
|
||||||
|
xdg-entry-x11-applications-comment = X11 window system application scaling, primary display, and global shortcuts.
|
||||||
|
xdg-entry-x11-applications-keywords = COSMIC;X11;Application;Game;Compatibility;
|
||||||
|
|
||||||
## Network & Wireless
|
## Network & Wireless
|
||||||
|
|
||||||
connections-and-profiles = { $variant ->
|
connections-and-profiles = { $variant ->
|
||||||
|
|
|
||||||
87
i18n/es/cosmic_settings.ftl
vendored
87
i18n/es/cosmic_settings.ftl
vendored
|
|
@ -4,6 +4,93 @@ ok = OK
|
||||||
unknown = Desconocido
|
unknown = Desconocido
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
## Freedesktop desktop entries
|
||||||
|
|
||||||
|
xdg-entry-about = A cerca de
|
||||||
|
xdg-entry-about-comment = Nombre del dispositivo, información de hardware y valores del sistema operativo.
|
||||||
|
|
||||||
|
xdg-entry-a11y = Accesibilidad
|
||||||
|
xdg-entry-a11y-comment = Configuración de accesibilidad.
|
||||||
|
|
||||||
|
xdg-entry-appearance = Apariencia
|
||||||
|
xdg-entry-appearance-comment = Colores de énfasis y temas.
|
||||||
|
|
||||||
|
xdg-entry-applications = Aplicaciones
|
||||||
|
xdg-entry-applications-comment = Gestionar configuración de aplicaciones.
|
||||||
|
|
||||||
|
xdg-entry-bluetooth-comment = Gestionar dispositivos Bluetooth
|
||||||
|
|
||||||
|
xdg-entry-date-time = Fecha y Hora
|
||||||
|
xdg-entry-date-time-comment = Zona horaria, configuración automática del reloj y formatos de hora.
|
||||||
|
|
||||||
|
xdg-entry-default-apps = Aplicaciones predeterminadas
|
||||||
|
xdg-entry-default-apps-comment = Navegador web predeterminado, cliente de correo, explorador de archivos y otras aplicaciones.
|
||||||
|
|
||||||
|
xdg-entry-desktop = Escritorio
|
||||||
|
|
||||||
|
xdg-entry-displays = Pantallas
|
||||||
|
xdg-entry-displays-comment = Opciones de pantalla, modos gráficos y luz nocturna.
|
||||||
|
|
||||||
|
xdg-entry-dock = Dock
|
||||||
|
xdg-entry-dock-comment = Panel opcional para aplicaciones y otros applets.
|
||||||
|
|
||||||
|
xdg-entry-input = Dispositivos de entrada
|
||||||
|
xdg-entry-input-comment = Teclado, ratón, etc.
|
||||||
|
|
||||||
|
xdg-entry-keyboard = Teclado
|
||||||
|
xdg-entry-keyboard-comment = Entrada de teclado, conmutación, carácteres especiales, atajos.
|
||||||
|
|
||||||
|
xdg-entry-mouse = Ratón
|
||||||
|
xdg-entry-mouse-comment = Velocidad del ratón, aceleración y desplazamiento natural.
|
||||||
|
|
||||||
|
xdg-entry-network = Red e inalámbrico
|
||||||
|
xdg-entry-network-comment = Gestionar conexiones de red
|
||||||
|
|
||||||
|
xdg-entry-notifications = Notificaciones
|
||||||
|
xdg-entry-notifications-comment = No molestar, notificaciones de pantalla de bloqueo y ajustes de aplicación.
|
||||||
|
|
||||||
|
xdg-entry-panel = Barra
|
||||||
|
xdg-entry-panel-comment = Barra principal del sistema para menús y applets.
|
||||||
|
|
||||||
|
xdg-entry-power = Energía y batería
|
||||||
|
xdg-entry-power-comment = Modos de energía y opciones de ahorro de energía.
|
||||||
|
|
||||||
|
xdg-entry-region-language = Región e Idioma
|
||||||
|
xdg-entry-region-language-comment = Formato de fechas, horas y números según su región.
|
||||||
|
|
||||||
|
xdg-entry-sound = Sonido
|
||||||
|
xdg-entry-sound-comment = Configuraciones de audio para dispositivos, alertas y aplicaciones.
|
||||||
|
|
||||||
|
xdg-entry-system = Sistema y cuentas
|
||||||
|
xdg-entry-system-comment = Información del sistema, cuentas y firmware
|
||||||
|
|
||||||
|
xdg-entry-time-language = Hora e Idioma
|
||||||
|
|
||||||
|
xdg-entry-touchpad = Panel táctil
|
||||||
|
xdg-entry-touchpad-comment = Velocidad del panel táctil, opciones de clic, gestos.
|
||||||
|
|
||||||
|
xdg-entry-users = Usuarios
|
||||||
|
xdg-entry-users-comment = Autenticación y cuentas de usuario.
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = Conexiones VPN y perfiles de conexión.
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = Fondo de pantalla
|
||||||
|
xdg-entry-wallpaper-comment = Imágenes de fondo, colores y opciones de carrusel de imágenes.
|
||||||
|
|
||||||
|
xdg-entry-window-management = Gestión de ventanas
|
||||||
|
xdg-entry-window-management-comment = Acción de la tecla Super, opciones de control de ventana y opciones adicionales de mosaico de ventana.
|
||||||
|
|
||||||
|
xdg-entry-wired = Red cableada
|
||||||
|
xdg-entry-wired-comment = Conexiones cableadas y perfiles de conexión.
|
||||||
|
|
||||||
|
xdg-entry-wireless-comment = Conexiones Wi-Fi y perfiles de conexión.
|
||||||
|
|
||||||
|
xdg-entry-workspaces = Espacios de trabajo
|
||||||
|
xdg-entry-workspaces-comment = Orientación de los espacios de trabajo y comportamiento.
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = Compatibilidad para aplicaciones X11
|
||||||
|
xdg-entry-x11-applications-comment = Escalado de aplicaciones del sistema de ventanas X11 y atajos globales.
|
||||||
|
|
||||||
## Network & Wireless
|
## Network & Wireless
|
||||||
|
|
||||||
connections-and-profiles =
|
connections-and-profiles =
|
||||||
|
|
|
||||||
89
i18n/fr/cosmic_settings.ftl
vendored
89
i18n/fr/cosmic_settings.ftl
vendored
|
|
@ -4,6 +4,95 @@ ok = OK
|
||||||
unknown = Inconnu
|
unknown = Inconnu
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
## Freedesktop desktop entries
|
||||||
|
|
||||||
|
xdg-entry-about = À propos
|
||||||
|
xdg-entry-about-comment = Nom de l'appareil, informations sur le matériel et paramètres par défaut du système d'exploitation.
|
||||||
|
|
||||||
|
xdg-entry-a11y = Accessibilité
|
||||||
|
xdg-entry-a11y-comment = Paramètres d'accessibilité.
|
||||||
|
|
||||||
|
xdg-entry-appearance = Apparence
|
||||||
|
xdg-entry-appearance-comment = Couleurs d'accentuation et thèmes.
|
||||||
|
|
||||||
|
xdg-entry-applications = Applications
|
||||||
|
xdg-entry-applications-comment = Gérer les paramètres de l'application.
|
||||||
|
|
||||||
|
xdg-entry-bluetooth-comment = Gérer les appareils Bluetooth
|
||||||
|
|
||||||
|
xdg-entry-date-time = Date et heure
|
||||||
|
xdg-entry-date-time-comment = Fuseau horaire, réglage de l'heure automatique et formatage de l'heure.
|
||||||
|
|
||||||
|
xdg-entry-default-apps = Applications par défaut
|
||||||
|
xdg-entry-default-apps-comment = Navigateur web, client mail, explorateur de fichiers, et autres applications.
|
||||||
|
|
||||||
|
xdg-entry-desktop = Bureau
|
||||||
|
|
||||||
|
xdg-entry-displays = Écrans
|
||||||
|
xdg-entry-displays-comment = Options d'affichage, modes graphiques et éclairage nocturne.
|
||||||
|
|
||||||
|
xdg-entry-dock = Dock
|
||||||
|
xdg-entry-dock-comment = Barre facultative pour les applications et les applets.
|
||||||
|
|
||||||
|
xdg-entry-input = Périphériques d'entrée
|
||||||
|
xdg-entry-input-comment = Clavier, curseur, etc.
|
||||||
|
|
||||||
|
xdg-entry-keyboard = Clavier
|
||||||
|
xdg-entry-keyboard-comment = Sources d'entrée, commutation, saisie de caractères spéciaux, raccourcis.
|
||||||
|
|
||||||
|
xdg-entry-mouse = Souris
|
||||||
|
xdg-entry-mouse-comment = Vitesse de la souris, accélération, défilement naturel.
|
||||||
|
|
||||||
|
xdg-entry-network = Réseau et sans fil
|
||||||
|
xdg-entry-network-comment = Gérer les connexions réseau
|
||||||
|
|
||||||
|
xdg-entry-notifications = Notifications
|
||||||
|
xdg-entry-notifications-comment = Ne pas déranger, notifications sur l'écran de verrouillage et paramètres par application.
|
||||||
|
|
||||||
|
xdg-entry-panel = Panel
|
||||||
|
xdg-entry-panel-comment = Barre système principale pour les menus et les applets.
|
||||||
|
|
||||||
|
xdg-entry-power = Alimentation et batterie
|
||||||
|
xdg-entry-power-comment = Modes d'alimentation et options d'économie d'énergie.
|
||||||
|
|
||||||
|
xdg-entry-region-language = Région et langue
|
||||||
|
xdg-entry-region-language-comment = Formater les dates, les heures et les nombres en fonction de votre région.
|
||||||
|
|
||||||
|
xdg-entry-sound = Son
|
||||||
|
xdg-entry-sound-comment = Paramètres audio pour les appareils, les alertes et les applications.
|
||||||
|
|
||||||
|
xdg-entry-startup-apps = Applications de démarrage
|
||||||
|
xdg-entry-startup-apps-comment = Configurer les applications qui s'exécutent lors de la connexion.
|
||||||
|
|
||||||
|
xdg-entry-system = Système et comptes
|
||||||
|
|
||||||
|
xdg-entry-time-language = Heure et langue
|
||||||
|
|
||||||
|
xdg-entry-touchpad = Pavé tactile
|
||||||
|
xdg-entry-touchpad-comment = Vitesse du pavé tactile, options de clic, gestes.
|
||||||
|
|
||||||
|
xdg-entry-users = Utilisateurs
|
||||||
|
xdg-entry-users-comment = Authentification et comptes utilisateurs.
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = Connexions VPN et profils de connexion.
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = Fond d'écran
|
||||||
|
xdg-entry-wallpaper-comment = Images de fond d'écran, couleurs et options de diaporama.
|
||||||
|
|
||||||
|
xdg-entry-window-management = Gestion des fenêtres
|
||||||
|
xdg-entry-window-management-comment = Action de la touche Super, options de contrôle des fenêtres et options supplémentaires d'agencement des fenêtres.
|
||||||
|
|
||||||
|
xdg-entry-wired = Filaire
|
||||||
|
xdg-entry-wired-comment = Connexions filaires et profils.
|
||||||
|
|
||||||
|
xdg-entry-wireless-comment = Connexions Wi-Fi et profils.
|
||||||
|
|
||||||
|
xdg-entry-workspaces = Espaces de travail
|
||||||
|
xdg-entry-workspaces-comment = Orientation et comportement des espaces de travail.
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = Compatibilité des applications X11
|
||||||
|
xdg-entry-x11-applications-comment = Mise à l'échelle des applications du gestionnaire de fenêtres X11 et raccourcis globaux.
|
||||||
|
|
||||||
## Networking & Wireless
|
## Networking & Wireless
|
||||||
|
|
||||||
connections-and-profiles =
|
connections-and-profiles =
|
||||||
|
|
|
||||||
88
i18n/hu/cosmic_settings.ftl
vendored
88
i18n/hu/cosmic_settings.ftl
vendored
|
|
@ -4,6 +4,94 @@ ok = OK
|
||||||
unknown = Ismeretlen
|
unknown = Ismeretlen
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
## Freedesktop desktop entries
|
||||||
|
|
||||||
|
xdg-entry-about = Rendszerinformáció
|
||||||
|
xdg-entry-about-comment = Eszköznév, hardverinformációk és az operációs rendszer alapértelmezett beállításai.
|
||||||
|
|
||||||
|
xdg-entry-a11y = Akadálymentesség
|
||||||
|
xdg-entry-a11y-comment = Akadálymentességi beállítások.
|
||||||
|
|
||||||
|
xdg-entry-appearance = Megjelenés
|
||||||
|
xdg-entry-appearance-comment = Kiemelő színek és téma.
|
||||||
|
|
||||||
|
xdg-entry-applications = Alkalmazások
|
||||||
|
xdg-entry-applications-comment = Alkalmazásbeállítások kezelése.
|
||||||
|
|
||||||
|
xdg-entry-bluetooth-comment = Bluetooth-eszközök kezelése
|
||||||
|
|
||||||
|
xdg-entry-date-time = Dátum és idő
|
||||||
|
xdg-entry-date-time-comment = Időzóna, automatikus órabeállítások és időformátum.
|
||||||
|
|
||||||
|
xdg-entry-default-apps = Alapértelmezett alkalmazások
|
||||||
|
xdg-entry-default-apps-comment = Alapértelmezett böngésző, levelezőprogram, fájlkezelő és egyéb alkalmazások.
|
||||||
|
|
||||||
|
xdg-entry-desktop = Asztal
|
||||||
|
|
||||||
|
xdg-entry-displays = Kijelzők
|
||||||
|
xdg-entry-displays-comment = Kijelzőbeállítások, grafikus módok és éjszakai fény.
|
||||||
|
|
||||||
|
xdg-entry-dock = Dokk
|
||||||
|
xdg-entry-dock-comment = Egy opcionális sáv alkalmazásokhoz és kisalkalmazásokhoz.
|
||||||
|
|
||||||
|
xdg-entry-input = Beviteli eszközök
|
||||||
|
xdg-entry-input-comment = Billentyűzet, mutató, stb.
|
||||||
|
|
||||||
|
xdg-entry-keyboard = Billentyűzet
|
||||||
|
xdg-entry-keyboard-comment = Bemeneti források, váltásuk, speciális karakterek, billentyűparancsok.
|
||||||
|
|
||||||
|
xdg-entry-mouse = Egér
|
||||||
|
xdg-entry-mouse-comment = Egérsebesség, gyorsítás és természetes görgetés.
|
||||||
|
|
||||||
|
xdg-entry-network = Hálózat és Wi-Fi
|
||||||
|
xdg-entry-network-comment = Hálózati kapcsolatok kezelése
|
||||||
|
|
||||||
|
xdg-entry-notifications = Értesítések
|
||||||
|
xdg-entry-notifications-comment = Ne zavarjanak, zárolási képernyő értesítések és alkalmazásonkénti beállítások.
|
||||||
|
|
||||||
|
xdg-entry-panel-comment = Fő rendszersáv menükhöz és kisalkalmazásokhoz.
|
||||||
|
|
||||||
|
xdg-entry-power = Energia és akkumulátor
|
||||||
|
xdg-entry-power-comment = Energiagazdálkodási módok és energiagazdálkodási beállítások.
|
||||||
|
|
||||||
|
xdg-entry-region-language = Régió és nyelv
|
||||||
|
xdg-entry-region-language-comment = Dátumok, időpontok és számok formázása a régió alapján.
|
||||||
|
|
||||||
|
xdg-entry-sound = Hang
|
||||||
|
xdg-entry-sound-comment = Hangbeállítások eszközökhöz, figyelmeztetésekhez és alkalmazásokhoz.
|
||||||
|
|
||||||
|
xdg-entry-startup-apps = Indítási alkalmazások
|
||||||
|
xdg-entry-startup-apps-comment = Azoknak az alkalmazásoknak a beállítása, amelyek bejelentkezéskor elindulnak.
|
||||||
|
|
||||||
|
xdg-entry-system = Rendszer és fiókok
|
||||||
|
|
||||||
|
xdg-entry-time-language = Idő és nyelv
|
||||||
|
|
||||||
|
xdg-entry-touchpad = Érintőpárna
|
||||||
|
xdg-entry-touchpad-comment = Érintőpárna sebessége, kattintási beállítások, gesztusok.
|
||||||
|
|
||||||
|
xdg-entry-users = Felhasználók
|
||||||
|
xdg-entry-users-comment = Hitelesítés és felhasználói fiókok.
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = VPN-kapcsolatok és kapcsolódási profilok.
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = Háttérkép
|
||||||
|
xdg-entry-wallpaper-comment = Háttérképek, színek és diavetítési beállítások.
|
||||||
|
|
||||||
|
xdg-entry-window-management = Ablakkezelés
|
||||||
|
xdg-entry-window-management-comment = Super billentyű funkció, ablakkezelési és csempézési beállítások.
|
||||||
|
|
||||||
|
xdg-entry-wired = Vezetékes kapcsolatok
|
||||||
|
xdg-entry-wired-comment = Vezetékes kapcsolatok és kapcsolódási profilok.
|
||||||
|
|
||||||
|
xdg-entry-wireless-comment = Wi-Fi kapcsolatok és kapcsolódási profilok.
|
||||||
|
|
||||||
|
xdg-entry-workspaces = Munkaterületek
|
||||||
|
xdg-entry-workspaces-comment = Munkaterületek tájolása és viselkedése.
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = X11 alkalmazások támogatása
|
||||||
|
xdg-entry-x11-applications-comment = X11 ablakkezelő rendszer alkalmazásméretezés és globális billentyűparancsok.
|
||||||
|
|
||||||
## Network & Wireless
|
## Network & Wireless
|
||||||
|
|
||||||
connections-and-profiles =
|
connections-and-profiles =
|
||||||
|
|
|
||||||
90
i18n/it/cosmic_settings.ftl
vendored
90
i18n/it/cosmic_settings.ftl
vendored
|
|
@ -4,6 +4,96 @@ ok = OK
|
||||||
unknown = Sconosciuto
|
unknown = Sconosciuto
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
## Freedesktop desktop entries
|
||||||
|
|
||||||
|
xdg-entry-about = Informazioni su
|
||||||
|
xdg-entry-about-comment = Nome del dispositivo, informazioni sull'hardware e sul sistema operativo.
|
||||||
|
|
||||||
|
xdg-entry-a11y = Accessibilità
|
||||||
|
xdg-entry-a11y-comment = Impostazioni accessibilità.
|
||||||
|
|
||||||
|
xdg-entry-appearance = Aspetto
|
||||||
|
xdg-entry-appearance-comment = Colore d'accento e temi.
|
||||||
|
|
||||||
|
xdg-entry-applications = Applicazioni
|
||||||
|
xdg-entry-applications-comment = Gestione delle impostazioni delle applicazioni.
|
||||||
|
|
||||||
|
xdg-entry-bluetooth-comment = Gestione dispositivi Bluetooth
|
||||||
|
|
||||||
|
xdg-entry-date-time = Data e Ora
|
||||||
|
xdg-entry-date-time-comment = Fuso orario, impostazione automatica dell'ora e del formato.
|
||||||
|
|
||||||
|
xdg-entry-default-apps = Applicazioni predefinite
|
||||||
|
xdg-entry-default-apps-comment = Browser web predefinito, client di posta, esplora file e altre applicazioni.
|
||||||
|
|
||||||
|
xdg-entry-desktop = Desktop
|
||||||
|
|
||||||
|
xdg-entry-displays = Schermo
|
||||||
|
xdg-entry-displays-comment = Opzioni dello schermo, impostazioni e luce notturna.
|
||||||
|
|
||||||
|
xdg-entry-dock = Dock
|
||||||
|
xdg-entry-dock-comment = Una barra opzionale per le applicazioni e le applet.
|
||||||
|
|
||||||
|
xdg-entry-input = Dispositivi di immissione
|
||||||
|
xdg-entry-input-comment = Tastiera, mouse, ecc.
|
||||||
|
|
||||||
|
xdg-entry-keyboard = Tastiera
|
||||||
|
xdg-entry-keyboard-comment = Sorgenti di immissione, switch, caratteri speciali e scorciatoie.
|
||||||
|
|
||||||
|
xdg-entry-mouse = Mouse
|
||||||
|
xdg-entry-mouse-comment = Velocità del cursore, accelerazione e scorrimento naturale.
|
||||||
|
|
||||||
|
xdg-entry-network = Rete e connessioni Wi-Fi
|
||||||
|
xdg-entry-network-comment = Gestisci le connessioni di rete
|
||||||
|
|
||||||
|
xdg-entry-notifications = Notifiche
|
||||||
|
xdg-entry-notifications-comment = Non disturbare, notifiche su schermata di blocco e impostazioni per applicazioni.
|
||||||
|
|
||||||
|
xdg-entry-panel = Pannello
|
||||||
|
xdg-entry-panel-comment = Barra di sistema principale per il menù e le applet.
|
||||||
|
|
||||||
|
xdg-entry-power = Alimentazione e batteria
|
||||||
|
xdg-entry-power-comment = Modalità di alimentazione e opzioni risparmio energia.
|
||||||
|
|
||||||
|
xdg-entry-region-language = Regione e lingua
|
||||||
|
xdg-entry-region-language-comment = Formato della data, dell'ora e dei numeri in base alla regione.
|
||||||
|
|
||||||
|
xdg-entry-sound = Audio
|
||||||
|
xdg-entry-sound-comment = Impostazioni audio per dispositivi, allarmi e applicazioni.
|
||||||
|
|
||||||
|
xdg-entry-startup-apps = Applicazioni all'avvio
|
||||||
|
xdg-entry-startup-apps-comment = Configura le applicazioni da avviare automaticamente al login.
|
||||||
|
|
||||||
|
xdg-entry-system = Sistema e account
|
||||||
|
|
||||||
|
xdg-entry-time-language = Ora e lingua
|
||||||
|
xdg-entry-time-language-comment = COMMENT
|
||||||
|
|
||||||
|
xdg-entry-touchpad = Touchpad
|
||||||
|
xdg-entry-touchpad-comment = Velocità del touchpad, opzioni di tocco e gesti.
|
||||||
|
|
||||||
|
xdg-entry-users = Utenti
|
||||||
|
xdg-entry-users-comment = Autenticazione e account utenti.
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = Connessioni VPN e profili di connessione.
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = Sfondo
|
||||||
|
xdg-entry-wallpaper-comment = Immagine di sfondo, colori e opzioni di transizione.
|
||||||
|
|
||||||
|
xdg-entry-window-management = Gestione delle finestre
|
||||||
|
xdg-entry-window-management-comment = Azioni del tasto Super, opzioni del controllo delle finestre, e opzioni aggiuntive del tiling delle finestre.
|
||||||
|
|
||||||
|
xdg-entry-wired = Cablato
|
||||||
|
xdg-entry-wired-comment = Connessioni cablate e profili.
|
||||||
|
|
||||||
|
xdg-entry-wireless-comment = Connessioni Wi-Fi e profili di connessione.
|
||||||
|
|
||||||
|
xdg-entry-workspaces = Spazi di lavoro
|
||||||
|
xdg-entry-workspaces-comment = Orientamento e comportamento degli spazi di lavoro.
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = Compatibilità applicazioni X11
|
||||||
|
xdg-entry-x11-applications-comment = Scaling applicazioni X11 e shortcut globali.
|
||||||
|
|
||||||
## Network & Wireless
|
## Network & Wireless
|
||||||
|
|
||||||
connections-and-profiles =
|
connections-and-profiles =
|
||||||
|
|
|
||||||
84
i18n/nl/cosmic_settings.ftl
vendored
84
i18n/nl/cosmic_settings.ftl
vendored
|
|
@ -4,6 +4,90 @@ ok = Oké
|
||||||
unknown = Onbekend
|
unknown = Onbekend
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
## Freedesktop desktop entries
|
||||||
|
|
||||||
|
xdg-entry-about = Over
|
||||||
|
xdg-entry-about-comment = Apparaatnaam, hardware-informatie, standaardinstellingen van het besturingssysteem.
|
||||||
|
|
||||||
|
xdg-entry-a11y = Toegankelijkheden
|
||||||
|
xdg-entry-a11y-comment = Toegankelijkheidsinstellingen.
|
||||||
|
|
||||||
|
xdg-entry-appearance = Weergave
|
||||||
|
xdg-entry-appearance-comment = Accentkleuren en thema's.
|
||||||
|
|
||||||
|
xdg-entry-applications = Toepassingen
|
||||||
|
xdg-entry-applications-comment = Instellingen voor toepassingen beheren.
|
||||||
|
|
||||||
|
xdg-entry-bluetooth = Bluetooth-apparaten beheren
|
||||||
|
|
||||||
|
xdg-entry-date-time = Datum en tijd
|
||||||
|
xdg-entry-date-time-comment = Tijdszone, automatische klokinstellingen en tijdformatering.
|
||||||
|
|
||||||
|
xdg-entry-default-apps = Standaard toepassingen
|
||||||
|
xdg-entry-default-apps-comment = Standaard webbrowser, mailprogramma, bestandsbeheerder en andere apps.
|
||||||
|
|
||||||
|
xdg-entry-desktop = Bureaublad
|
||||||
|
|
||||||
|
xdg-entry-displays = Beeldschermen
|
||||||
|
xdg-entry-displays-comment = Weergaveopties, grafische modi en nachtlicht.
|
||||||
|
|
||||||
|
xdg-entry-dock = Dock
|
||||||
|
xdg-entry-dock-comment = Een optionele balk voor apps en applets.
|
||||||
|
|
||||||
|
xdg-entry-input = Invoerapparaten
|
||||||
|
xdg-entry-input-comment = Toetsenbord, muis, enz.
|
||||||
|
|
||||||
|
xdg-entry-keyboard = Toetsenbord
|
||||||
|
xdg-entry-keyboard-comment = Invoermethodes, speciale tekens, en sneltoetsen.
|
||||||
|
|
||||||
|
xdg-entry-mouse = Muis
|
||||||
|
xdg-entry-mouse-comment = Muissnelheid en -versnelling, en 'natuurlijk' scrollen.
|
||||||
|
|
||||||
|
xdg-entry-network = Netwerk en wifi
|
||||||
|
xdg-entry-network-comment = Netwerkverbindingen beheren
|
||||||
|
|
||||||
|
xdg-entry-notifications = Meldingsinstellingen
|
||||||
|
xdg-entry-notifications-comment = "Niet storen", meldingen op het vergrendelingsscherm en meldingsinstellingen per app.
|
||||||
|
|
||||||
|
xdg-entry-panel = Panel
|
||||||
|
xdg-entry-panel-comment = De standaard systeembalk voor menu's en applets.
|
||||||
|
|
||||||
|
xdg-entry-power = Energie en batterij
|
||||||
|
xdg-entry-power-comment = Energieverbruik en -besparingsopties.
|
||||||
|
|
||||||
|
xdg-entry-region-language = Taal en regio
|
||||||
|
xdg-entry-region-language-comment = Regionale datum-, tijd- en getalweergave.
|
||||||
|
|
||||||
|
xdg-entry-sound = Geluid
|
||||||
|
xdg-entry-sound-comment = Geluidsinstellingen voor apparaten, alarmen en programma's.
|
||||||
|
|
||||||
|
xdg-entry-system = Systeem en gebruikersaccount
|
||||||
|
|
||||||
|
xdg-entry-time-language = Tijd- en taalinstellingen
|
||||||
|
xdg-entry-time-language-comment = COMMENT
|
||||||
|
|
||||||
|
xdg-entry-touchpad = Touchpad
|
||||||
|
xdg-entry-touchpad-comment = Touchpad muisversnelling, klikeigenschappen en veeggebaren.
|
||||||
|
|
||||||
|
xdg-entry-users = Gebruikers
|
||||||
|
xdg-entry-users-comment = Authenticatie en gebruikersinstellingen.
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = VPN-verbindingen en VPN-profielen.
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = Schermachtergrond
|
||||||
|
xdg-entry-wallpaper-comment = Schermachtergrond: Afbeeldingen, kleuren en diavoorstellingen.
|
||||||
|
|
||||||
|
xdg-entry-window-management = Vensterbeheer
|
||||||
|
xdg-entry-window-management-comment = Opties voor de Supertoets, vensterbeheer en aanvullende opties voor het tegelen van vensters.
|
||||||
|
|
||||||
|
xdg-entry-wired = Kabelverbinding
|
||||||
|
xdg-entry-wired-comment = Kabelverbinding en verbindingsprofielen.
|
||||||
|
|
||||||
|
xdg-entry-wireless-comment = Wifiverbinding en verbindingsprofielen.
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = Compatibiliteit met X11-toepassingen.
|
||||||
|
xdg-entry-x11-applications-comment = X11-toepassingsvensters schalen, en globale sneltoetsen.
|
||||||
|
|
||||||
## Network & Wireless
|
## Network & Wireless
|
||||||
|
|
||||||
connections-and-profiles =
|
connections-and-profiles =
|
||||||
|
|
|
||||||
87
i18n/pl/cosmic_settings.ftl
vendored
87
i18n/pl/cosmic_settings.ftl
vendored
|
|
@ -4,6 +4,93 @@ ok = OK
|
||||||
unknown = Nieznane
|
unknown = Nieznane
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
## Freedesktop desktop entries
|
||||||
|
|
||||||
|
xdg-entry-about = O systemie
|
||||||
|
xdg-entry-about-comment = Nazwa urządzenia, informacje o sprzęcie i systemie operacyjnym.
|
||||||
|
|
||||||
|
xdg-entry-a11y = Dostępność
|
||||||
|
xdg-entry-a11y-comment = Ustawienia dostępności.
|
||||||
|
|
||||||
|
xdg-entry-appearance = Wygląd
|
||||||
|
xdg-entry-appearance-comment = Kolory akcentów i styl.
|
||||||
|
|
||||||
|
xdg-entry-applications = Aplikacje
|
||||||
|
|
||||||
|
xdg-entry-bluetooth-comment = Zarządzaj urządzeniami Bluetooth
|
||||||
|
|
||||||
|
xdg-entry-date-time = Data i godzina
|
||||||
|
xdg-entry-date-time-comment = Strefy czasowe, automatyczna konfiguracja zegara i format wyświetlania czasu.
|
||||||
|
|
||||||
|
xdg-entry-default-apps = Domyślne aplikacje
|
||||||
|
xdg-entry-default-apps-comment = Domyślna przeglądarka, klient poczty e-mail, menedżer plików i inne aplikacje.
|
||||||
|
|
||||||
|
xdg-entry-desktop = Pulpit
|
||||||
|
|
||||||
|
xdg-entry-displays = Ekrany
|
||||||
|
xdg-entry-displays-comment = Ustawienia wyświetlania, opcje grafiki i podświetlanie nocne.
|
||||||
|
|
||||||
|
xdg-entry-dock = Dok
|
||||||
|
xdg-entry-dock-comment = Panel z przypiętymi aplikacjami w zasobniku i innymi apletami.
|
||||||
|
|
||||||
|
xdg-entry-input = Urządzenia wprowadzania danych
|
||||||
|
|
||||||
|
xdg-entry-keyboard = Klawiatura
|
||||||
|
xdg-entry-keyboard-comment = Źródła wprowadzania, przełączanie, specjalne klawisze, skróty.
|
||||||
|
|
||||||
|
xdg-entry-mouse = Mysz
|
||||||
|
xdg-entry-mouse-comment = Prędkość myszy, przyspieszenie i naturalne przewijanie.
|
||||||
|
|
||||||
|
xdg-entry-network = Sieć i połączenia bezprzewodowe
|
||||||
|
xdg-entry-network-comment = Zarządzaj połączeniami sieciowymi
|
||||||
|
|
||||||
|
xdg-entry-notifications = Powiadomienia
|
||||||
|
xdg-entry-notifications-comment = Tryb „nie przeszkadzać”, powiadomienia na ekranie blokady i ustawienia poszczególnych aplikacji.
|
||||||
|
|
||||||
|
xdg-entry-panel = Panel
|
||||||
|
xdg-entry-panel-comment = COMMENT
|
||||||
|
|
||||||
|
xdg-entry-power = Zasilanie i bateria
|
||||||
|
xdg-entry-power-comment = Tryby zasilania i opcje oszczędzania energii.
|
||||||
|
|
||||||
|
xdg-entry-region-language = Region i język
|
||||||
|
xdg-entry-region-language-comment = Format wyświetlanych dat, godzin i liczb dopasowany do regionu.
|
||||||
|
|
||||||
|
xdg-entry-sound = Dźwięk
|
||||||
|
xdg-entry-sound-comment = Opcje dźwięku dla urządzeń, alertów i aplikacji.
|
||||||
|
|
||||||
|
xdg-entry-startup-apps = Aplikacje startowe
|
||||||
|
xdg-entry-startup-apps-comment = Konfiguracja aplikacji uruchamianych po zalogowaniu.
|
||||||
|
|
||||||
|
xdg-entry-system = System i konta
|
||||||
|
|
||||||
|
xdg-entry-time-language = Czas i język
|
||||||
|
|
||||||
|
xdg-entry-touchpad = Gładzik
|
||||||
|
xdg-entry-touchpad-comment = Prędkość gładzika, opcje kliknięć, gesty.
|
||||||
|
|
||||||
|
xdg-entry-users = Użytkownicy
|
||||||
|
xdg-entry-users-comment = Uwierzytelnianie i konta użytkowników.
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = Połączenia VPN i profile połączeń.
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = Tapeta
|
||||||
|
xdg-entry-wallpaper-comment = Obraz tła, kolory i opcje pokazu slajdów.
|
||||||
|
|
||||||
|
xdg-entry-window-management = Zarządzanie oknami
|
||||||
|
xdg-entry-window-management-comment = Działanie klawisza Super, opcje kontroli oknami i dodatkowe ustawienia kafelkowania okien.
|
||||||
|
|
||||||
|
xdg-entry-wired = Połączenia przewodowe
|
||||||
|
xdg-entry-wired-comment = Połączenia przewodowe i profile połączeń.
|
||||||
|
|
||||||
|
xdg-entry-wireless-comment = Połączenia Wi-Fi i profile połączeń.
|
||||||
|
|
||||||
|
xdg-entry-workspaces = Obszary robocze
|
||||||
|
xdg-entry-workspaces-comment = Kierunek i zachowanie obszarów roboczych.
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = Kompatybilność aplikacji X11
|
||||||
|
xdg-entry-x11-applications-comment = Skalowanie aplikacji systemu okien X11 i globalne skróty klawiszowe.
|
||||||
|
|
||||||
## Network & Wireless
|
## Network & Wireless
|
||||||
|
|
||||||
connections-and-profiles =
|
connections-and-profiles =
|
||||||
|
|
|
||||||
87
i18n/pt/cosmic_settings.ftl
vendored
87
i18n/pt/cosmic_settings.ftl
vendored
|
|
@ -2,6 +2,93 @@ app = Definições COSMIC
|
||||||
unknown = Desconhecido
|
unknown = Desconhecido
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
## Freedesktop desktop entries
|
||||||
|
|
||||||
|
xdg-entry-about = Sobre
|
||||||
|
xdg-entry-about-comment = Nome do dispositivo, informações de hardware e padrões do sistema operacional.
|
||||||
|
|
||||||
|
xdg-entry-a11y = Toegankelijkheden
|
||||||
|
xdg-entry-a11y-comment = Configurações de acessibilidade.
|
||||||
|
|
||||||
|
xdg-entry-appearance = Aparência
|
||||||
|
xdg-entry-appearance-comment = Cores de destaque e temas.
|
||||||
|
|
||||||
|
xdg-entry-applications = Aplicativos
|
||||||
|
xdg-entry-applications-comment = Gerenciar configurações de aplicativos.
|
||||||
|
|
||||||
|
xdg-entry-bluetooth-comment = Gerenciar dispositivos Bluetooth
|
||||||
|
|
||||||
|
xdg-entry-date-time = Data e Hora
|
||||||
|
xdg-entry-date-time-comment = Fuso horário, hora automática e formatação.
|
||||||
|
|
||||||
|
xdg-entry-default-apps = Aplicativos padrão
|
||||||
|
xdg-entry-default-apps-comment = Navegador web padrão, cliente de email, gestor de arquivos e outros aplicativos.
|
||||||
|
|
||||||
|
xdg-entry-desktop = Área de Trabalho
|
||||||
|
|
||||||
|
xdg-entry-displays = Telas
|
||||||
|
xdg-entry-displays-comment = Opções de tela, monitores, modos gráficos e luz noturna.
|
||||||
|
|
||||||
|
xdg-entry-dock = Dock
|
||||||
|
xdg-entry-dock-comment = Painel com aplicativos fixados e outros miniaplicativos.
|
||||||
|
|
||||||
|
xdg-entry-input = Dispositivos de Entrada
|
||||||
|
xdg-entry-input-comment = COMMENT
|
||||||
|
|
||||||
|
xdg-entry-keyboard = Teclado
|
||||||
|
xdg-entry-keyboard-comment = Métodos de entrada, entrada de caracteres especiais, atalhos.
|
||||||
|
|
||||||
|
xdg-entry-mouse = Mouse
|
||||||
|
xdg-entry-mouse-comment = Velocidade do mouse, aceleração e rolagem natural.
|
||||||
|
|
||||||
|
xdg-entry-network = Rede e Wi-Fi
|
||||||
|
xdg-entry-network-comment = Gerenciar conexões de rede
|
||||||
|
|
||||||
|
xdg-entry-notifications = Notificações
|
||||||
|
xdg-entry-notifications-comment = "Não Perturbe", notificações na tela de bloqueio e ajustes por aplicativo.
|
||||||
|
|
||||||
|
xdg-entry-panel = Panel
|
||||||
|
xdg-entry-panel-comment = Barra superior com controles e menus.
|
||||||
|
|
||||||
|
xdg-entry-power = Energia e Bateria
|
||||||
|
xdg-entry-power-comment = Modos de energia e opções de economia de energia.
|
||||||
|
|
||||||
|
xdg-entry-region-language = Região e Idioma
|
||||||
|
xdg-entry-region-language-comment = Formatação de datas, horas e números baseados em sua região.
|
||||||
|
|
||||||
|
xdg-entry-sound = Som
|
||||||
|
xdg-entry-sound-comment = Configurações de áudio para dispositivos, alertas e aplicativos.
|
||||||
|
|
||||||
|
xdg-entry-system = Sistema e Contas
|
||||||
|
|
||||||
|
xdg-entry-time-language = Hora e Idioma
|
||||||
|
xdg-entry-time-language-comment = COMMENT
|
||||||
|
|
||||||
|
xdg-entry-touchpad = Touchpad
|
||||||
|
xdg-entry-touchpad-comment = Velocidade do touchpad, opções de clique, gestos.
|
||||||
|
|
||||||
|
xdg-entry-users = Usuários
|
||||||
|
xdg-entry-users-comment = Autenticação e contas de usuário.
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = Conexões VPN e perfis de conexão.
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = Papel de Parede
|
||||||
|
xdg-entry-wallpaper-comment = Imagens de plano de fundo, cores, e opções de exibição em slide.
|
||||||
|
|
||||||
|
xdg-entry-window-management = Gerenciamento de Janelas
|
||||||
|
xdg-entry-window-management-comment = Ação da tecla Super, opções de controle de janela e opções adicionais de janelas em mosaico.
|
||||||
|
|
||||||
|
xdg-entry-wired = Rede Cabeada
|
||||||
|
xdg-entry-wired-comment = Conexões de rede cabeada e perfis de conexão.
|
||||||
|
|
||||||
|
xdg-entry-wireless-comment = Conexões de rede sem fio e perfis de conexão.
|
||||||
|
|
||||||
|
xdg-entry-workspaces = Áreas de Trabalho
|
||||||
|
xdg-entry-workspaces-comment = Orientação e comportamento da área de trabalho.
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = Compatibilidade com aplicativos X11.
|
||||||
|
xdg-entry-x11-applications-comment = Dimensionamento de aplicativos com sistema de janelas X11 e atalhos globais.
|
||||||
|
|
||||||
## Networking: Wired
|
## Networking: Wired
|
||||||
|
|
||||||
wired = Por cabo
|
wired = Por cabo
|
||||||
|
|
|
||||||
89
i18n/sk/cosmic_settings.ftl
vendored
89
i18n/sk/cosmic_settings.ftl
vendored
|
|
@ -4,6 +4,95 @@ ok = OK
|
||||||
unknown = Neznáme
|
unknown = Neznáme
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
## Freedesktop desktop entries
|
||||||
|
|
||||||
|
xdg-entry-about = O systéme
|
||||||
|
xdg-entry-about-comment = Názov zariadenia, hardvérové informácie, predvolené nastavenia systému.
|
||||||
|
|
||||||
|
xdg-entry-a11y = Prístupnosť
|
||||||
|
xdg-entry-a11y-comment = Nastavenia prístupnosti.
|
||||||
|
|
||||||
|
xdg-entry-appearance = Vzhľad
|
||||||
|
xdg-entry-appearance-comment = Akcentové farby a témy.
|
||||||
|
|
||||||
|
xdg-entry-applications = Aplikácie
|
||||||
|
xdg-entry-applications-comment = Spravovať nastavenia aplikácií.
|
||||||
|
|
||||||
|
xdg-entry-bluetooth-comment = Spravovať Bluetooth zariadenia
|
||||||
|
|
||||||
|
xdg-entry-date-time = Dátum a čas
|
||||||
|
xdg-entry-date-time-comment = Časové pásmo, automatické nastavenie hodín a formátovanie času.
|
||||||
|
|
||||||
|
xdg-entry-default-apps = Predvolené aplikácie
|
||||||
|
xdg-entry-default-apps-comment = Predvolený webový prehliadač, e-mailový klient, správca súborov a ďalšie aplikácie.
|
||||||
|
|
||||||
|
xdg-entry-desktop = Pracovná plocha
|
||||||
|
xdg-entry-desktop-comment = Nastavenia pracovnej plochy, vzhľadu a správania okien
|
||||||
|
|
||||||
|
xdg-entry-displays = Displeje
|
||||||
|
xdg-entry-displays-comment = Možnosti displeja, grafické režimy a nočné svetlo.
|
||||||
|
|
||||||
|
xdg-entry-dock = Dok
|
||||||
|
xdg-entry-dock-comment = Voliteľný panel pre aplikácie a applety.
|
||||||
|
|
||||||
|
xdg-entry-input = Vstupné zariadenia
|
||||||
|
xdg-entry-input-comment = Klávesnica, kurzor a ďalšie.
|
||||||
|
|
||||||
|
xdg-entry-keyboard = Klávesnica
|
||||||
|
xdg-entry-keyboard-comment = Vstupné zdroje, prepínanie, zadávanie špeciálnych znakov, skratky.
|
||||||
|
|
||||||
|
xdg-entry-mouse = Myš
|
||||||
|
xdg-entry-mouse-comment = Rýchlosť myši, akcelerácia a prirodzené rolovanie.
|
||||||
|
|
||||||
|
xdg-entry-network = Sieť & Bezdrôtové
|
||||||
|
xdg-entry-network-comment = Spravovať sieťové pripojenia
|
||||||
|
|
||||||
|
xdg-entry-notifications = Oznámenia
|
||||||
|
xdg-entry-notifications-comment = Nerušiť, oznámenia na uzamknutej obrazovke a nastavenia pre aplikácie.
|
||||||
|
|
||||||
|
xdg-entry-panel = Panel
|
||||||
|
xdg-entry-panel-comment = Hlavný systémový panel pre menu a applety.
|
||||||
|
|
||||||
|
xdg-entry-power = Napájanie & Batéria
|
||||||
|
xdg-entry-power-comment = Režimy napájania a možnosti úspory energie.
|
||||||
|
|
||||||
|
xdg-entry-region-language = Región & Jazyk
|
||||||
|
xdg-entry-region-language-comment = Formátovanie dátumov, časov a čísel podľa vášho regiónu.
|
||||||
|
|
||||||
|
xdg-entry-sound = Zvuk
|
||||||
|
xdg-entry-sound-comment = Zvukové nastavenia pre zariadenia, upozornenia a aplikácie.s
|
||||||
|
|
||||||
|
xdg-entry-system = Systém & Účty
|
||||||
|
xdg-entry-system-comment = Systémové informácie, používatelia a firmware
|
||||||
|
|
||||||
|
xdg-entry-time-language = Čas & Jazyk
|
||||||
|
xdg-entry-time-language-comment = Nastavenia času a jazyka
|
||||||
|
|
||||||
|
xdg-entry-touchpad = Touchpad
|
||||||
|
xdg-entry-touchpad-comment = Rýchlosť touchpadu, možnosti kliknutia, gestá.
|
||||||
|
|
||||||
|
xdg-entry-users = Používatelia
|
||||||
|
xdg-entry-users-comment = Autentifikácia a používateľské účty.
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = VPN pripojenia a profily pripojení.
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = Tapeta
|
||||||
|
xdg-entry-wallpaper-comment = Obrázky tapiet, farby a možnosti prezentácie.
|
||||||
|
|
||||||
|
xdg-entry-window-management = Správa okien
|
||||||
|
xdg-entry-window-management-comment = Akcia klávesu Super, možnosti ovládania okien a ďalšie možnosti dlaždicovania okien.
|
||||||
|
|
||||||
|
xdg-entry-wired = Káblové
|
||||||
|
xdg-entry-wired-comment = Káblové pripojenia a profily pripojení.
|
||||||
|
|
||||||
|
xdg-entry-wireless-comment = Wi-Fi pripojenia a profily pripojení.
|
||||||
|
|
||||||
|
xdg-entry-workspaces = Pracovné priestory
|
||||||
|
xdg-entry-workspaces-comment = Orientácia a správanie pracovných priestorov.
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = Kompatibilita X11 aplikácií
|
||||||
|
xdg-entry-x11-applications-comment = Škálovanie X11 aplikácií a globálne skratky.
|
||||||
|
|
||||||
## Sieť & Bezdrôtové
|
## Sieť & Bezdrôtové
|
||||||
|
|
||||||
connections-and-profiles =
|
connections-and-profiles =
|
||||||
|
|
|
||||||
89
i18n/sv/cosmic_settings.ftl
vendored
89
i18n/sv/cosmic_settings.ftl
vendored
|
|
@ -4,6 +4,95 @@ ok = OK
|
||||||
unknown = Okänd
|
unknown = Okänd
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
## Freedesktop desktop entries
|
||||||
|
|
||||||
|
xdg-entry-about = Om
|
||||||
|
xdg-entry-about-comment = Enhetsnamn, hårdvaruinformation, standardinställningar för operativsystem.
|
||||||
|
|
||||||
|
xdg-entry-a11y = Tillgänglighet
|
||||||
|
xdg-entry-a11y-comment = Tillgänglighetsinställningar.
|
||||||
|
|
||||||
|
xdg-entry-appearance = Utseende
|
||||||
|
xdg-entry-appearance-comment = Accentfärger och teman.
|
||||||
|
|
||||||
|
xdg-entry-applications = Program
|
||||||
|
xdg-entry-applications-comment = Hantera programinställningar.
|
||||||
|
|
||||||
|
xdg-entry-bluetooth-comment = Hantera Bluetooth-enheter
|
||||||
|
|
||||||
|
xdg-entry-date-time = Datum & Tid
|
||||||
|
xdg-entry-date-time-comment = Tidzon, automatiska klockinställningar, och tidsformat.
|
||||||
|
|
||||||
|
xdg-entry-default-apps = Standardprogram
|
||||||
|
xdg-entry-default-apps-comment = Standardwebläsare, e-postklient, filbläddrare, och andra program.
|
||||||
|
|
||||||
|
xdg-entry-desktop = Skrivbord
|
||||||
|
|
||||||
|
xdg-entry-displays = Skärmar
|
||||||
|
xdg-entry-displays-comment = Skärmalternativ, grafiklägen, och nattljus.
|
||||||
|
|
||||||
|
xdg-entry-dock = Docka
|
||||||
|
xdg-entry-dock-comment = En valfri list för program och applets.
|
||||||
|
|
||||||
|
xdg-entry-input = Inmatningsenheter
|
||||||
|
xdg-entry-input-comment = Tangentbord, markör, etc.
|
||||||
|
|
||||||
|
xdg-entry-keyboard = Tangentbord
|
||||||
|
xdg-entry-keyboard-comment = Inmatningskällor, växling, specialtecken, genvägar.
|
||||||
|
|
||||||
|
xdg-entry-mouse = Mus
|
||||||
|
xdg-entry-mouse-comment = Mushastighet, acceleration, och naturlig rullning.
|
||||||
|
|
||||||
|
xdg-entry-network = Nätverk & Wi-Fi
|
||||||
|
xdg-entry-network-comment = Hantera nätverksanslutningar
|
||||||
|
|
||||||
|
xdg-entry-notifications = Aviseringar
|
||||||
|
xdg-entry-notifications-comment = Stör ej, aviseringar på låsskärm, och inställningar per program.
|
||||||
|
|
||||||
|
xdg-entry-panel = Panel
|
||||||
|
xdg-entry-panel-comment = Primär systemfält för menyer och applets.
|
||||||
|
|
||||||
|
xdg-entry-power = Ström & Batteri
|
||||||
|
xdg-entry-power-comment = Strömalternativ och energisparalternativ.
|
||||||
|
|
||||||
|
xdg-entry-region-language = Region & språk
|
||||||
|
xdg-entry-region-language-comment = Formatera datum, tider och siffror baserat på din region.
|
||||||
|
|
||||||
|
xdg-entry-sound = Ljud
|
||||||
|
xdg-entry-sound-comment = Ljudinställningar för enhter, larm och program.
|
||||||
|
|
||||||
|
xdg-entry-startup-apps = Uppstartsprogram
|
||||||
|
xdg-entry-startup-apps-comment = Konfigurera program som körs vid inloggning.
|
||||||
|
|
||||||
|
xdg-entry-system = System & konton
|
||||||
|
|
||||||
|
xdg-entry-time-language = Tid & språk
|
||||||
|
|
||||||
|
xdg-entry-touchpad = Pekplatta
|
||||||
|
xdg-entry-touchpad-comment = Pekplattans hastighet, klickalternativ, gester.
|
||||||
|
|
||||||
|
xdg-entry-users = Användare
|
||||||
|
xdg-entry-users-comment = Autentisering och användarkonton.
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = VPN-anslutningar och anslutningsprofiler.
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = Bakgrundsbild
|
||||||
|
xdg-entry-wallpaper-comment = Bakgrundsbilder, färger, och bildspelsalternativ.
|
||||||
|
|
||||||
|
xdg-entry-window-management = Fönsterhantering
|
||||||
|
xdg-entry-window-management-comment = Åtgärd för Super-tangent, fönsterkontroll alternativ, och ytterligare fönsterplacerings alternativ.
|
||||||
|
|
||||||
|
xdg-entry-wired = Tråndbunden anslutning
|
||||||
|
xdg-entry-wired-comment = Trådbundna anslutningar och anslutningsprofiler.
|
||||||
|
|
||||||
|
xdg-entry-wireless-comment = Wi-Fi-anslutningar och anslutningsprofiler.
|
||||||
|
|
||||||
|
xdg-entry-workspaces = Arbetsytor
|
||||||
|
xdg-entry-workspaces-comment = Arbetsytors orientering och beteende.
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = X11 program kompatibilitet
|
||||||
|
xdg-entry-x11-applications-comment = Applikationsskalning för X11 fönstersystem och globala genvägar.
|
||||||
|
|
||||||
## Skrivbord
|
## Skrivbord
|
||||||
|
|
||||||
desktop = Skrivbord
|
desktop = Skrivbord
|
||||||
|
|
|
||||||
91
i18n/zh-CN/cosmic_settings.ftl
vendored
91
i18n/zh-CN/cosmic_settings.ftl
vendored
|
|
@ -4,6 +4,97 @@ ok = 确定
|
||||||
unknown = 未知
|
unknown = 未知
|
||||||
number = { $number }
|
number = { $number }
|
||||||
|
|
||||||
|
## Freedesktop desktop entries
|
||||||
|
|
||||||
|
xdg-entry-about = 关于
|
||||||
|
xdg-entry-about-comment = 设备名称、硬件信息、操作系统默认设置
|
||||||
|
|
||||||
|
xdg-entry-a11y = 无障碍
|
||||||
|
xdg-entry-a11y-comment = 无障碍设置
|
||||||
|
|
||||||
|
xdg-entry-appearance = 外观
|
||||||
|
xdg-entry-appearance-comment = 强调色和个性化
|
||||||
|
|
||||||
|
xdg-entry-applications = 应用程序
|
||||||
|
xdg-entry-applications-comment = 管理应用程序设置
|
||||||
|
|
||||||
|
xdg-entry-bluetooth-comment = 管理蓝牙设备
|
||||||
|
|
||||||
|
xdg-entry-date-time = 日期和时间
|
||||||
|
xdg-entry-date-time-comment = 时区,自动时钟设置和时间格式
|
||||||
|
|
||||||
|
xdg-entry-default-apps = 默认应用程序
|
||||||
|
xdg-entry-default-apps-comment = 默认网络浏览器、邮件客户端、文件浏览器和其他应用程序
|
||||||
|
|
||||||
|
xdg-entry-desktop = 桌面
|
||||||
|
|
||||||
|
xdg-entry-displays = 显示器
|
||||||
|
xdg-entry-displays-comment = 显示器选项、图形模式和夜间模式
|
||||||
|
|
||||||
|
xdg-entry-dock = 程序坞
|
||||||
|
xdg-entry-dock-comment = 可选的应用程序和小部件的工具栏
|
||||||
|
|
||||||
|
xdg-entry-input = 输入设备
|
||||||
|
xdg-entry-input-comment = 键盘、光标等
|
||||||
|
|
||||||
|
xdg-entry-keyboard = 键盘
|
||||||
|
xdg-entry-keyboard-comment = 输入源、切换、特殊字符输入、快捷键
|
||||||
|
|
||||||
|
xdg-entry-mouse = 鼠标
|
||||||
|
xdg-entry-mouse-comment = 鼠标速度、加速度和自然滚动
|
||||||
|
|
||||||
|
xdg-entry-network = 网络和无线
|
||||||
|
xdg-entry-network-comment = 管理网络连接
|
||||||
|
|
||||||
|
xdg-entry-notifications = 通知
|
||||||
|
xdg-entry-notifications-comment = 勿扰模式、锁屏通知和每个应用程序的设置
|
||||||
|
|
||||||
|
xdg-entry-panel = 面板
|
||||||
|
xdg-entry-panel-comment = 主系统栏,用于菜单和小部件。
|
||||||
|
|
||||||
|
xdg-entry-power = 电源和电池
|
||||||
|
xdg-entry-power-comment = 电源模式和节能选项
|
||||||
|
|
||||||
|
xdg-entry-region-language = 区域和语言
|
||||||
|
xdg-entry-region-language-comment = 根据您的区域格式化日期、时间和数字
|
||||||
|
|
||||||
|
xdg-entry-sound = 声音
|
||||||
|
xdg-entry-sound-comment = 设备、警报和应用程序的音频设置
|
||||||
|
|
||||||
|
xdg-entry-startup-apps = 自动启动应用程序
|
||||||
|
xdg-entry-startup-apps-comment = 配置登录时运行的应用程序。
|
||||||
|
|
||||||
|
xdg-entry-system = 系统和账户
|
||||||
|
xdg-entry-system-comment = 时间与语言
|
||||||
|
|
||||||
|
xdg-entry-time-language = Time & Language
|
||||||
|
xdg-entry-time-language-comment = COMMENT.
|
||||||
|
|
||||||
|
xdg-entry-touchpad = 触摸板
|
||||||
|
xdg-entry-touchpad-comment = 触摸板速度、点击选项和手势
|
||||||
|
|
||||||
|
xdg-entry-users = 用户
|
||||||
|
xdg-entry-users-comment = 身份验证和用户账户
|
||||||
|
|
||||||
|
xdg-entry-vpn-comment = VPN连接和配置文件
|
||||||
|
|
||||||
|
xdg-entry-wallpaper = 壁纸
|
||||||
|
xdg-entry-wallpaper-comment = 壁纸图片、颜色和幻灯片选项
|
||||||
|
|
||||||
|
xdg-entry-window-management = 窗口管理
|
||||||
|
xdg-entry-window-management-comment = Super键操作、窗口控制选项和额外的窗口平铺选项
|
||||||
|
|
||||||
|
xdg-entry-wired = 有线连接
|
||||||
|
xdg-entry-wired-comment = 有线连接和配置文件
|
||||||
|
|
||||||
|
xdg-entry-wireless-comment = Wi-Fi连接和配置文件
|
||||||
|
|
||||||
|
xdg-entry-workspaces = 工作区
|
||||||
|
xdg-entry-workspaces-comment = 工作区方向和行为
|
||||||
|
|
||||||
|
xdg-entry-x11-applications = X11应用程序兼容性
|
||||||
|
xdg-entry-x11-applications-comment = X11窗口系统应用程序缩放和全局快捷键
|
||||||
|
|
||||||
## Network & Wireless
|
## Network & Wireless
|
||||||
|
|
||||||
connections-and-profiles =
|
connections-and-profiles =
|
||||||
|
|
|
||||||
4
justfile
4
justfile
|
|
@ -31,14 +31,14 @@ install:
|
||||||
install -Dm0644 {{'resources' / 'polkit-1' / 'rules.d' / 'cosmic-settings.rules'}} {{polkit-rules-dst}}
|
install -Dm0644 {{'resources' / 'polkit-1' / 'rules.d' / 'cosmic-settings.rules'}} {{polkit-rules-dst}}
|
||||||
install -Dm0644 {{'resources' / 'polkit-1' / 'actions' / appid + '.Users.policy'}} {{policy-users-dst}}
|
install -Dm0644 {{'resources' / 'polkit-1' / 'actions' / appid + '.Users.policy'}} {{policy-users-dst}}
|
||||||
install -Dm0755 {{cargo-target-dir / 'release' / name}} {{bin-dst}}
|
install -Dm0755 {{cargo-target-dir / 'release' / name}} {{bin-dst}}
|
||||||
cd resources/applications && find * -type f -exec install -Dm0644 '{}' '{{appdir}}/{}' \;
|
cd target/xdgen && find * -type f -exec install -Dm0644 '{}' '{{appdir}}/{}' \;
|
||||||
cd resources/default_schema && find * -type f -exec install -Dm0644 '{}' '{{default-schema-target}}/{}' \;
|
cd resources/default_schema && find * -type f -exec install -Dm0644 '{}' '{{default-schema-target}}/{}' \;
|
||||||
cd resources/icons && find * -type f -exec install -Dm0644 '{}' '{{iconsdir}}/{}' \;
|
cd resources/icons && find * -type f -exec install -Dm0644 '{}' '{{iconsdir}}/{}' \;
|
||||||
|
|
||||||
# Uninstalls everything (requires same arguments as given to install)
|
# Uninstalls everything (requires same arguments as given to install)
|
||||||
uninstall:
|
uninstall:
|
||||||
rm {{bin-dst}} {{metainfo-dst}} {{polkit-rules-dst}} {{policy-users-dst}}
|
rm {{bin-dst}} {{metainfo-dst}} {{polkit-rules-dst}} {{policy-users-dst}}
|
||||||
cd resources/applications && find * -type f -exec rm '{{appdir}}/{}' \;
|
cd target/xdgen && find * -type f -exec rm '{{appdir}}/{}' \;
|
||||||
cd resources/default_schema && find * -type f -exec rm '{{default-schema-target}}/{}' \;
|
cd resources/default_schema && find * -type f -exec rm '{{default-schema-target}}/{}' \;
|
||||||
cd resources/icons && find * -type f -exec rm '{{iconsdir}}/{}' \;
|
cd resources/icons && find * -type f -exec rm '{{iconsdir}}/{}' \;
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -1,37 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=About
|
Name=About
|
||||||
Name[ar]=عن
|
|
||||||
Name[cs]=O systému
|
|
||||||
Name[zh_CN]=关于
|
|
||||||
Name[pl]=O systemie
|
|
||||||
Name[hu]=Rendszerinformáció
|
|
||||||
Name[pt]=Sobre
|
|
||||||
Name[nl]=Over
|
|
||||||
Name[af]=Oor
|
|
||||||
Name[sk]=O systéme
|
|
||||||
Name[sv]=Om
|
|
||||||
Name[es]=A cerca de
|
|
||||||
Name[fr]=À propos
|
|
||||||
Name[it]=Informazioni su
|
|
||||||
Comment=Device name, hardware information, operating system defaults.
|
Comment=Device name, hardware information, operating system defaults.
|
||||||
Comment[ar]=اسم الجهاز، معلومات العتاد، إعدادات نظام التشغيل المبدئية.
|
|
||||||
Comment[cs]=Název zařízení, informace o hardwaru, výchozí nastavení operačního systému
|
|
||||||
Comment[zh_CN]=设备名称、硬件信息、操作系统默认设置
|
|
||||||
Comment[pl]=Nazwa urządzenia, informacje o sprzęcie i systemie operacyjnym.
|
|
||||||
Comment[hu]=Eszköznév, hardverinformációk és az operációs rendszer alapértelmezett beállításai.
|
|
||||||
Comment[pt]=Nome do dispositivo, informações de hardware e padrões do sistema operacional.
|
|
||||||
Comment[nl]=Apparaatnaam, hardware-informatie, standaardinstellingen van het besturingssysteem.
|
|
||||||
Comment[af]=Toestelnaam, hardeware-inligtings, standaardinstellings van die bedryfstelsel.
|
|
||||||
Comment[sk]=Názov zariadenia, hardvérové informácie, predvolené nastavenia systému.
|
|
||||||
Comment[sv]=Enhetsnamn, hårdvaruinformation, standardinställningar för operativsystem.
|
|
||||||
Comment[es]=Nombre del dispositivo, información de hardware y valores del sistema operativo.
|
|
||||||
Comment[fr]=Nom de l'appareil, informations sur le matériel et paramètres par défaut du système d'exploitation.
|
|
||||||
Comment[it]=Nome del dispositivo, informazioni sull'hardware e sul sistema operativo.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings about
|
Exec=cosmic-settings about
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;About
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-about
|
Icon=preferences-about
|
||||||
|
|
|
||||||
|
|
@ -1,37 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Accessibility
|
Name=Accessibility
|
||||||
Name[ar]=الإتاحة
|
Comment=Screen reader, magnifier, high contrast, and color filters.
|
||||||
Name[cs]=Přístupnost
|
|
||||||
Name[zh_CN]=无障碍
|
|
||||||
Name[hu]=Akadálymentesség
|
|
||||||
Name[pt]=Acessibilidade
|
|
||||||
Name[nl]=Toegankelijkheden
|
|
||||||
Name[af]=Toeganklikhede
|
|
||||||
Name[sk]=Prístupnosť
|
|
||||||
Name[sv]=Tillgänglighet
|
|
||||||
Name[es]=Accesibilidad
|
|
||||||
Name[pl]=Dostępność
|
|
||||||
Name[fr]=Accessibilité
|
|
||||||
Name[it]=Accessibilità
|
|
||||||
Comment=Accessibility settings.
|
|
||||||
Comment[ar]=إعدادات الإتاحة
|
|
||||||
Comment[cs]=Nastavení přístupnosti
|
|
||||||
Comment[zh_CN]=无障碍设置
|
|
||||||
Comment[hu]=Akadálymentességi beállítások.
|
|
||||||
Comment[pt]=Configurações de acessibilidade.
|
|
||||||
Comment[nl]=Toegankelijkheidsinstellingen.
|
|
||||||
Comment[af]=Toeganklikheidsinstellings.
|
|
||||||
Comment[sk]=Nastavenia prístupnosti.
|
|
||||||
Comment[sv]=Tillgänglighetsinställningar.
|
|
||||||
Comment[es]=Configuración de accesibilidad.
|
|
||||||
Comment[pl]=Ustawienia dostępności.
|
|
||||||
Comment[fr]=Paramètres d'accessibilité.
|
|
||||||
Comment[it]=Impostazioni accessibilità.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings accessibility
|
Exec=cosmic-settings accessibility
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC;theme;
|
Keywords=COSMIC;Accessibility;A11y;Screen;Reader;Magnifier;Contrast;Color;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-desktop-accessibility
|
Icon=preferences-desktop-accessibility
|
||||||
|
|
|
||||||
|
|
@ -1,37 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Appearance
|
Name=Appearance
|
||||||
Name[ar]=المظهر
|
|
||||||
Name[cs]=Vzhled
|
|
||||||
Name[zh_CN]=外观
|
|
||||||
Name[pl]=Wygląd
|
|
||||||
Name[hu]=Megjelenés
|
|
||||||
Name[pt]=Aparência
|
|
||||||
Name[nl]=Weergave
|
|
||||||
Name[af]=Weergawe
|
|
||||||
Name[sk]=Vzhľad
|
|
||||||
Name[sv]=Utseende
|
|
||||||
Name[es]=Apariencia
|
|
||||||
Name[fr]=Apparence
|
|
||||||
Name[it]=Aspetto
|
|
||||||
Comment=Accent colors and theming.
|
Comment=Accent colors and theming.
|
||||||
Comment[ar]=ألوان التمييز والسمات.
|
|
||||||
Comment[cs]=Barvy zvýraznění a motivy
|
|
||||||
Comment[zh_CN]=强调色和个性化
|
|
||||||
Comment[pl]=Kolory akcentów i styl.
|
|
||||||
Comment[hu]=Kiemelő színek és téma.
|
|
||||||
Comment[pt]=Cores de destaque e temas.
|
|
||||||
Comment[nl]=Accentkleuren en thema's.
|
|
||||||
Comment[af]=Aksentkleure en temas.
|
|
||||||
Comment[sk]=Akcentové farby a témy.
|
|
||||||
Comment[sv]=Accentfärger och teman.
|
|
||||||
Comment[es]=Colores de énfasis y temas.
|
|
||||||
Comment[fr]=Couleurs d'accentuation et thèmes.
|
|
||||||
Comment[it]=Colore d'accento e temi.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings appearance
|
Exec=cosmic-settings appearance
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC;theme;
|
Keywords=COSMIC;Accent;Color;Icon;Font;Theme
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-appearance
|
Icon=preferences-appearance
|
||||||
|
|
|
||||||
|
|
@ -1,37 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Applications
|
Name=Applications
|
||||||
Name[ar]=التطبيقات
|
Comment=Default applications, startup applications, and X11 application compatibility settings.
|
||||||
Name[cs]=Aplikace
|
|
||||||
Name[zh_CN]=应用程序
|
|
||||||
Name[hu]=Alkalmazások
|
|
||||||
Name[pt]=Aplicativos
|
|
||||||
Name[nl]=Toepassingen
|
|
||||||
Name[af]=Toepassings
|
|
||||||
Name[sk]=Aplikácie
|
|
||||||
Name[sv]=Program
|
|
||||||
Name[es]=Aplicaciones
|
|
||||||
Name[pl]=Aplikacje
|
|
||||||
Name[fr]=Applications
|
|
||||||
Name[it]=Applicazioni
|
|
||||||
Comment=Manage application settings.
|
|
||||||
Comment[ar]=أدر إعدادات التطبيق.
|
|
||||||
Comment[cs]=Správa nastavení aplikací
|
|
||||||
Comment[zh_CN]=管理应用程序设置
|
|
||||||
Comment[hu]=Alkalmazásbeállítások kezelése.
|
|
||||||
Comment[pt]=Gerenciar configurações de aplicativos.
|
|
||||||
Comment[nl]=Instellingen voor toepassingen beheren.
|
|
||||||
Comment[af]=Bestuur toepassingsinstellings.
|
|
||||||
Comment[sk]=Spravovať nastavenia aplikácií.
|
|
||||||
Comment[sv]=Hantera programinställningar.
|
|
||||||
Comment[es]=Gestionar configuración de aplicaciones.
|
|
||||||
Comment[pl]=Zarządzaj ustawieniami aplikacji.
|
|
||||||
Comment[fr]=Gérer les paramètres de l'application.
|
|
||||||
Comment[it]=Gestione delle impostazioni delle applicazioni.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings applications
|
Exec=cosmic-settings applications
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Default;Application;Startup;X11;Compatibility
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-applications
|
Icon=preferences-applications
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Bluetooth
|
Name=Bluetooth
|
||||||
Name[ar]=البلوتوث
|
Comment=Manage Bluetooth devices.
|
||||||
Name[cs]=Bluetooth
|
|
||||||
Name[zh_CN]=蓝牙
|
|
||||||
Name[pl]=Bluetooth
|
|
||||||
Name[hu]=Bluetooth
|
|
||||||
Name[pt]=Bluetooth
|
|
||||||
Name[sk]=Bluetooth
|
|
||||||
Name[sv]=Bluetooth
|
|
||||||
Name[es]=Bluetooth
|
|
||||||
Name[fr]=Bluetooth
|
|
||||||
Name[it]=Bluetooth
|
|
||||||
Comment=Manage Bluetooth devices
|
|
||||||
Comment[ar]=أدر أجهزة البلوتوث
|
|
||||||
Comment[cs]=Správa Bluetooth zařízení
|
|
||||||
Comment[zh_CN]=管理蓝牙设备
|
|
||||||
Comment[pl]=Zarządzaj urządzeniami Bluetooth
|
|
||||||
Comment[hu]=Bluetooth-eszközök kezelése
|
|
||||||
Comment[pt]=Gerenciar dispositivos Bluetooth
|
|
||||||
Comment[sk]=Spravovať Bluetooth zariadenia
|
|
||||||
Comment[sv]=Hantera Bluetooth-enheter
|
|
||||||
Comment[nl]=Bluetooth-apparaten beheren
|
|
||||||
Comment[af]=Bestuur Bluetooth-toestelle
|
|
||||||
Comment[es]=Gestionar dispositivos Bluetooth
|
|
||||||
Comment[fr]=Gérer les appareils Bluetooth
|
|
||||||
Comment[it]=Gestione dispositivi Bluetooth
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings bluetooth
|
Exec=cosmic-settings bluetooth
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Bluetooth;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-bluetooth
|
Icon=preferences-bluetooth
|
||||||
|
|
|
||||||
|
|
@ -1,37 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Date & Time
|
Name=Date & Time
|
||||||
Name[ar]=التاريخ والوقت
|
|
||||||
Name[cs]=Datum a čas
|
|
||||||
Name[zh_CN]=日期和时间
|
|
||||||
Name[hu]=Dátum és idő
|
|
||||||
Name[pl]=Data i godzina
|
|
||||||
Name[pt]=Data e Hora
|
|
||||||
Name[nl]=Datum en tijd
|
|
||||||
Name[af]=Datum en tyd
|
|
||||||
Name[sk]=Dátum a čas
|
|
||||||
Name[sv]=Datum & Tid
|
|
||||||
Name[es]=Fecha y Hora
|
|
||||||
Name[fr]=Date et heure
|
|
||||||
Name[it]=Data e Ora
|
|
||||||
Comment=Time zone, automatic clock settings, and time formatting.
|
Comment=Time zone, automatic clock settings, and time formatting.
|
||||||
Comment[ar]=المنطقة الزمنية وإعدادات الساعة التلقائية وتنسيق الوقت.
|
|
||||||
Comment[cs]=Časová zóna, automatické nastavení hodin a formátování času
|
|
||||||
Comment[zh_CN]=时区,自动时钟设置和时间格式
|
|
||||||
Comment[pl]=Strefy czasowe, automatyczna konfiguracja zegara i format wyświetlania czasu.
|
|
||||||
Comment[hu]=Időzóna, automatikus órabeállítások és időformátum.
|
|
||||||
Comment[pt]=Fuso horário, hora automática e formatação.
|
|
||||||
Comment[nl]=Tijdszone, automatische klokinstellingen en tijdformatering.
|
|
||||||
Comment[af]=Tydsone, outomatiese klokinstellings en tydformatering.
|
|
||||||
Comment[sk]=Časové pásmo, automatické nastavenie hodín a formátovanie času.
|
|
||||||
Comment[sv]=Tidzon, automatiska klockinställningar, och tidsformat.
|
|
||||||
Comment[es]=Zona horaria, configuración automática del reloj y formatos de hora.
|
|
||||||
Comment[fr]=Fuseau horaire, réglage de l'heure automatique et formatage de l'heure.
|
|
||||||
Comment[it]=Fuso orario, impostazione automatica dell'ora e del formato.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings date-time
|
Exec=cosmic-settings date-time
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords= COSMIC;Time;Zone;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-date-and-time
|
Icon=preferences-date-and-time
|
||||||
|
|
|
||||||
|
|
@ -1,37 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Default applications
|
Name=Default applications
|
||||||
Name[ar]=التطبيقات المبدئية
|
|
||||||
Name[cs]=Výchozí aplikace
|
|
||||||
Name[zh_CN]=默认应用程序
|
|
||||||
Name[pl]=Domyślne aplikacje
|
|
||||||
Name[hu]=Alapértelmezett alkalmazások
|
|
||||||
Name[pt]=Aplicativos padrão
|
|
||||||
Name[nl]=Standaard toepassingen
|
|
||||||
Name[af]=Standaard toepassings
|
|
||||||
Name[sk]=Predvolené aplikácie
|
|
||||||
Name[sv]=Standardprogram
|
|
||||||
Name[es]=Aplicaciones predeterminadas
|
|
||||||
Name[fr]=Applications par défaut
|
|
||||||
Name[it]=Applicazioni predefinite
|
|
||||||
Comment=Default web browser, mail client, file browser, and other applications.
|
Comment=Default web browser, mail client, file browser, and other applications.
|
||||||
Comment[ar]=متصفح الويب المبدئي، عميل البريد، متصفح الملفات، والتطبيقات الأخرى.
|
|
||||||
Comment[cs]=Výchozí webový prohlížeč, poštovní klient, prohlížeč souborů a další aplikace
|
|
||||||
Comment[zh_CN]=默认网络浏览器、邮件客户端、文件浏览器和其他应用程序
|
|
||||||
Comment[pl]=Domyślna przeglądarka, klient poczty e-mail, menedżer plików i inne aplikacje.
|
|
||||||
Comment[hu]=Alapértelmezett böngésző, levelezőprogram, fájlkezelő és egyéb alkalmazások.
|
|
||||||
Comment[pt]=Navegador web padrão, cliente de email, gestor de arquivos e outros aplicativos.
|
|
||||||
Comment[nl]=Standaard webbrowser, mailprogramma, bestandsbeheerder en andere apps.
|
|
||||||
Comment[af]=Standaard webblaaier, e-poskliënt, lêerblaaier en ander toepassings.
|
|
||||||
Comment[sk]=Predvolený webový prehliadač, e-mailový klient, správca súborov a ďalšie aplikácie.
|
|
||||||
Comment[sv]=Standardwebläsare, e-postklient, filbläddrare, och andra program.
|
|
||||||
Comment[es]=Navegador web predeterminado, cliente de correo, explorador de archivos y otras aplicaciones.
|
|
||||||
Comment[fr]=Navigateur web, client mail, explorateur de fichiers, et autres applications.
|
|
||||||
Comment[it]=Browser web predefinito, client di posta, esplora file e altre applicazioni.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings default-apps
|
Exec=cosmic-settings default-apps
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Default;Application
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-default-applications
|
Icon=preferences-default-applications
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Desktop
|
Name=Desktop
|
||||||
Name[ar]=سطح المكتب
|
Comment=Wallpaper, appearance, panel, dock, window management and workspace settings.
|
||||||
Name[cs]=Plocha
|
|
||||||
Name[zh_CN]=桌面
|
|
||||||
Name[pl]=Pulpit
|
|
||||||
Name[hu]=Asztal
|
|
||||||
Name[pt]=Área de Trabalho
|
|
||||||
Name[nl]=Bureaublad
|
|
||||||
Name[sk]=Pracovná plocha
|
|
||||||
Name[sv]=Skrivbord
|
|
||||||
Name[es]=Escritorio
|
|
||||||
Name[fr]=Bureau
|
|
||||||
Name[it]=Desktop
|
|
||||||
Comment=
|
|
||||||
Comment[cs]=Nastavení pracovní plochy, vzhledu a chování oken
|
|
||||||
Comment[sk]=Nastavenia pracovnej plochy, vzhľadu a správania okien
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings desktop
|
Exec=cosmic-settings desktop
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Desktop;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-desktop
|
Icon=preferences-desktop
|
||||||
|
|
|
||||||
|
|
@ -1,37 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Displays
|
Name=Displays
|
||||||
Name[ar]=شاشات العرض
|
Comment=Manage display configuration settings.
|
||||||
Name[cs]=Obrazovky
|
|
||||||
Name[zh_CN]=显示器
|
|
||||||
Name[pl]=Ekrany
|
|
||||||
Name[hu]=Kijelzők
|
|
||||||
Name[pt]=Telas
|
|
||||||
Name[nl]=Beeldschermen
|
|
||||||
Name[af]=Vertoonskerme
|
|
||||||
Name[sk]=Displeje
|
|
||||||
Name[sv]=Skärmar
|
|
||||||
Name[es]=Pantallas
|
|
||||||
Name[fr]=Écrans
|
|
||||||
Name[it]=Schermo
|
|
||||||
Comment=Display options, graphics modes, and night light.
|
|
||||||
Comment[ar]=خيارات العرض، وأنماط الرسوميات، والوضع الليلي.
|
|
||||||
Comment[cs]=Možnosti obrazovek, grafické režimy a noční světlo
|
|
||||||
Comment[zh_CN]=显示器选项、图形模式和夜间模式
|
|
||||||
Comment[pl]=Ustawienia wyświetlania, opcje grafiki i podświetlanie nocne.
|
|
||||||
Comment[hu]=Kijelzőbeállítások, grafikus módok és éjszakai fény.
|
|
||||||
Comment[pt]=Opções de tela, monitores, modos gráficos e luz noturna.
|
|
||||||
Comment[nl]=Weergaveopties, grafische modi en nachtlicht.
|
|
||||||
Comment[af]=Vertoonopsies, grafiese modusse en naglig.
|
|
||||||
Comment[sk]=Možnosti displeja, grafické režimy a nočné svetlo.
|
|
||||||
Comment[sv]=Skärmalternativ, grafiklägen, och nattljus.
|
|
||||||
Comment[es]=Opciones de pantalla, modos gráficos y luz nocturna.
|
|
||||||
Comment[fr]=Options d'affichage, modes graphiques et éclairage nocturne.
|
|
||||||
Comment[it]=Opzioni dello schermo, impostazioni e luce notturna.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings displays
|
Exec=cosmic-settings displays
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Display;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-displays
|
Icon=preferences-displays
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Dock
|
Name=Dock
|
||||||
Name[ar]=الإرساء
|
|
||||||
Name[cs]=Dok
|
|
||||||
Name[zh_CN]=程序坞
|
|
||||||
Name[pl]=Dok
|
|
||||||
Name[hu]=Dokk
|
|
||||||
Name[pt]=Dock
|
|
||||||
Name[sk]=Dok
|
|
||||||
Name[sv]=Docka
|
|
||||||
Name[es]=Panel
|
|
||||||
Name[fr]=Dock
|
|
||||||
Name[it]=Dock
|
|
||||||
Comment=An optional bar for apps and applets.
|
Comment=An optional bar for apps and applets.
|
||||||
Comment[ar]=شريط اختياري للتطبيقات والبريمجات.
|
|
||||||
Comment[cs]=Volitelná lišta pro aplikace a applety
|
|
||||||
Comment[zh_CN]=可选的应用程序和小部件的工具栏
|
|
||||||
Comment[pl]=Panel z przypiętymi aplikacjami w zasobniku i innymi apletami.
|
|
||||||
Comment[hu]=Egy opcionális sáv alkalmazásokhoz és kisalkalmazásokhoz.
|
|
||||||
Comment[pt]=Painel com aplicativos fixados e outros miniaplicativos.
|
|
||||||
Comment[sk]=Voliteľný panel pre aplikácie a applety.
|
|
||||||
Comment[sv]=En valfri list för program och applets.
|
|
||||||
Comment[nl]=Een optionele balk voor apps en applets.
|
|
||||||
Comment[af]='n Opsionele balk vir programme en applets.
|
|
||||||
Comment[es]=Panel opcional para aplicaciones y otros applets.
|
|
||||||
Comment[fr]=Barre facultative pour les applications et les applets.
|
|
||||||
Comment[it]=Una barra opzionale per le applicazioni e le applet.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings dock
|
Exec=cosmic-settings dock
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Dock;Panel;Applet
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-dock
|
Icon=preferences-dock
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Input Devices
|
Name=Input Devices
|
||||||
Name[ar]=أجهزة الإدخال
|
Comment=Keyboard and mouse settings.
|
||||||
Name[cs]=Vstupní zařízení
|
|
||||||
Name[zh_CN]=输入设备
|
|
||||||
Name[pl]=Urządzenia wprowadzania danych
|
|
||||||
Name[hu]=Beviteli eszközök
|
|
||||||
Name[pt]=Dispositivos de Entrada
|
|
||||||
Name[nl]=Invoerapparaten
|
|
||||||
Name[af]=Invoertoestelle
|
|
||||||
Name[sk]=Vstupné zariadenia
|
|
||||||
Name[sv]=Inmatningsenheter
|
|
||||||
Name[es]=Dispositivos de entrada
|
|
||||||
Name[fr]=Périphériques d'entrée
|
|
||||||
Name[it]=Dispositivi di immissione
|
|
||||||
Comment=Keyboard, cursor, etc.
|
|
||||||
Comment[ar]=لوحة المفاتيح، المؤشر، إلخ.
|
|
||||||
Comment[cs]=Klávesnice, kurzor a další
|
|
||||||
Comment[zh_CN]=键盘、光标等
|
|
||||||
Comment[nl]=Toetsenbord, muis, enz.
|
|
||||||
Comment[af]=Sleutelbord, muis, ens.
|
|
||||||
Comment[hu]=Billentyűzet, mutató, stb.
|
|
||||||
Comment[sk]=Klávesnica, kurzor a ďalšie.
|
|
||||||
Comment[sv]=Tangentbord, markör, etc.
|
|
||||||
Comment[es]=Teclado, ratón, etc.
|
|
||||||
Comment[fr]=Clavier, curseur, etc.
|
|
||||||
Comment[it]=Tastiera, mouse, ecc.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings input
|
Exec=cosmic-settings input
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Input;Keyboard;Mouse;Mice;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-input-devices
|
Icon=preferences-input-devices
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Keyboard
|
Name=Keyboard
|
||||||
Name[ar]=لوحة المفاتيح
|
|
||||||
Name[cs]=Klávesnice
|
|
||||||
Name[zh_CN]=键盘
|
|
||||||
Name[pl]=Klawiatura
|
|
||||||
Name[hu]=Billentyűzet
|
|
||||||
Name[pt]=Teclado
|
|
||||||
Name[nl]=Toetsenbord
|
|
||||||
Name[sk]=Klávesnica
|
|
||||||
Name[sv]=Tangentbord
|
|
||||||
Name[es]=Teclado
|
|
||||||
Name[fr]=Clavier
|
|
||||||
Name[it]=Tastiera
|
|
||||||
Comment=Input sources, switching, special character entry, shortcuts.
|
Comment=Input sources, switching, special character entry, shortcuts.
|
||||||
Comment[ar]=مصادر الإدخال، التبديل، إدخال الأحرف الخاصة، الاختصارات.
|
|
||||||
Comment[cs]=Vstupní zdroje, přepínání, vkládání speciálních znaků, zkratky
|
|
||||||
Comment[zh_CN]=输入源、切换、特殊字符输入、快捷键
|
|
||||||
Comment[pl]=Źródła wprowadzania, przełączanie, specjalne klawisze, skróty.
|
|
||||||
Comment[hu]=Bemeneti források, váltásuk, speciális karakterek, billentyűparancsok.
|
|
||||||
Comment[pt]=Métodos de entrada, entrada de caracteres especiais, atalhos.
|
|
||||||
Comment[nl]=Invoermethodes, speciale tekens, en sneltoetsen.
|
|
||||||
Comment[sk]=Vstupné zdroje, prepínanie, zadávanie špeciálnych znakov, skratky.
|
|
||||||
Comment[sv]=Inmatningskällor, växling, specialtecken, genvägar.
|
|
||||||
Comment[es]=Entrada de teclado, conmutación, carácteres especiales, atajos.
|
|
||||||
Comment[fr]=Sources d'entrée, commutation, saisie de caractères spéciaux, raccourcis.
|
|
||||||
Comment[it]=Sorgenti di immissione, switch, caratteri speciali e scorciatoie.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings keyboard
|
Exec=cosmic-settings keyboard
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Keyboard;Input;Source;Shortcuts;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-desktop-keyboard
|
Icon=preferences-desktop-keyboard
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=X11 Applications Compatibility
|
Name=X11 Applications Compatibility
|
||||||
Name[ar]=توافق تطبيقات اكس11
|
Comment=X11 window system application scaling, primary display, and global shortcuts.
|
||||||
Name[cs]=Kompatibilita aplikací X11
|
|
||||||
Name[zh_CN]=X11应用程序兼容性
|
|
||||||
Name[hu]=X11 alkalmazások támogatása
|
|
||||||
Name[pt]=Compatibilidade com aplicativos X11.
|
|
||||||
Name[nl]=Compatibiliteit met X11-toepassingen.
|
|
||||||
Name[sk]=Kompatibilita X11 aplikácií
|
|
||||||
Name[sv]=X11 program kompatibilitet
|
|
||||||
Name[es]=Compatibilidad para aplicaciones X11
|
|
||||||
Name[pl]=Kompatybilność aplikacji X11
|
|
||||||
Name[fr]=Compatibilité des applications X11
|
|
||||||
Name[it]=Compatibilità applicazioni X11
|
|
||||||
Comment=X11 Window system application scaling and Global shortcuts.
|
|
||||||
Comment[ar]=توسيع نطاق تطبيق نظام النوافذ اكس11 والاختصارات العامة.
|
|
||||||
Comment[cs]=Měřítko a globální klávesové zkratky aplikací využívajících okenní systém X11
|
|
||||||
Comment[zh_CN]=X11窗口系统应用程序缩放和全局快捷键
|
|
||||||
Comment[hu]=X11 ablakkezelő rendszer alkalmazásméretezés és globális billentyűparancsok.
|
|
||||||
Comment[pt]=Dimensionamento de aplicativos com sistema de janelas X11 e atalhos globais.
|
|
||||||
Comment[nl]=X11-toepassingsvensters schalen, en globale sneltoetsen.
|
|
||||||
Comment[sk]=Škálovanie X11 aplikácií a globálne skratky.
|
|
||||||
Comment[sv]=Applikationsskalning för X11 fönstersystem och globala genvägar.
|
|
||||||
Comment[es]=Escalado de aplicaciones del sistema de ventanas X11 y atajos globales.
|
|
||||||
Comment[pl]=Skalowanie aplikacji systemu okien X11 i globalne skróty klawiszowe.
|
|
||||||
Comment[fr]=Mise à l'échelle des applications du gestionnaire de fenêtres X11 et raccourcis globaux.
|
|
||||||
Comment[it]=Scaling applicazioni X11 e shortcut globali.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings legacy-applications
|
Exec=cosmic-settings legacy-applications
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;X11;Application;Game;Compatibility;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-x11-applications-compatibility
|
Icon=preferences-x11-applications-compatibility
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Mouse
|
Name=Mouse
|
||||||
Name[ar]=الفأرة
|
|
||||||
Name[cs]=Myš
|
|
||||||
Name[zh_CN]=鼠标
|
|
||||||
Name[pl]=Mysz
|
|
||||||
Name[hu]=Egér
|
|
||||||
Name[pt]=Mouse
|
|
||||||
Name[nl]=Muis
|
|
||||||
Name[sk]=Myš
|
|
||||||
Name[sv]=Mus
|
|
||||||
Name[es]=Ratón
|
|
||||||
Name[fr]=Souris
|
|
||||||
Name[it]=Mouse
|
|
||||||
Comment=Mouse speed, acceleration, and natural scrolling.
|
Comment=Mouse speed, acceleration, and natural scrolling.
|
||||||
Comment[ar]=سرعة الفأرة، والتسارع، والتمرير الطبيعي.
|
|
||||||
Comment[cs]=Rychlost myši, zrychlení, přirozené rolování
|
|
||||||
Comment[zh_CN]=鼠标速度、加速度和自然滚动
|
|
||||||
Comment[pl]=Prędkość myszy, przyspieszenie i naturalne przewijanie.
|
|
||||||
Comment[hu]=Egérsebesség, gyorsítás és természetes görgetés.
|
|
||||||
Comment[pt]=Velocidade do mouse, aceleração e rolagem natural.
|
|
||||||
Comment[nl]=Muissnelheid en -versnelling, en 'natuurlijk' scrollen.
|
|
||||||
Comment[sk]=Rýchlosť myši, akcelerácia a prirodzené rolovanie.
|
|
||||||
Comment[sv]=Mushastighet, acceleration, och naturlig rullning.
|
|
||||||
Comment[es]=Velocidad del ratón, aceleración y desplazamiento natural.
|
|
||||||
Comment[fr]=Vitesse de la souris, accélération, défilement naturel.
|
|
||||||
Comment[it]=Velocità del cursore, accelerazione e scorrimento naturale.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings mouse
|
Exec=cosmic-settings mouse
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Mouse;Acceleration;Scrolling;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-mouse
|
Icon=preferences-mouse
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Network & Wireless
|
Name=Network & Wireless
|
||||||
Name[ar]=الشبكة والاتصالات اللاسلكية
|
|
||||||
Name[cs]=Síť a Wi-Fi
|
|
||||||
Name[zh_CN]=网络和无线
|
|
||||||
Name[pl]=Sieć i połączenia bezprzewodowe
|
|
||||||
Name[hu]=Hálózat és Wi-Fi
|
|
||||||
Name[pt]=Rede e Wi-Fi
|
|
||||||
Name[nl]=Netwerk en wifi
|
|
||||||
Name[sk]=Sieť & Bezdrôtové
|
|
||||||
Name[sv]=Nätverk & Wi-Fi
|
|
||||||
Name[es]=Red e inalámbrico
|
|
||||||
Name[fr]=Réseau et sans fil
|
|
||||||
Name[it]=Rete e connessioni Wi-Fi
|
|
||||||
Comment=Manage network connections
|
Comment=Manage network connections
|
||||||
Comment[ar]=أدر اتصالات الشبكة
|
|
||||||
Comment[cs]=Správa síťových připojení
|
|
||||||
Comment[zh_CN]=管理网络连接
|
|
||||||
Comment[pl]=Zarządzaj połączeniami sieciowymi
|
|
||||||
Comment[hu]=Hálózati kapcsolatok kezelése
|
|
||||||
Comment[pt]=Gerenciar conexões de rede
|
|
||||||
Comment[nl]=Netwerkverbindingen beheren
|
|
||||||
Comment[sk]=Spravovať sieťové pripojenia
|
|
||||||
Comment[sv]=Hantera nätverksanslutningar
|
|
||||||
Comment[es]=Gestionar conexiones de red
|
|
||||||
Comment[fr]=Gérer les connexions réseau
|
|
||||||
Comment[it]=Gestisci le connessioni di rete
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings network
|
Exec=cosmic-settings network
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Network;Wireless;WiFi;VPN;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-network-and-wireless
|
Icon=preferences-network-and-wireless
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Notifications
|
Name=Notifications
|
||||||
Name[ar]=الإشعارات
|
|
||||||
Name[cs]=Oznámení
|
|
||||||
Name[zh_CN]=通知
|
|
||||||
Name[pl]=Powiadomienia
|
|
||||||
Name[hu]=Értesítések
|
|
||||||
Name[pt]=Notificações
|
|
||||||
Name[nl]=Meldingsinstellingen
|
|
||||||
Name[sk]=Oznámenia
|
|
||||||
Name[sv]=Aviseringar
|
|
||||||
Name[es]=Notificaciones
|
|
||||||
Name[fr]=Notifications
|
|
||||||
Name[it]=Notifiche
|
|
||||||
Comment=Do Not Disturb, lockscreen notifications, and per-application settings.
|
Comment=Do Not Disturb, lockscreen notifications, and per-application settings.
|
||||||
Comment[ar]=عدم الإزعاج، إشعارات شاشة القفل، وإعدادات لكل تطبيق.
|
|
||||||
Comment[cs]=Nerušit, oznámení na zamykací obrazovce a nastavení podle aplikace
|
|
||||||
Comment[zh_CN]=勿扰模式、锁屏通知和每个应用程序的设置
|
|
||||||
Comment[pl]=Tryb „nie przeszkadzać”, powiadomienia na ekranie blokady i ustawienia poszczególnych aplikacji.
|
|
||||||
Comment[hu]=Ne zavarjanak, zárolási képernyő értesítések és alkalmazásonkénti beállítások.
|
|
||||||
Comment[pt]="Não Perturbe", notificações na tela de bloqueio e ajustes por aplicativo.
|
|
||||||
Comment[nl]="Niet storen", meldingen op het vergrendelingsscherm en meldingsinstellingen per app.
|
|
||||||
Comment[sk]=Nerušiť, oznámenia na uzamknutej obrazovke a nastavenia pre aplikácie.
|
|
||||||
Comment[sv]=Stör ej, aviseringar på låsskärm, och inställningar per program.
|
|
||||||
Comment[es]=No molestar, notificaciones de pantalla de bloqueo y ajustes de aplicación.
|
|
||||||
Comment[fr]=Ne pas déranger, notifications sur l'écran de verrouillage et paramètres par application.
|
|
||||||
Comment[it]=Non disturbare, notifiche su schermata di blocco e impostazioni per applicazioni.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings notifications
|
Exec=cosmic-settings notifications
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Notification;Lock;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=com.system76.CosmicSettings
|
Icon=com.system76.CosmicSettings
|
||||||
|
|
|
||||||
|
|
@ -1,32 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Panel
|
Name=Panel
|
||||||
Name[ar]=اللوحة
|
|
||||||
Name[cs]=Panel
|
|
||||||
Name[zh_CN]=面板
|
|
||||||
Name[pl]=Panel
|
|
||||||
Name[hu]=Panel
|
|
||||||
Name[pt]=Painel
|
|
||||||
Name[sk]=Panel
|
|
||||||
Name[sv]=Panel
|
|
||||||
Name[es]=Barra
|
|
||||||
Name[it]=Pannello
|
|
||||||
Comment=Primary system bar for menus and applets.
|
Comment=Primary system bar for menus and applets.
|
||||||
Comment[ar]=شريط النظام الأساسي للقوائم والبريمجات.
|
|
||||||
Comment[cs]=Hlavní systémová lišta pro menu a applety
|
|
||||||
Comment[zh_CN]=主系统栏,用于菜单和小部件。
|
|
||||||
Comment[hu]=Fő rendszersáv menükhöz és kisalkalmazásokhoz.
|
|
||||||
Comment[pt]=Barra superior com controles e menus.
|
|
||||||
Comment[nl]=De standaard systeembalk voor menu's en applets.
|
|
||||||
Comment[sk]=Hlavný systémový panel pre menu a applety.
|
|
||||||
Comment[sv]=Primär systemfält för menyer och applets.
|
|
||||||
Comment[es]=Barra principal del sistema para menús y applets.
|
|
||||||
Comment[fr]=Barre système principale pour les menus et les applets.
|
|
||||||
Comment[it]=Barra di sistema principale per il menù e le applet.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings panel
|
Exec=cosmic-settings panel
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Panel;Applet
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-panel
|
Icon=preferences-panel
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Power & Battery
|
Name=Power & Battery
|
||||||
Name[ar]=الطاقة والبطارية
|
|
||||||
Name[cs]=Napájení a baterie
|
|
||||||
Name[zh_CN]=电源和电池
|
|
||||||
Name[hu]=Energia és akkumulátor
|
|
||||||
Name[pl]=Zasilanie i bateria
|
|
||||||
Name[pt]=Energia e Bateria
|
|
||||||
Name[nl]=Energie en batterij
|
|
||||||
Name[sk]=Napájanie & Batéria
|
|
||||||
Name[sv]=Ström & Batteri
|
|
||||||
Name[es]=Energía y batería
|
|
||||||
Name[fr]=Alimentation et batterie
|
|
||||||
Name[it]=Alimentazione e batteria
|
|
||||||
Comment=Power modes and power saving options.
|
Comment=Power modes and power saving options.
|
||||||
Comment[ar]=أوضاع الطاقة وخيارات توفير الطاقة.
|
|
||||||
Comment[cs]=Režimy napájení a možnosti úspory energie
|
|
||||||
Comment[zh_CN]=电源模式和节能选项
|
|
||||||
Comment[pl]=Tryby zasilania i opcje oszczędzania energii.
|
|
||||||
Comment[hu]=Energiagazdálkodási módok és energiagazdálkodási beállítások.
|
|
||||||
Comment[pt]=Modos de energia e opções de economia de energia.
|
|
||||||
Comment[nl]=Energieverbruik en -besparingsopties.
|
|
||||||
Comment[sk]=Režimy napájania a možnosti úspory energie.
|
|
||||||
Comment[sv]=Strömalternativ och energisparalternativ.
|
|
||||||
Comment[es]=Modos de energía y opciones de ahorro de energía.
|
|
||||||
Comment[fr]=Modes d'alimentation et options d'économie d'énergie.
|
|
||||||
Comment[it]=Modalità di alimentazione e opzioni risparmio energia.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings power
|
Exec=cosmic-settings power
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Power;Battery
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-power-and-battery
|
Icon=preferences-power-and-battery
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Region & Language
|
Name=Region & Language
|
||||||
Name[ar]=اللغة والمنطقة
|
|
||||||
Name[cs]=Region a jazyk
|
|
||||||
Name[zh_CN]=区域和语言
|
|
||||||
Name[pl]=Region i język
|
|
||||||
Name[hu]=Régió és nyelv
|
|
||||||
Name[pt]=Região e Idioma
|
|
||||||
Name[nl]=Taal en regio
|
|
||||||
Name[sk]=Región & Jazyk
|
|
||||||
Name[sv]=Region & språk
|
|
||||||
Name[es]=Región e Idioma
|
|
||||||
Name[fr]=Région et langue
|
|
||||||
Name[it]=Regione e lingua
|
|
||||||
Comment=Format dates, times, and numbers based on your region.
|
Comment=Format dates, times, and numbers based on your region.
|
||||||
Comment[ar]=نسق التواريخ والأوقات والأرقام بناءً على منطقتك.
|
|
||||||
Comment[cs]=Formátujte datumy, časy a čísla podle vašeho regionu
|
|
||||||
Comment[zh_CN]=根据您的区域格式化日期、时间和数字
|
|
||||||
Comment[hu]=Dátumok, időpontok és számok formázása a régió alapján.
|
|
||||||
Comment[pl]=Format wyświetlanych dat, godzin i liczb dopasowany do regionu.
|
|
||||||
Comment[pt]=Formatação de datas, horas e números baseados em sua região.
|
|
||||||
Comment[nl]=Regionale datum-, tijd- en getalweergave.
|
|
||||||
Comment[sk]=Formátovanie dátumov, časov a čísel podľa vášho regiónu.
|
|
||||||
Comment[sv]=Formatera datum, tider och siffror baserat på din region.
|
|
||||||
Comment[es]=Formato de fechas, horas y números según su región.
|
|
||||||
Comment[fr]=Formater les dates, les heures et les nombres en fonction de votre région.
|
|
||||||
Comment[it]=Formato della data, dell'ora e dei numeri in base alla regione.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings region-language
|
Exec=cosmic-settings region-language
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Region;Language;Date;Format;Time;Locale;Localization;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-region-and-language
|
Icon=preferences-region-and-language
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Sound
|
Name=Sound
|
||||||
Name[ar]=الصوت
|
|
||||||
Name[cs]=Zvuk
|
|
||||||
Name[zh_CN]=声音
|
|
||||||
Name[pl]=Dźwięk
|
|
||||||
Name[hu]=Hang
|
|
||||||
Name[pt]=Som
|
|
||||||
Name[nl]=Geluid
|
|
||||||
Name[sk]=Zvuk
|
|
||||||
Name[sv]=Ljud
|
|
||||||
Name[es]=Sonido
|
|
||||||
Name[fr]=Son
|
|
||||||
Name[it]=Audio
|
|
||||||
Comment=Audio settings for devices, alerts, and applications.
|
Comment=Audio settings for devices, alerts, and applications.
|
||||||
Comment[ar]=إعدادات الصوت للأجهزة والتنبيهات والتطبيقات.
|
|
||||||
Comment[cs]=Nastavení zvuku pro zařízení, upozornění a aplikace
|
|
||||||
Comment[zh_CN]=设备、警报和应用程序的音频设置
|
|
||||||
Comment[pl]=Opcje dźwięku dla urządzeń, alertów i aplikacji.
|
|
||||||
Comment[hu]=Hangbeállítások eszközökhöz, figyelmeztetésekhez és alkalmazásokhoz.
|
|
||||||
Comment[pt]=Configurações de áudio para dispositivos, alertas e aplicativos.
|
|
||||||
Comment[nl]=Geluidsinstellingen voor apparaten, alarmen en programma's.
|
|
||||||
Comment[sk]=Zvukové nastavenia pre zariadenia, upozornenia a aplikácie.
|
|
||||||
Comment[sv]=Ljudinställningar för enhter, larm och program.
|
|
||||||
Comment[es]=Configuraciones de audio para dispositivos, alertas y aplicaciones.
|
|
||||||
Comment[fr]=Paramètres audio pour les appareils, les alertes et les applications.
|
|
||||||
Comment[it]=Impostazioni audio per dispositivi, allarmi e applicazioni.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings sound
|
Exec=cosmic-settings sound
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Sound;Audio;Alert;Pipewire;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-sound
|
Icon=preferences-sound
|
||||||
|
|
|
||||||
|
|
@ -1,27 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Startup applications
|
Name=Startup Applications
|
||||||
Name[ar]=تطبيقات بدء التشغيل
|
|
||||||
Name[cs]=Automaticky spouštěné aplikace
|
|
||||||
Name[sv]=Uppstartsprogram
|
|
||||||
Name[hu]=Indítási alkalmazások
|
|
||||||
Name[pl]=Aplikacje startowe
|
|
||||||
Name[fr]=Applications de démarrage
|
|
||||||
Name[it]=Applicazioni all'avvio
|
|
||||||
Name[zh_CN]=自动启动应用程序
|
|
||||||
Comment=Configure applications which run on login.
|
Comment=Configure applications which run on login.
|
||||||
Comment[ar]=اضبط التطبيقات التي تعمل عند الولوج.
|
|
||||||
Comment[cs]=Správa aplikací, které se spouštějí při přihlášení
|
|
||||||
Comment[sv]=Konfigurera program som körs vid inloggning.
|
|
||||||
Comment[hu]=Azoknak az alkalmazásoknak a beállítása, amelyek bejelentkezéskor elindulnak.
|
|
||||||
Comment[pl]=Konfiguracja aplikacji uruchamianych po zalogowaniu.
|
|
||||||
Comment[fr]=Configurer les applications qui s'exécutent lors de la connexion.
|
|
||||||
Comment[it]=Configura le applicazioni da avviare automaticamente al login.
|
|
||||||
Comment[zh_CN]=配置登录时运行的应用程序。
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings startup-apps
|
Exec=cosmic-settings startup-apps
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Startup;Application;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-startup-applications
|
Icon=preferences-startup-applications
|
||||||
|
|
|
||||||
|
|
@ -1,27 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=System & Accounts
|
Name=System & Accounts
|
||||||
Name[ar]=النظام والحسابات
|
Comment=System information, accounts, and firmware updates.
|
||||||
Name[cs]=Systém a účty
|
|
||||||
Name[sk]=Systém & Účty
|
|
||||||
Name[sv]=System & konton
|
|
||||||
Name[zh_CN]=系统和账户
|
|
||||||
Name[pl]=System i konta
|
|
||||||
Name[hu]=Rendszer és fiókok
|
|
||||||
Name[pt]=Sistema e Contas
|
|
||||||
Name[nl]=Systeem en gebruikersaccount
|
|
||||||
Name[es]=Sistema y cuentas
|
|
||||||
Name[fr]=Système et comptes
|
|
||||||
Name[it]=Sistema e account
|
|
||||||
Comment=
|
|
||||||
Comment[cs]=Informace o systému, uživatelé a firmware
|
|
||||||
Comment[nl]=Systeeminformatie, gebruikers en firmware
|
|
||||||
Comment[sk]=Systémové informácie, používatelia a firmware
|
|
||||||
Comment[es]=Información del sistema, cuentas y firmware
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings system
|
Exec=cosmic-settings system
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;System;Info;Accounts;Firmware;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-system-and-accounts
|
Icon=preferences-system-and-accounts
|
||||||
|
|
|
||||||
|
|
@ -1,25 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Time & Language
|
Name=Time & Language
|
||||||
Name[ar]=الوقت واللغة
|
Comment=Manage system date, time, region, and language.
|
||||||
Name[cs]=Čas a jazyk
|
|
||||||
Name[zh_CN]=时间与语言
|
|
||||||
Name[pl]=Czas i język
|
|
||||||
Name[hu]=Idő és nyelv
|
|
||||||
Name[pt]=Hora e Idioma
|
|
||||||
Name[nl]=Tijd- en taalinstellingen
|
|
||||||
Name[sk]=Čas & Jazyk
|
|
||||||
Name[sv]=Tid & språk
|
|
||||||
Name[es]=Hora e Idioma
|
|
||||||
Name[fr]=Heure et langue
|
|
||||||
Name[it]=Ora e lingua
|
|
||||||
Comment=
|
|
||||||
Comment[cs]=Nastavení času a jazyka
|
|
||||||
Comment[sk]=Nastavenia času a jazyka
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings time
|
Exec=cosmic-settings time
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;System;Time;Date;Region;Language;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-time-and-language
|
Icon=preferences-time-and-language
|
||||||
|
|
|
||||||
|
|
@ -1,34 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Touchpad
|
Name=Touchpad
|
||||||
Name[ar]=لوحة اللمس
|
Comment=Touchpad speed, click options, and gestures.
|
||||||
Name[cs]=Touchpad
|
|
||||||
Name[zh_CN]=触摸板
|
|
||||||
Name[pl]=Gładzik
|
|
||||||
Name[hu]=Érintőpárna
|
|
||||||
Name[pt]=Touchpad
|
|
||||||
Name[sk]=Touchpad
|
|
||||||
Name[sv]=Pekplatta
|
|
||||||
Name[es]=Panel táctil
|
|
||||||
Name[fr]=Pavé tactile
|
|
||||||
Name[it]=Touchpad
|
|
||||||
Comment=Touchpad speed, click options, gestures.
|
|
||||||
Comment[ar]=سرعة لوحة اللمس، خيارات النقر، الإيماءات.
|
|
||||||
Comment[cs]=Rychlost touchpadu, nastavení klikání, gesta
|
|
||||||
Comment[zh_CN]=触摸板速度、点击选项和手势
|
|
||||||
Comment[pl]=Prędkość gładzika, opcje kliknięć, gesty.
|
|
||||||
Comment[hu]=Érintőpárna sebessége, kattintási beállítások, gesztusok.
|
|
||||||
Comment[pt]=Velocidade do touchpad, opções de clique, gestos.
|
|
||||||
Comment[sk]=Rýchlosť touchpadu, možnosti kliknutia, gestá.
|
|
||||||
Comment[sv]=Pekplattans hastighet, klickalternativ, gester.
|
|
||||||
Comment[nl]=Touchpad muisversnelling, klikeigenschappen en veeggebaren.
|
|
||||||
Comment[es]=Velocidad del panel táctil, opciones de clic, gestos.
|
|
||||||
Comment[fr]=Vitesse du pavé tactile, options de clic, gestes.
|
|
||||||
Comment[it]=Velocità del touchpad, opzioni di tocco e gesti.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings touchpad
|
Exec=cosmic-settings touchpad
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;System;Time;Date;Region;Language;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-touchpad
|
Icon=preferences-touchpad
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Users
|
Name=Users
|
||||||
Name[ar]=المستخدمين
|
|
||||||
Name[cs]=Uživatelé
|
|
||||||
Name[zh_CN]=用户
|
|
||||||
Name[pl]=Użytkownicy
|
|
||||||
Name[hu]=Felhasználók
|
|
||||||
Name[pt]=Usuários
|
|
||||||
Name[nl]=Gebruikers
|
|
||||||
Name[sk]=Používatelia
|
|
||||||
Name[sv]=Användare
|
|
||||||
Name[es]=Usuarios
|
|
||||||
Name[fr]=Utilisateurs
|
|
||||||
Name[it]=Utenti
|
|
||||||
Comment=Authentication and user accounts.
|
Comment=Authentication and user accounts.
|
||||||
Comment[ar]=الاستيثاق وحسابات المستخدمين.
|
|
||||||
Comment[cs]=Ověření a uživatelské účty
|
|
||||||
Comment[zh_CN]=身份验证和用户账户
|
|
||||||
Comment[pl]=Uwierzytelnianie i konta użytkowników.
|
|
||||||
Comment[hu]=Hitelesítés és felhasználói fiókok.
|
|
||||||
Comment[pt]=Autenticação e contas de usuário.
|
|
||||||
Comment[nl]=Authenticatie en gebruikersinstellingen.
|
|
||||||
Comment[sk]=Autentifikácia a používateľské účty.
|
|
||||||
Comment[sv]=Autentisering och användarkonton.
|
|
||||||
Comment[es]=Autenticación y cuentas de usuario.
|
|
||||||
Comment[fr]=Authentification et comptes utilisateurs.
|
|
||||||
Comment[it]=Autenticazione e account utenti.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings users
|
Exec=cosmic-settings users
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;User;Account;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-users
|
Icon=preferences-users
|
||||||
|
|
|
||||||
|
|
@ -1,23 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=VPN
|
Name=VPN
|
||||||
Comment=VPN connections and connection profiles.
|
Comment=VPN connections and connection profiles.
|
||||||
Comment[ar]=اتصالات VPN وملفات تعريف الاتصال.
|
|
||||||
Comment[cs]=VPN připojení a profily
|
|
||||||
Comment[sk]=VPN pripojenia a profily pripojení.
|
|
||||||
Comment[sv]=VPN-anslutningar och anslutningsprofiler.
|
|
||||||
Comment[zh_CN]=VPN连接和配置文件
|
|
||||||
Comment[pl]=Połączenia VPN i profile połączeń.
|
|
||||||
Comment[hu]=VPN-kapcsolatok és kapcsolódási profilok.
|
|
||||||
Comment[pt]=Conexões VPN e perfis de conexão.
|
|
||||||
Comment[nl]=VPN-verbindingen en VPN-profielen.
|
|
||||||
Comment[es]=Conexiones VPN y perfiles de conexión.
|
|
||||||
Comment[fr]=Connexions VPN et profils de connexion.
|
|
||||||
Comment[it]=Connessioni VPN e profili di connessione.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings vpn
|
Exec=cosmic-settings vpn
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;VPN;Network;Connection;OpenVPN;OpenConnect;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-vpn
|
Icon=preferences-vpn
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Wallpaper
|
Name=Wallpaper
|
||||||
Name[ar]=خلفية الشاشة
|
|
||||||
Name[cs]=Tapeta
|
|
||||||
Name[zh_CN]=壁纸
|
|
||||||
Name[pl]=Tapeta
|
|
||||||
Name[hu]=Háttérkép
|
|
||||||
Name[pt]=Papel de Parede
|
|
||||||
Name[nl]=Schermachtergrond
|
|
||||||
Name[sk]=Tapeta
|
|
||||||
Name[sv]=Bakgrundsbild
|
|
||||||
Name[es]=Fondo de pantalla
|
|
||||||
Name[fr]=Fond d'écran
|
|
||||||
Name[it]=Sfondo
|
|
||||||
Comment=Wallpaper images, colors, and slideshow options.
|
Comment=Wallpaper images, colors, and slideshow options.
|
||||||
Comment[ar]=صور خلفية الشاشة والألوان وخيارات عرض الشرائح.
|
|
||||||
Comment[cs]=Obrázky tapet, barvy a možnosti prezentace
|
|
||||||
Comment[zh_CN]=壁纸图片、颜色和幻灯片选项
|
|
||||||
Comment[pl]=Obraz tła, kolory i opcje pokazu slajdów.
|
|
||||||
Comment[hu]=Háttérképek, színek és diavetítési beállítások.
|
|
||||||
Comment[pt]=Imagens de plano de fundo, cores, e opções de exibição em slide.
|
|
||||||
Comment[nl]=Schermachtergrond: Afbeeldingen, kleuren en diavoorstellingen.
|
|
||||||
Comment[sk]=Obrázky tapiet, farby a možnosti prezentácie.
|
|
||||||
Comment[sv]=Bakgrundsbilder, färger, och bildspelsalternativ.
|
|
||||||
Comment[es]=Imágenes de fondo, colores y opciones de carrusel de imágenes.
|
|
||||||
Comment[fr]=Images de fond d'écran, couleurs et options de diaporama.
|
|
||||||
Comment[it]=Immagine di sfondo, colori e opzioni di transizione.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings wallpaper
|
Exec=cosmic-settings wallpaper
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Wallpaper;Background;Slideshow;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-desktop-wallpaper
|
Icon=preferences-desktop-wallpaper
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Window management
|
Name=Window management
|
||||||
Name[ar]=إدارة النوافذ
|
|
||||||
Name[cs]=Správa oken
|
|
||||||
Name[zh_CN]=窗口管理
|
|
||||||
Name[pl]=Zarządzanie oknami
|
|
||||||
Name[hu]=Ablakkezelés
|
|
||||||
Name[pt]=Gerenciamento de Janelas
|
|
||||||
Name[nl]=Vensterbeheer
|
|
||||||
Name[sk]=Správa okien
|
|
||||||
Name[sv]=Fönsterhantering
|
|
||||||
Name[es]=Gestión de ventanas
|
|
||||||
Name[fr]=Gestion des fenêtres
|
|
||||||
Name[it]=Gestione delle finestre
|
|
||||||
Comment=Super key action, window control options, and additional window tiling options.
|
Comment=Super key action, window control options, and additional window tiling options.
|
||||||
Comment[ar]=إجراء مفتاح Super، وخيارات التحكم في النوافذ، وخيارات تبليط نوافذ إضافية.
|
|
||||||
Comment[cs]=Akce klávesy Super, možnosti ovládání oken a další možnosti dlaždicového režimu oken
|
|
||||||
Comment[zh_CN]=Super键操作、窗口控制选项和额外的窗口平铺选项
|
|
||||||
Comment[pl]=Działanie klawisza Super, opcje kontroli oknami i dodatkowe ustawienia kafelkowania okien.
|
|
||||||
Comment[hu]=Super billentyű funkció, ablakkezelési és csempézési beállítások.
|
|
||||||
Comment[pt]=Ação da tecla Super, opções de controle de janela e opções adicionais de janelas em mosaico.
|
|
||||||
Comment[nl]=Opties voor de Supertoets, vensterbeheer en aanvullende opties voor het tegelen van vensters.
|
|
||||||
Comment[sk]=Akcia klávesu Super, možnosti ovládania okien a ďalšie možnosti dlaždicovania okien.
|
|
||||||
Comment[sv]=Åtgärd för Super-tangent, fönsterkontroll alternativ, och ytterligare fönsterplacerings alternativ.
|
|
||||||
Comment[es]=Acción de la tecla Super, opciones de control de ventana y opciones adicionales de mosaico de ventana.
|
|
||||||
Comment[fr]=Action de la touche Super, options de contrôle des fenêtres et options supplémentaires d'agencement des fenêtres.
|
|
||||||
Comment[it]=Azioni del tasto Super, opzioni del controllo delle finestre, e opzioni aggiuntive del tiling delle finestre.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings window-management
|
Exec=cosmic-settings window-management
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Window;Management;Tiling;Super;Key;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-window-management
|
Icon=preferences-window-management
|
||||||
|
|
|
||||||
|
|
@ -1,35 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Wired
|
Name=Wired
|
||||||
Name[ar]=سلكي
|
|
||||||
Name[cs]=Drátové
|
|
||||||
Name[zh_CN]=有线连接
|
|
||||||
Name[pl]=Połączenia przewodowe
|
|
||||||
Name[hu]=Vezetékes kapcsolatok
|
|
||||||
Name[pt]=Rede Cabeada
|
|
||||||
Name[nl]=Kabelverbinding
|
|
||||||
Name[sk]=Káblové
|
|
||||||
Name[sv]=Tråndbunden anslutning
|
|
||||||
Name[es]=Red cableada
|
|
||||||
Name[fr]=Filaire
|
|
||||||
Name[it]=Cablato
|
|
||||||
Comment=Wired connections and connection profiles.
|
Comment=Wired connections and connection profiles.
|
||||||
Comment[ar]=الاتصالات السلكية وملفات تعريف الاتصال.
|
|
||||||
Comment[cs]=Drátové připojení a profily
|
|
||||||
Comment[zh_CN]=有线连接和配置文件
|
|
||||||
Comment[pl]=Połączenia przewodowe i profile połączeń.
|
|
||||||
Comment[hu]=Vezetékes kapcsolatok és kapcsolódási profilok.
|
|
||||||
Comment[pt]=Conexões de rede cabeada e perfis de conexão.
|
|
||||||
Comment[nl]=Kabelverbinding en verbindingsprofielen.
|
|
||||||
Comment[sk]=Káblové pripojenia a profily pripojení.
|
|
||||||
Comment[sv]=Trådbundna anslutningar och anslutningsprofiler.
|
|
||||||
Comment[es]=Conexiones cableadas y perfiles de conexión.
|
|
||||||
Comment[fr]=Connexions filaires et profils.
|
|
||||||
Comment[it]=Connessioni cablate e profili.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings wired
|
Exec=cosmic-settings wired
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Wired;LAN;Network;Connection;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-wired
|
Icon=preferences-wired
|
||||||
|
|
|
||||||
|
|
@ -1,34 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Wi-Fi
|
Name=Wi-Fi
|
||||||
Name[ar]=واي فاي
|
|
||||||
Name[cs]=Wi-Fi
|
|
||||||
Name[zh_CN]=Wi-Fi
|
|
||||||
Name[pl]=Wi-Fi
|
|
||||||
Name[hu]=Wi-Fi
|
|
||||||
Name[pt]=Wi-Fi
|
|
||||||
Name[nl]=Wifi
|
|
||||||
Name[sk]=Wi-Fi
|
|
||||||
Name[sv]=Wi-Fi
|
|
||||||
Name[es]=Wi-Fi
|
|
||||||
Name[it]=Wi-Fi
|
|
||||||
Comment=Wi-Fi connections and connection profiles.
|
Comment=Wi-Fi connections and connection profiles.
|
||||||
Comment[ar]=اتصالات واي فاي وملفات تعريف الاتصال.
|
|
||||||
Comment[cs]=Wi-Fi připojení a profily
|
|
||||||
Comment[zh_CN]=Wi-Fi连接和配置文件
|
|
||||||
Comment[hu]=Wi-Fi kapcsolatok és kapcsolódási profilok.
|
|
||||||
Comment[pl]=Połączenia Wi-Fi i profile połączeń.
|
|
||||||
Comment[pt]=Conexões de rede sem fio e perfis de conexão.
|
|
||||||
Comment[nl]=Wifiverbinding en verbindingsprofielen.
|
|
||||||
Comment[sk]=Wi-Fi pripojenia a profily pripojení.
|
|
||||||
Comment[sv]=Wi-Fi-anslutningar och anslutningsprofiler.
|
|
||||||
Comment[es]=Conexiones Wi-Fi y perfiles de conexión.
|
|
||||||
Comment[fr]=Connexions Wi-Fi et profils.
|
|
||||||
Comment[it]=Connessioni Wi-Fi e profili di connessione.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings wireless
|
Exec=cosmic-settings wireless
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;WiFi;Wi-Fi;Network;Connection;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-wireless
|
Icon=preferences-wireless
|
||||||
|
|
|
||||||
|
|
@ -1,33 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=Workspaces
|
Name=Workspaces
|
||||||
Name[ar]=مساحات العمل
|
Comment=Workspace orientation, overview, and multi-monitor behavior.
|
||||||
Name[cs]=Pracovní plochy
|
|
||||||
Name[zh_CN]=工作区
|
|
||||||
Name[pl]=Obszary robocze
|
|
||||||
Name[hu]=Munkaterületek
|
|
||||||
Name[pt]=Áreas de Trabalho
|
|
||||||
Name[sk]=Pracovné priestory
|
|
||||||
Name[sv]=Arbetsytor
|
|
||||||
Name[es]=Espacios de trabajo
|
|
||||||
Name[it]=Spazi di lavoro
|
|
||||||
Name[fr]=Espaces de travail
|
|
||||||
Comment=Workspace orientation and behavior.
|
|
||||||
Comment[ar]=اتجاه وسلوك مساحة العمل.
|
|
||||||
Comment[cs]=Chování a orientace pracovních ploch
|
|
||||||
Comment[zh_CN]=工作区方向和行为
|
|
||||||
Comment[pl]=Kierunek i zachowanie obszarów roboczych.
|
|
||||||
Comment[hu]=Munkaterületek tájolása és viselkedése.
|
|
||||||
Comment[pt]=Orientação e comportamento da área de trabalho.
|
|
||||||
Comment[sk]=Orientácia a správanie pracovných priestorov.
|
|
||||||
Comment[sv]=Arbetsytors orientering och beteende.
|
|
||||||
Comment[es]=Orientación de los espacios de trabajo y comportamiento.
|
|
||||||
Comment[it]=Orientamento e comportamento degli spazi di lavoro.
|
|
||||||
Comment[fr]=Orientation et comportement des espaces de travail.
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings workspaces
|
Exec=cosmic-settings workspaces
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Workspace;Orientation;Overview;Monitor;
|
||||||
NoDisplay=true
|
NoDisplay=true
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=preferences-workspaces
|
Icon=preferences-workspaces
|
||||||
|
|
|
||||||
|
|
@ -1,23 +1,11 @@
|
||||||
[Desktop Entry]
|
[Desktop Entry]
|
||||||
Name=COSMIC Settings
|
Name=COSMIC Settings
|
||||||
Name[ar]=إعدادات COSMIC
|
Comment=Settings application for COSMIC.
|
||||||
Name[cs]=Nastavení COSMIC
|
|
||||||
Name[zh_CN]=COSMIC 设置
|
|
||||||
Name[pl]=Ustawienia COSMIC
|
|
||||||
Name[pt]=Configurações
|
|
||||||
Name[ru]=Параметры
|
|
||||||
Name[hu]=COSMIC Beállítások
|
|
||||||
Name[pt_BR]=Configurações
|
|
||||||
Name[sv]=COSMIC Inställningar
|
|
||||||
Name[sk]=Nastavenia COSMIC
|
|
||||||
Name[es]=Configuración COSMIC
|
|
||||||
Name[it]=Impostazioni di COSMIC
|
|
||||||
Name[fr]=Paramètres COSMIC
|
|
||||||
Type=Application
|
Type=Application
|
||||||
Exec=cosmic-settings
|
Exec=cosmic-settings
|
||||||
Terminal=false
|
Terminal=false
|
||||||
Categories=COSMIC
|
Categories=COSMIC
|
||||||
Keywords=COSMIC
|
Keywords=COSMIC;Settings;
|
||||||
OnlyShowIn=COSMIC
|
OnlyShowIn=COSMIC
|
||||||
Icon=com.system76.CosmicSettings
|
Icon=com.system76.CosmicSettings
|
||||||
StartupNotify=true
|
StartupNotify=true
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue