fix(accessibility): use popup_dropdown
This commit is contained in:
parent
81aa5413e5
commit
486b4b9cad
21 changed files with 160 additions and 144 deletions
|
|
@ -2,24 +2,23 @@ use std::collections::HashSet;
|
||||||
use std::fmt::Write;
|
use std::fmt::Write;
|
||||||
|
|
||||||
use cosmic::{
|
use cosmic::{
|
||||||
|
Apply,
|
||||||
iced::{Element, Length},
|
iced::{Element, Length},
|
||||||
iced_core::text::Wrapping,
|
iced_core::text::Wrapping,
|
||||||
surface,
|
surface,
|
||||||
widget::{self, icon, settings, svg, text},
|
widget::{self, icon, settings, svg, text},
|
||||||
Apply,
|
|
||||||
};
|
};
|
||||||
use cosmic_comp_config::{ZoomConfig, ZoomMovement};
|
use cosmic_comp_config::{ZoomConfig, ZoomMovement};
|
||||||
use cosmic_config::{ConfigGet, ConfigSet};
|
use cosmic_config::{ConfigGet, ConfigSet};
|
||||||
use cosmic_settings_config::{shortcuts, Action, Binding};
|
use cosmic_settings_config::{Action, Binding, shortcuts};
|
||||||
use cosmic_settings_page::{
|
use cosmic_settings_page::{
|
||||||
self as page,
|
self as page, Entity,
|
||||||
section::{self, Section},
|
section::{self, Section},
|
||||||
Entity,
|
|
||||||
};
|
};
|
||||||
use slotmap::SlotMap;
|
use slotmap::SlotMap;
|
||||||
use tracing::error;
|
use tracing::error;
|
||||||
|
|
||||||
use super::{wayland, AccessibilityEvent, AccessibilityRequest};
|
use super::{AccessibilityEvent, AccessibilityRequest, wayland};
|
||||||
|
|
||||||
#[derive(Debug)]
|
#[derive(Debug)]
|
||||||
pub struct Page {
|
pub struct Page {
|
||||||
|
|
@ -254,10 +253,12 @@ pub fn tip() -> section::Section<crate::pages::Message> {
|
||||||
.view::<Page>(move |_binder, _page, section| {
|
.view::<Page>(move |_binder, _page, section| {
|
||||||
let descriptions = §ion.descriptions;
|
let descriptions = §ion.descriptions;
|
||||||
|
|
||||||
let mut items = vec![text::body(&descriptions[applet])
|
let mut items = vec![
|
||||||
.wrapping(Wrapping::Word)
|
text::body(&descriptions[applet])
|
||||||
.width(Length::Shrink)
|
.wrapping(Wrapping::Word)
|
||||||
.into()];
|
.width(Length::Shrink)
|
||||||
|
.into(),
|
||||||
|
];
|
||||||
if let Some(illustration) = applet_illustration.clone() {
|
if let Some(illustration) = applet_illustration.clone() {
|
||||||
items.push(svg(illustration).width(Length::Fill).into());
|
items.push(svg(illustration).width(Length::Fill).into());
|
||||||
}
|
}
|
||||||
|
|
@ -283,30 +284,36 @@ pub fn view_movement() -> section::Section<crate::pages::Message> {
|
||||||
|
|
||||||
settings::section()
|
settings::section()
|
||||||
.title(§ion.title)
|
.title(§ion.title)
|
||||||
.add(widget::settings::item_row(vec![widget::radio(
|
.add(widget::settings::item_row(vec![
|
||||||
text::body(&descriptions[continuous]),
|
widget::radio(
|
||||||
ZoomMovement::Continuously,
|
text::body(&descriptions[continuous]),
|
||||||
Some(page.zoom_config.view_moves),
|
ZoomMovement::Continuously,
|
||||||
Message::SetMovement,
|
Some(page.zoom_config.view_moves),
|
||||||
)
|
Message::SetMovement,
|
||||||
.width(Length::Fill)
|
)
|
||||||
.into()]))
|
.width(Length::Fill)
|
||||||
.add(widget::settings::item_row(vec![widget::radio(
|
.into(),
|
||||||
text::body(&descriptions[onedge]),
|
]))
|
||||||
ZoomMovement::OnEdge,
|
.add(widget::settings::item_row(vec![
|
||||||
Some(page.zoom_config.view_moves),
|
widget::radio(
|
||||||
Message::SetMovement,
|
text::body(&descriptions[onedge]),
|
||||||
)
|
ZoomMovement::OnEdge,
|
||||||
.width(Length::Fill)
|
Some(page.zoom_config.view_moves),
|
||||||
.into()]))
|
Message::SetMovement,
|
||||||
.add(widget::settings::item_row(vec![widget::radio(
|
)
|
||||||
text::body(&descriptions[centered]),
|
.width(Length::Fill)
|
||||||
ZoomMovement::Centered,
|
.into(),
|
||||||
Some(page.zoom_config.view_moves),
|
]))
|
||||||
Message::SetMovement,
|
.add(widget::settings::item_row(vec![
|
||||||
)
|
widget::radio(
|
||||||
.width(Length::Fill)
|
text::body(&descriptions[centered]),
|
||||||
.into()]))
|
ZoomMovement::Centered,
|
||||||
|
Some(page.zoom_config.view_moves),
|
||||||
|
Message::SetMovement,
|
||||||
|
)
|
||||||
|
.width(Length::Fill)
|
||||||
|
.into(),
|
||||||
|
]))
|
||||||
.apply(Element::from)
|
.apply(Element::from)
|
||||||
.map(crate::pages::Message::AccessibilityMagnifier)
|
.map(crate::pages::Message::AccessibilityMagnifier)
|
||||||
})
|
})
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,10 @@
|
||||||
use cosmic::{
|
use cosmic::{
|
||||||
Apply, Task,
|
Task,
|
||||||
cosmic_theme::{CosmicPalette, ThemeBuilder},
|
cosmic_theme::{CosmicPalette, ThemeBuilder},
|
||||||
iced_core::text::Wrapping,
|
iced_core::text::Wrapping,
|
||||||
theme::{self, CosmicTheme},
|
surface,
|
||||||
widget::{button, container, dropdown, horizontal_space, icon, settings, text, toggler},
|
theme::CosmicTheme,
|
||||||
|
widget::{dropdown, settings, text, toggler},
|
||||||
};
|
};
|
||||||
pub use cosmic_comp_config::ZoomMovement;
|
pub use cosmic_comp_config::ZoomMovement;
|
||||||
use cosmic_config::CosmicConfigEntry;
|
use cosmic_config::CosmicConfigEntry;
|
||||||
|
|
@ -68,6 +69,7 @@ pub enum Message {
|
||||||
SetScreenInverted(bool),
|
SetScreenInverted(bool),
|
||||||
SetScreenFilterActive(bool),
|
SetScreenFilterActive(bool),
|
||||||
SetScreenFilterSelection(ColorFilter),
|
SetScreenFilterSelection(ColorFilter),
|
||||||
|
Surface(surface::Action),
|
||||||
}
|
}
|
||||||
|
|
||||||
impl page::Page<crate::pages::Message> for Page {
|
impl page::Page<crate::pages::Message> for Page {
|
||||||
|
|
@ -178,19 +180,9 @@ pub fn vision() -> section::Section<crate::pages::Message> {
|
||||||
&descriptions[unavailable]
|
&descriptions[unavailable]
|
||||||
};
|
};
|
||||||
|
|
||||||
settings::item_row(vec![
|
crate::widget::go_next_with_item(
|
||||||
text::body(&descriptions[magnifier])
|
&descriptions[magnifier],
|
||||||
.wrapping(Wrapping::Word)
|
text::body(status_text).wrapping(Wrapping::Word),
|
||||||
.into(),
|
|
||||||
horizontal_space().into(),
|
|
||||||
text::body(status_text).wrapping(Wrapping::Word).into(),
|
|
||||||
icon::from_name("go-next-symbolic").size(16).into(),
|
|
||||||
])
|
|
||||||
.apply(container)
|
|
||||||
.class(cosmic::theme::Container::List)
|
|
||||||
.apply(button::custom)
|
|
||||||
.class(theme::Button::Transparent)
|
|
||||||
.on_press_maybe(
|
|
||||||
page.wayland_available
|
page.wayland_available
|
||||||
.is_some()
|
.is_some()
|
||||||
.then_some(crate::pages::Message::Page(magnifier_entity)),
|
.then_some(crate::pages::Message::Page(magnifier_entity)),
|
||||||
|
|
@ -235,13 +227,20 @@ pub fn vision() -> section::Section<crate::pages::Message> {
|
||||||
};
|
};
|
||||||
cosmic::Element::from(
|
cosmic::Element::from(
|
||||||
settings::item::builder(&descriptions[color_filter_type]).control(
|
settings::item::builder(&descriptions[color_filter_type]).control(
|
||||||
dropdown(
|
dropdown::popup_dropdown(
|
||||||
selections,
|
selections,
|
||||||
Some(page.screen_filter_selection as usize),
|
Some(page.screen_filter_selection as usize),
|
||||||
move |idx| {
|
move |idx| {
|
||||||
let filter = ColorFilter::from_usize(idx).unwrap_or_default();
|
let filter = ColorFilter::from_usize(idx).unwrap_or_default();
|
||||||
Message::SetScreenFilterSelection(filter)
|
Message::SetScreenFilterSelection(filter)
|
||||||
},
|
},
|
||||||
|
cosmic::iced::window::Id::RESERVED,
|
||||||
|
Message::Surface,
|
||||||
|
|a| {
|
||||||
|
crate::app::Message::PageMessage(
|
||||||
|
crate::pages::Message::Accessibility(a),
|
||||||
|
)
|
||||||
|
},
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
)
|
)
|
||||||
|
|
@ -361,6 +360,9 @@ impl Page {
|
||||||
self.screen_filter_selection = filter;
|
self.screen_filter_selection = filter;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Message::Surface(a) => {
|
||||||
|
return cosmic::task::message(crate::app::Message::Surface(a));
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
cosmic::iced::Task::none()
|
cosmic::iced::Task::none()
|
||||||
|
|
|
||||||
|
|
@ -1,6 +1,6 @@
|
||||||
use cosmic::iced::{Alignment, Length};
|
use cosmic::iced::{Alignment, Length};
|
||||||
use cosmic::widget::{button, icon, settings, text};
|
use cosmic::widget::{button, icon, settings, text};
|
||||||
use cosmic::{widget, Apply, Element, Task};
|
use cosmic::{Apply, Element, Task, widget};
|
||||||
use cosmic_settings_page::section::Entity;
|
use cosmic_settings_page::section::Entity;
|
||||||
use cosmic_settings_page::{self as page, Content, Info, Section};
|
use cosmic_settings_page::{self as page, Content, Info, Section};
|
||||||
use freedesktop_desktop_entry::DesktopEntry;
|
use freedesktop_desktop_entry::DesktopEntry;
|
||||||
|
|
@ -66,9 +66,11 @@ enum Context {
|
||||||
impl Into<Vec<PathBuf>> for DirectoryType {
|
impl Into<Vec<PathBuf>> for DirectoryType {
|
||||||
fn into(self) -> Vec<PathBuf> {
|
fn into(self) -> Vec<PathBuf> {
|
||||||
match self {
|
match self {
|
||||||
DirectoryType::User => vec![dirs::config_dir()
|
DirectoryType::User => vec![
|
||||||
.expect("config dir not found")
|
dirs::config_dir()
|
||||||
.join("autostart")],
|
.expect("config dir not found")
|
||||||
|
.join("autostart"),
|
||||||
|
],
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
@ -309,7 +311,7 @@ impl Page {
|
||||||
) -> Element<'_, crate::pages::Message> {
|
) -> Element<'_, crate::pages::Message> {
|
||||||
let cosmic::cosmic_theme::Spacing {
|
let cosmic::cosmic_theme::Spacing {
|
||||||
space_s, space_l, ..
|
space_s, space_l, ..
|
||||||
} = cosmic::theme::active().cosmic().spacing;
|
} = cosmic::theme::spacing();
|
||||||
|
|
||||||
let search = widget::search_input(fl!("type-to-search"), &self.application_search)
|
let search = widget::search_input(fl!("type-to-search"), &self.application_search)
|
||||||
.on_input(Message::ApplicationSearch)
|
.on_input(Message::ApplicationSearch)
|
||||||
|
|
@ -328,12 +330,12 @@ impl Page {
|
||||||
{
|
{
|
||||||
let mut row = widget::row::with_capacity(2).spacing(space_s);
|
let mut row = widget::row::with_capacity(2).spacing(space_s);
|
||||||
|
|
||||||
row = row.push(icon::from_name(app.icon().unwrap_or("application-default")));
|
row = row
|
||||||
|
.push(icon::from_name(app.icon().unwrap_or("application-default")));
|
||||||
|
|
||||||
if let Some(name) = app.name(&startup_apps.locales) {
|
if let Some(name) = app.name(&startup_apps.locales) {
|
||||||
row = row.push(text(name));
|
row = row.push(text(name));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
row = row.push(text(&app.appid));
|
row = row.push(text(&app.appid));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
@ -363,13 +365,14 @@ impl Page {
|
||||||
}
|
}
|
||||||
|
|
||||||
fn apps() -> Section<crate::pages::Message> {
|
fn apps() -> Section<crate::pages::Message> {
|
||||||
let cosmic::cosmic_theme::Spacing { space_s, .. } = cosmic::theme::active().cosmic().spacing;
|
let cosmic::cosmic_theme::Spacing {
|
||||||
|
space_xxs, space_s, ..
|
||||||
|
} = cosmic::theme::spacing();
|
||||||
|
|
||||||
Section::default()
|
Section::default()
|
||||||
.title(fl!("startup-apps"))
|
.title(fl!("startup-apps"))
|
||||||
.view::<Page>(move |_binder, page, _section| {
|
.view::<Page>(move |_binder, page, _section| {
|
||||||
let mut view = widget::column::with_capacity(4)
|
let mut view = widget::column::with_capacity(4).spacing(space_xxs);
|
||||||
.spacing(cosmic::theme::active().cosmic().space_xxs());
|
|
||||||
|
|
||||||
if let Some(startup_apps) = &page.cached_startup_apps {
|
if let Some(startup_apps) = &page.cached_startup_apps {
|
||||||
let order = vec![DirectoryType::User];
|
let order = vec![DirectoryType::User];
|
||||||
|
|
@ -386,12 +389,12 @@ fn apps() -> Section<crate::pages::Message> {
|
||||||
for app in apps {
|
for app in apps {
|
||||||
let mut row = widget::row::with_capacity(2).spacing(space_s);
|
let mut row = widget::row::with_capacity(2).spacing(space_s);
|
||||||
|
|
||||||
row = row.push(icon::from_name(app.icon().unwrap_or("application-default")));
|
row = row
|
||||||
|
.push(icon::from_name(app.icon().unwrap_or("application-default")));
|
||||||
|
|
||||||
if let Some(name) = app.name(&startup_apps.locales) {
|
if let Some(name) = app.name(&startup_apps.locales) {
|
||||||
row = row.push(text(name));
|
row = row.push(text(name));
|
||||||
}
|
} else {
|
||||||
else {
|
|
||||||
row = row.push(text(&app.appid));
|
row = row.push(text(&app.appid));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -8,10 +8,10 @@ use cosmic::iced::{Alignment, Length};
|
||||||
use cosmic::iced_core::text::Wrapping;
|
use cosmic::iced_core::text::Wrapping;
|
||||||
use cosmic::widget::color_picker::ColorPickerUpdate;
|
use cosmic::widget::color_picker::ColorPickerUpdate;
|
||||||
use cosmic::widget::{
|
use cosmic::widget::{
|
||||||
self, button, column, container, divider, horizontal_space, icon, row, settings, text,
|
self, ColorPickerModel, button, column, container, divider, horizontal_space, icon, row,
|
||||||
vertical_space, ColorPickerModel,
|
settings, text, vertical_space,
|
||||||
};
|
};
|
||||||
use cosmic::{theme, Apply, Element};
|
use cosmic::{Apply, Element, theme};
|
||||||
use cosmic_settings_page as page;
|
use cosmic_settings_page as page;
|
||||||
|
|
||||||
pub fn color_picker_context_view<'a, Message: Clone + 'static>(
|
pub fn color_picker_context_view<'a, Message: Clone + 'static>(
|
||||||
|
|
@ -124,7 +124,7 @@ pub fn page_list_item<'a, Message: 'static + Clone>(
|
||||||
space_s,
|
space_s,
|
||||||
space_m,
|
space_m,
|
||||||
..
|
..
|
||||||
} = cosmic::theme::active().cosmic().spacing;
|
} = cosmic::theme::spacing();
|
||||||
|
|
||||||
let mut builder = cosmic::widget::settings::item::builder(title);
|
let mut builder = cosmic::widget::settings::item::builder(title);
|
||||||
|
|
||||||
|
|
@ -181,7 +181,10 @@ pub fn sub_page_header<'a, Message: 'static + Clone>(
|
||||||
.into()
|
.into()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn go_next_item<Msg: Clone + 'static>(description: &str, msg: Msg) -> cosmic::Element<'_, Msg> {
|
pub fn go_next_item<Msg: Clone + 'static>(
|
||||||
|
description: &str,
|
||||||
|
msg_opt: impl Into<Option<Msg>>,
|
||||||
|
) -> cosmic::Element<'_, Msg> {
|
||||||
settings::item_row(vec![
|
settings::item_row(vec![
|
||||||
text::body(description).wrapping(Wrapping::Word).into(),
|
text::body(description).wrapping(Wrapping::Word).into(),
|
||||||
horizontal_space().into(),
|
horizontal_space().into(),
|
||||||
|
|
@ -190,15 +193,16 @@ pub fn go_next_item<Msg: Clone + 'static>(description: &str, msg: Msg) -> cosmic
|
||||||
.apply(widget::container)
|
.apply(widget::container)
|
||||||
.class(cosmic::theme::Container::List)
|
.class(cosmic::theme::Container::List)
|
||||||
.apply(button::custom)
|
.apply(button::custom)
|
||||||
|
.padding(0)
|
||||||
.class(theme::Button::Transparent)
|
.class(theme::Button::Transparent)
|
||||||
.on_press(msg)
|
.on_press_maybe(msg_opt.into())
|
||||||
.into()
|
.into()
|
||||||
}
|
}
|
||||||
|
|
||||||
pub fn go_next_with_item<'a, Msg: Clone + 'static>(
|
pub fn go_next_with_item<'a, Msg: Clone + 'static>(
|
||||||
description: &'a str,
|
description: &'a str,
|
||||||
item: impl Into<cosmic::Element<'a, Msg>>,
|
item: impl Into<cosmic::Element<'a, Msg>>,
|
||||||
msg: Msg,
|
msg_opt: impl Into<Option<Msg>>,
|
||||||
) -> cosmic::Element<'a, Msg> {
|
) -> cosmic::Element<'a, Msg> {
|
||||||
settings::item_row(vec![
|
settings::item_row(vec![
|
||||||
text::body(description).wrapping(Wrapping::Word).into(),
|
text::body(description).wrapping(Wrapping::Word).into(),
|
||||||
|
|
@ -207,13 +211,14 @@ pub fn go_next_with_item<'a, Msg: Clone + 'static>(
|
||||||
.push(item)
|
.push(item)
|
||||||
.push(icon::from_name("go-next-symbolic").size(16).icon())
|
.push(icon::from_name("go-next-symbolic").size(16).icon())
|
||||||
.align_y(Alignment::Center)
|
.align_y(Alignment::Center)
|
||||||
.spacing(cosmic::theme::active().cosmic().spacing.space_s)
|
.spacing(cosmic::theme::spacing().space_s)
|
||||||
.into(),
|
.into(),
|
||||||
])
|
])
|
||||||
.apply(widget::container)
|
.apply(widget::container)
|
||||||
.class(cosmic::theme::Container::List)
|
.class(cosmic::theme::Container::List)
|
||||||
.apply(button::custom)
|
.apply(button::custom)
|
||||||
|
.padding(0)
|
||||||
.class(theme::Button::Transparent)
|
.class(theme::Button::Transparent)
|
||||||
.on_press(msg)
|
.on_press_maybe(msg_opt.into())
|
||||||
.into()
|
.into()
|
||||||
}
|
}
|
||||||
|
|
|
||||||
|
|
@ -416,7 +416,7 @@ dialog = الحواري
|
||||||
}.
|
}.
|
||||||
.revert-settings = استرد الإعدادات
|
.revert-settings = استرد الإعدادات
|
||||||
|
|
||||||
legacy-applications = تحجيم تطبيقات نظام النوافذ إكس11
|
legacy-app-scaling = تحجيم تطبيقات نظام النوافذ إكس11
|
||||||
.scaled-by-system = حجِّم كل تطبيقات إكس11
|
.scaled-by-system = حجِّم كل تطبيقات إكس11
|
||||||
.system-description = ستظهر تطبيقات إكس11 بشكل ضبابي على شاشات HiDPI.
|
.system-description = ستظهر تطبيقات إكس11 بشكل ضبابي على شاشات HiDPI.
|
||||||
.scaled-natively = صيِّر تطبيقات إكس11 بميزها الأصيل
|
.scaled-natively = صيِّر تطبيقات إكس11 بميزها الأصيل
|
||||||
|
|
|
||||||
|
|
@ -361,7 +361,7 @@ dialog = Дыялог
|
||||||
.change-prompt = Змены налад будуць аўтаматычна вернуты праз { $time } секунд.
|
.change-prompt = Змены налад будуць аўтаматычна вернуты праз { $time } секунд.
|
||||||
.revert-settings = Вярнуць налады
|
.revert-settings = Вярнуць налады
|
||||||
|
|
||||||
legacy-applications = Маштабаванне праграм аконнай сістэмы X11
|
legacy-app-scaling = Маштабаванне праграм аконнай сістэмы X11
|
||||||
.scaled-by-system = Маштабаваць усе праграмы X11
|
.scaled-by-system = Маштабаваць усе праграмы X11
|
||||||
.system-description = Праграмы X11 будуць размытымі на экранах HiDPI.
|
.system-description = Праграмы X11 будуць размытымі на экранах HiDPI.
|
||||||
.scaled-natively = Рэндэрыць праграмы X11 у роднай раздзяляльнасці
|
.scaled-natively = Рэндэрыць праграмы X11 у роднай раздзяляльнасці
|
||||||
|
|
|
||||||
|
|
@ -92,11 +92,11 @@ wired = Kablet
|
||||||
wifi = Wi-Fi
|
wifi = Wi-Fi
|
||||||
.adapter = Wi-Fi adapter { $id }
|
.adapter = Wi-Fi adapter { $id }
|
||||||
.forget = Glem dette netværk
|
.forget = Glem dette netværk
|
||||||
|
|
||||||
wireguard-dialog = Tilføj WireGuard enhed
|
wireguard-dialog = Tilføj WireGuard enhed
|
||||||
.description = Vælg et enhedsnavn til WireGuard konfigurationen.
|
.description = Vælg et enhedsnavn til WireGuard konfigurationen.
|
||||||
|
|
||||||
## Networking: Online konti
|
## Networking: Online konti
|
||||||
|
|
||||||
online-accounts = Online konti
|
online-accounts = Online konti
|
||||||
.desc = Tilføj konti, IMAP og SMTP, enterprise logins
|
.desc = Tilføj konti, IMAP og SMTP, enterprise logins
|
||||||
|
|
@ -393,7 +393,7 @@ dialog = Dialog
|
||||||
.change-prompt = Ændringer af indstillinger vil automatisk vende tilbage om { $time } sekunder.
|
.change-prompt = Ændringer af indstillinger vil automatisk vende tilbage om { $time } sekunder.
|
||||||
.revert-settings = Gendan indstillinger
|
.revert-settings = Gendan indstillinger
|
||||||
|
|
||||||
legacy-applications = X11 Vinduessystem Applikationsskalering
|
legacy-app-scaling = X11 Vinduessystem Applikationsskalering
|
||||||
.scaled-by-system = Skalér alle X11 applikationer
|
.scaled-by-system = Skalér alle X11 applikationer
|
||||||
.system-description = X11 applikationer vil fremstå slørede på HiDPI-skærme.
|
.system-description = X11 applikationer vil fremstå slørede på HiDPI-skærme.
|
||||||
.scaled-natively = Render X11 applikationer i naturlig opløsning
|
.scaled-natively = Render X11 applikationer i naturlig opløsning
|
||||||
|
|
@ -515,7 +515,7 @@ keyboard-special-char = Indtastning af specialtegn
|
||||||
keyboard-typing-assist = Indtastning
|
keyboard-typing-assist = Indtastning
|
||||||
.repeat-rate = Gentagelseshastighed
|
.repeat-rate = Gentagelseshastighed
|
||||||
.repeat-delay = Gentagelsesforsinkelse
|
.repeat-delay = Gentagelsesforsinkelse
|
||||||
|
|
||||||
added = Tilføjet
|
added = Tilføjet
|
||||||
type-to-search = Skriv for at søge...
|
type-to-search = Skriv for at søge...
|
||||||
show-extended-input-sources = Vis udvidede inputkilder
|
show-extended-input-sources = Vis udvidede inputkilder
|
||||||
|
|
|
||||||
|
|
@ -401,7 +401,7 @@ dialog = Dialog
|
||||||
.change-prompt = Änderungen an den Einstellungen werden in { $time } Sekunden automatisch rückgängig gemacht.
|
.change-prompt = Änderungen an den Einstellungen werden in { $time } Sekunden automatisch rückgängig gemacht.
|
||||||
.revert-settings = Einstellungen rückgängig machen
|
.revert-settings = Einstellungen rückgängig machen
|
||||||
|
|
||||||
legacy-applications = Anwendungsskalierung des X11-Fenstersystems
|
legacy-app-scaling = Anwendungsskalierung des X11-Fenstersystems
|
||||||
.scaled-by-system = Alle X11-Anwendungen skalieren
|
.scaled-by-system = Alle X11-Anwendungen skalieren
|
||||||
.system-description = X11-Anwendungen werden auf HiDPI-Bildschirmen unscharf dargestellt.
|
.system-description = X11-Anwendungen werden auf HiDPI-Bildschirmen unscharf dargestellt.
|
||||||
.scaled-natively = X11-Anwendungen in nativer Auflösung rendern
|
.scaled-natively = X11-Anwendungen in nativer Auflösung rendern
|
||||||
|
|
|
||||||
|
|
@ -392,7 +392,7 @@ dialog = Diálogo
|
||||||
.change-prompt = Los cambios en la configuración se revertirán automáticamente en { $time } segundos.
|
.change-prompt = Los cambios en la configuración se revertirán automáticamente en { $time } segundos.
|
||||||
.revert-settings = Revertir configuraciones
|
.revert-settings = Revertir configuraciones
|
||||||
|
|
||||||
legacy-applications = Escalado de aplicaciones del sistema de ventanas X11
|
legacy-app-scaling = Escalado de aplicaciones del sistema de ventanas X11
|
||||||
.scaled-by-system = Escalar todas las aplicaciones X11
|
.scaled-by-system = Escalar todas las aplicaciones X11
|
||||||
.system-description = Las aplicaciones X11 aparecerán borrosas en pantallas HiDPI.
|
.system-description = Las aplicaciones X11 aparecerán borrosas en pantallas HiDPI.
|
||||||
.scaled-natively = Renderizar aplicaciones X11 a resolución nativa
|
.scaled-natively = Renderizar aplicaciones X11 a resolución nativa
|
||||||
|
|
|
||||||
|
|
@ -393,7 +393,7 @@ dialog = Dialogue
|
||||||
.change-prompt = Les modifications des paramètres reviendront automatiquement dans { $time } secondes.
|
.change-prompt = Les modifications des paramètres reviendront automatiquement dans { $time } secondes.
|
||||||
.revert-settings = Revenir aux paramètres
|
.revert-settings = Revenir aux paramètres
|
||||||
|
|
||||||
legacy-applications = Mise à l'échelle des applications X11
|
legacy-app-scaling = Mise à l'échelle des applications X11
|
||||||
.scaled-by-system = Mettre à l'échelle toutes les applications X11
|
.scaled-by-system = Mettre à l'échelle toutes les applications X11
|
||||||
.system-description = Les applications X11 seront floues sur les écrans HiDPI.
|
.system-description = Les applications X11 seront floues sur les écrans HiDPI.
|
||||||
.scaled-natively = Afficher toutes les applications X11 à la résolution native
|
.scaled-natively = Afficher toutes les applications X11 à la résolution native
|
||||||
|
|
|
||||||
|
|
@ -83,13 +83,13 @@ vpn-error = Earráid VPN
|
||||||
[password-flags] pasfhocail-bratacha
|
[password-flags] pasfhocail-bratacha
|
||||||
} le nmcli
|
} le nmcli
|
||||||
|
|
||||||
wired = Sreangaithe
|
wired = Sreangaithe
|
||||||
.adapter = Adaptóir sreangaithe { $id }
|
.adapter = Adaptóir sreangaithe { $id }
|
||||||
.connections = Ceangail Sreangaithe
|
.connections = Ceangail Sreangaithe
|
||||||
.devices = Gléasanna Sreangaithe
|
.devices = Gléasanna Sreangaithe
|
||||||
.remove = Bain an próifíl ceangailte
|
.remove = Bain an próifíl ceangailte
|
||||||
|
|
||||||
wifi = Wi-Fi
|
wifi = Wi-Fi
|
||||||
.adapter = Adaptóir Wi-Fi { $id }
|
.adapter = Adaptóir Wi-Fi { $id }
|
||||||
.forget = Déan dearmad ar an líonra seo
|
.forget = Déan dearmad ar an líonra seo
|
||||||
|
|
||||||
|
|
@ -398,7 +398,7 @@ dialog = Dialóg
|
||||||
.change-prompt = Rachaidh athruithe socruithe ar ais go huathoibríoch i gceann { $time } soicind.
|
.change-prompt = Rachaidh athruithe socruithe ar ais go huathoibríoch i gceann { $time } soicind.
|
||||||
.revert-settings = Cuir Socruithe ar ais
|
.revert-settings = Cuir Socruithe ar ais
|
||||||
|
|
||||||
legacy-applications = X11 Scálú Feidhmchlár an Chórais Fuinneog
|
legacy-app-scaling = X11 Scálú Feidhmchlár an Chórais Fuinneog
|
||||||
.scaled-by-system = Scála gach Feidhmchlár X11
|
.scaled-by-system = Scála gach Feidhmchlár X11
|
||||||
.system-description = Feicfear feidhmchláir X11 doiléir ar scáileáin HiDPI.
|
.system-description = Feicfear feidhmchláir X11 doiléir ar scáileáin HiDPI.
|
||||||
.scaled-natively = Rindreáil X11 Feidhmchláir ag taifeach dúchais
|
.scaled-natively = Rindreáil X11 Feidhmchláir ag taifeach dúchais
|
||||||
|
|
@ -653,7 +653,7 @@ replace-shortcut-dialog = Ionadaigh Aicearra?
|
||||||
|
|
||||||
## Input: Mouse
|
## Input: Mouse
|
||||||
|
|
||||||
mouse = Luch
|
mouse = Luch
|
||||||
.desc = Luas luch, luasghéarú, scrollú nádúrtha.
|
.desc = Luas luch, luasghéarú, scrollú nádúrtha.
|
||||||
.speed = Luas luch
|
.speed = Luas luch
|
||||||
.acceleration = Cum luasghéarú luch
|
.acceleration = Cum luasghéarú luch
|
||||||
|
|
@ -765,7 +765,7 @@ about-related = Socruithe Gaolmhara
|
||||||
|
|
||||||
## System: Firmware
|
## System: Firmware
|
||||||
|
|
||||||
firmware = Dochtearraí
|
firmware = Dochtearraí
|
||||||
.desc = Sonraí maidir le dochtearraí.
|
.desc = Sonraí maidir le dochtearraí.
|
||||||
|
|
||||||
## System: Users
|
## System: Users
|
||||||
|
|
|
||||||
|
|
@ -392,7 +392,7 @@ dialog = संवाद
|
||||||
.change-prompt = सेटिंग में परिवर्तन { $time } सेकंड में स्वचालित रूप से वापस आ जाएगा।
|
.change-prompt = सेटिंग में परिवर्तन { $time } सेकंड में स्वचालित रूप से वापस आ जाएगा।
|
||||||
.revert-settings = सेटिंग्स वापस करें
|
.revert-settings = सेटिंग्स वापस करें
|
||||||
|
|
||||||
legacy-applications = X11 विंडो सिस्टम एप्लिकेशन स्केलिंग
|
legacy-app-scaling = X11 विंडो सिस्टम एप्लिकेशन स्केलिंग
|
||||||
.scaled-by-system = सभी X11 एप्लिकेशनों को स्केल करें
|
.scaled-by-system = सभी X11 एप्लिकेशनों को स्केल करें
|
||||||
.system-description = X11 एप्लिकेशन HiDPI स्क्रीन पर धुंधले दिखते हैं।
|
.system-description = X11 एप्लिकेशन HiDPI स्क्रीन पर धुंधले दिखते हैं।
|
||||||
.scaled-natively = स्थानीय संकल्प पर X11 एप्लिकेशनों को स्केल करें
|
.scaled-natively = स्थानीय संकल्प पर X11 एप्लिकेशनों को स्केल करें
|
||||||
|
|
@ -530,7 +530,7 @@ migrate-workspace = कार्यक्षेत्र को { $direction ->
|
||||||
*[down] नीचे
|
*[down] नीचे
|
||||||
[left] बायां
|
[left] बायां
|
||||||
[right] दायां
|
[right] दायां
|
||||||
[up] ऊपर
|
[up] ऊपर
|
||||||
}
|
}
|
||||||
navigate = नेविगेट करें
|
navigate = नेविगेट करें
|
||||||
replace = बदलें
|
replace = बदलें
|
||||||
|
|
|
||||||
|
|
@ -402,7 +402,7 @@ dialog = Dialog
|
||||||
.change-prompt = Le impostazioni verranno automaticamente ripristinate tra { $time } secondi.
|
.change-prompt = Le impostazioni verranno automaticamente ripristinate tra { $time } secondi.
|
||||||
.revert-settings = Ripristina impostazioni
|
.revert-settings = Ripristina impostazioni
|
||||||
|
|
||||||
legacy-applications = Scala delle applicazioni del sistema X11
|
legacy-app-scaling = Scala delle applicazioni del sistema X11
|
||||||
.scaled-by-system = Scala tutte le applicazioni X11
|
.scaled-by-system = Scala tutte le applicazioni X11
|
||||||
.system-description = Le applicazioni X11 appariranno sfocate su schermi HiDPI.
|
.system-description = Le applicazioni X11 appariranno sfocate su schermi HiDPI.
|
||||||
.scaled-natively = Renderizza le applicazioni X11 alla risoluzione nativa
|
.scaled-natively = Renderizza le applicazioni X11 alla risoluzione nativa
|
||||||
|
|
|
||||||
|
|
@ -225,7 +225,7 @@ dialog = ダイヤログ
|
||||||
.change-prompt = { $time }秒後に設定は自動的に元に戻ります。
|
.change-prompt = { $time }秒後に設定は自動的に元に戻ります。
|
||||||
.revert-settings = 元に戻す
|
.revert-settings = 元に戻す
|
||||||
|
|
||||||
legacy-applications = X11アプリケーションのスケーリング
|
legacy-app-scaling = X11アプリケーションのスケーリング
|
||||||
.scaled-by-system = X11アプリを全てスケーリングする
|
.scaled-by-system = X11アプリを全てスケーリングする
|
||||||
.system-description = HiDPI画面はX11アプリケーションがボケに見えます。
|
.system-description = HiDPI画面はX11アプリケーションがボケに見えます。
|
||||||
.scaled-natively = X11アプリをネーティブの解像度で表現する
|
.scaled-natively = X11アプリをネーティブの解像度で表現する
|
||||||
|
|
@ -550,7 +550,7 @@ battery = Battery
|
||||||
.day = { $value }日
|
.day = { $value }日
|
||||||
|
|
||||||
.less-than-minute = 一分以下
|
.less-than-minute = 一分以下
|
||||||
|
|
||||||
.and =
|
.and =
|
||||||
|
|
||||||
.remaining-time = { $action ->
|
.remaining-time = { $action ->
|
||||||
|
|
|
||||||
|
|
@ -392,7 +392,7 @@ dialog = ಡೈಲಾಗ್
|
||||||
.change-prompt = ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ ಬದಲಾವಣೆಗಳು { $time } ಸೆಕೆಂಡುಗಳಲ್ಲಿ ಸ್ವಾಯತ್ತವಾಗಿ ಹಿಂದಿರುಗುತ್ತವೆ.
|
.change-prompt = ಸೆಟ್ಟಿಂಗ್ಗಳಲ್ಲಿ ಬದಲಾವಣೆಗಳು { $time } ಸೆಕೆಂಡುಗಳಲ್ಲಿ ಸ್ವಾಯತ್ತವಾಗಿ ಹಿಂದಿರುಗುತ್ತವೆ.
|
||||||
.revert-settings = ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಹಿಂದಿರುಗಿಸಿ
|
.revert-settings = ಸೆಟ್ಟಿಂಗ್ಗಳನ್ನು ಹಿಂದಿರುಗಿಸಿ
|
||||||
|
|
||||||
legacy-applications = X11 ವಿಂಡೋ ಸಿಸ್ಟಮ್ ಅಪ್ಲಿಕೇಶನ್ ಸ್ಕೇಲಿಂಗ್
|
legacy-app-scaling = X11 ವಿಂಡೋ ಸಿಸ್ಟಮ್ ಅಪ್ಲಿಕೇಶನ್ ಸ್ಕೇಲಿಂಗ್
|
||||||
.scaled-by-system = ಎಲ್ಲಾ X11 ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಅಳೆಯಿರಿ
|
.scaled-by-system = ಎಲ್ಲಾ X11 ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಅಳೆಯಿರಿ
|
||||||
.system-description = X11 ಅಪ್ಲಿಕೇಶನ್ಗಳು HiDPI ಪರದೆಗಳಲ್ಲಿ ಅಸ್ಪಷ್ಟವಾಗಿ ಗೋಚರಿಸುತ್ತವೆ.
|
.system-description = X11 ಅಪ್ಲಿಕೇಶನ್ಗಳು HiDPI ಪರದೆಗಳಲ್ಲಿ ಅಸ್ಪಷ್ಟವಾಗಿ ಗೋಚರಿಸುತ್ತವೆ.
|
||||||
.scaled-natively = ಸ್ಥಳೀಯ ರೆಸಲ್ಯೂಶನ್ನಲ್ಲಿ X11 ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಸಲ್ಲಿಸಿ
|
.scaled-natively = ಸ್ಥಳೀಯ ರೆಸಲ್ಯೂಶನ್ನಲ್ಲಿ X11 ಅಪ್ಲಿಕೇಶನ್ಗಳನ್ನು ಸಲ್ಲಿಸಿ
|
||||||
|
|
@ -530,7 +530,7 @@ migrate-workspace = ಕಾರ್ಯಸ್ಥಳವನ್ನು { $direction ->
|
||||||
*[down] ಕೆಳಕ್ಕೆ
|
*[down] ಕೆಳಕ್ಕೆ
|
||||||
[left] ಎಡಕ್ಕೆ
|
[left] ಎಡಕ್ಕೆ
|
||||||
[right] ಬಲಕ್ಕೆ
|
[right] ಬಲಕ್ಕೆ
|
||||||
[up] ಮೇಲಕ್ಕೆ
|
[up] ಮೇಲಕ್ಕೆ
|
||||||
}
|
}
|
||||||
navigate = ನಾವಿಗೇಟ್ ಮಾಡಿ
|
navigate = ನಾವಿಗೇಟ್ ಮಾಡಿ
|
||||||
replace = ಬದಲಾಯಿಸಿ
|
replace = ಬದಲಾಯಿಸಿ
|
||||||
|
|
|
||||||
|
|
@ -142,7 +142,7 @@ magnifier = Vergrootglas
|
||||||
{$zoom_in} om in te zoomen,
|
{$zoom_in} om in te zoomen,
|
||||||
}{ $zoom_out ->
|
}{ $zoom_out ->
|
||||||
[zero] {""}
|
[zero] {""}
|
||||||
*[other] {""}
|
*[other] {""}
|
||||||
{$zoom_out} om uit te zoomen,
|
{$zoom_out} om uit te zoomen,
|
||||||
}
|
}
|
||||||
Super + scrollwiel om te zoomen met de muis
|
Super + scrollwiel om te zoomen met de muis
|
||||||
|
|
@ -180,7 +180,7 @@ fit-to-screen = Aan het scherm passend maken
|
||||||
open-new-folder = Nieuwe map openen
|
open-new-folder = Nieuwe map openen
|
||||||
recent-folders = Recente mappen
|
recent-folders = Recente mappen
|
||||||
|
|
||||||
x-minutes = { $number ->
|
x-minutes = { $number ->
|
||||||
[1] 1 minuut
|
[1] 1 minuut
|
||||||
*[other] { $number } minuten
|
*[other] { $number } minuten
|
||||||
}
|
}
|
||||||
|
|
@ -217,8 +217,8 @@ auto-switch = Automatisch wisselen tussen lichte en donkere modus
|
||||||
.next-sunrise = Wissel naar lichte modus bij de volgende zonsopgang
|
.next-sunrise = Wissel naar lichte modus bij de volgende zonsopgang
|
||||||
.next-sunset = Wissel naar donkere modus bij de volgende zonsondergang
|
.next-sunset = Wissel naar donkere modus bij de volgende zonsondergang
|
||||||
|
|
||||||
container-background = Containerachtergrond
|
container-background = Containerachtergrond
|
||||||
.desc-detail = De containerachtergrondskleur wordt gebruikt voor de navigatiebalk, het zijpaneel, dialoogvensters en soortgelijke widgets. Standaard wordt deze automatisch afgeleid van de applicatie- of vensterachtergrondkleur.
|
.desc-detail = De containerachtergrondskleur wordt gebruikt voor de navigatiebalk, het zijpaneel, dialoogvensters en soortgelijke widgets. Standaard wordt deze automatisch afgeleid van de applicatie- of vensterachtergrondkleur.
|
||||||
.reset = Naar automatisch terugzetten
|
.reset = Naar automatisch terugzetten
|
||||||
.desc = De primaire containerkleur wordt gebruikt voor de navigatiezijbalk, het zijpaneel, dialoogvensters en soortgelijke widgets.
|
.desc = De primaire containerkleur wordt gebruikt voor de navigatiezijbalk, het zijpaneel, dialoogvensters en soortgelijke widgets.
|
||||||
|
|
||||||
|
|
@ -430,7 +430,7 @@ dialog = Dialoog
|
||||||
.change-prompt = Instellingen worden automatisch hersteld in { $time } seconden.
|
.change-prompt = Instellingen worden automatisch hersteld in { $time } seconden.
|
||||||
.revert-settings = Instellingen herstellen
|
.revert-settings = Instellingen herstellen
|
||||||
|
|
||||||
legacy-applications = Schaling van applicaties die het X11-venstersysteem gebruiken
|
legacy-app-scaling = Schaling van applicaties die het X11-venstersysteem gebruiken
|
||||||
.scaled-by-system = Schaal alle X11-applicaties
|
.scaled-by-system = Schaal alle X11-applicaties
|
||||||
.system-description = X11-applicaties worden onscherp weergegeven op HiDPI-schermen.
|
.system-description = X11-applicaties worden onscherp weergegeven op HiDPI-schermen.
|
||||||
.scaled-natively = X11-applicaties in native resolutie weergeven
|
.scaled-natively = X11-applicaties in native resolutie weergeven
|
||||||
|
|
@ -728,7 +728,7 @@ gestures = Veeggebaren
|
||||||
|
|
||||||
switch-workspaces = Werkbladen wisselen
|
switch-workspaces = Werkbladen wisselen
|
||||||
.horizontal = Met vier vingers naar links/recht vegen
|
.horizontal = Met vier vingers naar links/recht vegen
|
||||||
.vertical = Met vier vingers naar boven/beneden vegen
|
.vertical = Met vier vingers naar boven/beneden vegen
|
||||||
|
|
||||||
switch-between-windows = Tussen vensters wisselen
|
switch-between-windows = Tussen vensters wisselen
|
||||||
open-application-library = appmenu openen
|
open-application-library = appmenu openen
|
||||||
|
|
|
||||||
|
|
@ -143,7 +143,7 @@ magnifier = Lupa
|
||||||
{$zoom_in} aby przybliżyć,
|
{$zoom_in} aby przybliżyć,
|
||||||
}{ $zoom_out ->
|
}{ $zoom_out ->
|
||||||
[zero] {""}
|
[zero] {""}
|
||||||
*[other] {""}
|
*[other] {""}
|
||||||
{$zoom_out} aby oddalić,
|
{$zoom_out} aby oddalić,
|
||||||
}
|
}
|
||||||
Super + przewijanie rolką myszy
|
Super + przewijanie rolką myszy
|
||||||
|
|
@ -445,7 +445,7 @@ dialog = Dialog
|
||||||
}
|
}
|
||||||
.revert-settings = Powróć do poprzednich ustawień
|
.revert-settings = Powróć do poprzednich ustawień
|
||||||
|
|
||||||
legacy-applications = Skalowanie aplikacji systemu okien X11
|
legacy-app-scaling = Skalowanie aplikacji systemu okien X11
|
||||||
.scaled-by-system = Skaluj wszystkie aplikacje X11
|
.scaled-by-system = Skaluj wszystkie aplikacje X11
|
||||||
.system-description = Aplikacje X11 będą rozmyte na wyświetlaczach z wysokim DPI.
|
.system-description = Aplikacje X11 będą rozmyte na wyświetlaczach z wysokim DPI.
|
||||||
.scaled-natively = Renderuj aplikacje X11 w pierwotnej rozdzielczości.
|
.scaled-natively = Renderuj aplikacje X11 w pierwotnej rozdzielczości.
|
||||||
|
|
|
||||||
|
|
@ -410,7 +410,7 @@ dialog = Dialóg
|
||||||
.change-prompt = Zmeny nastavení sa automaticky vrátia o { $time } sekúnd.
|
.change-prompt = Zmeny nastavení sa automaticky vrátia o { $time } sekúnd.
|
||||||
.revert-settings = Vrátiť nastavenia
|
.revert-settings = Vrátiť nastavenia
|
||||||
|
|
||||||
legacy-applications = Škálovanie aplikácií systému okien X11
|
legacy-app-scaling = Škálovanie aplikácií systému okien X11
|
||||||
.scaled-by-system = Škálovať všetky aplikácie X11
|
.scaled-by-system = Škálovať všetky aplikácie X11
|
||||||
.system-description = Aplikácie X11 sa na obrazovkách HiDPI zobrazia rozmazane.
|
.system-description = Aplikácie X11 sa na obrazovkách HiDPI zobrazia rozmazane.
|
||||||
.scaled-natively = Vykresľovať aplikácie X11 v natívnom rozlíšení
|
.scaled-natively = Vykresľovať aplikácie X11 v natívnom rozlíšení
|
||||||
|
|
@ -816,4 +816,4 @@ default-apps = Predvolené aplikácie
|
||||||
.calendar = Kalendár
|
.calendar = Kalendár
|
||||||
.terminal = Terminál
|
.terminal = Terminál
|
||||||
.other-associations = Ďalšie priradenia
|
.other-associations = Ďalšie priradenia
|
||||||
.text-editor = Textový editor
|
.text-editor = Textový editor
|
||||||
|
|
|
||||||
|
|
@ -142,14 +142,14 @@ orientation = Orientering
|
||||||
|
|
||||||
scheduling = Schemaläggning
|
scheduling = Schemaläggning
|
||||||
.manual = Manuellt schema
|
.manual = Manuellt schema
|
||||||
|
|
||||||
dialog = Dialogruta
|
dialog = Dialogruta
|
||||||
.title = Behåll dessa skärminställningar?
|
.title = Behåll dessa skärminställningar?
|
||||||
.keep-changes = Behåll ändringar
|
.keep-changes = Behåll ändringar
|
||||||
.change-prompt = Inställningsändringar återställs automatiskt om { $time } sekunder.
|
.change-prompt = Inställningsändringar återställs automatiskt om { $time } sekunder.
|
||||||
.revert-settings = Återställ inställningar
|
.revert-settings = Återställ inställningar
|
||||||
|
|
||||||
legacy-applications = X11 fönstersystem applikationsskalning
|
legacy-app-scaling = X11 fönstersystem applikationsskalning
|
||||||
.scaled-by-system = Skala alla X11 applikationer
|
.scaled-by-system = Skala alla X11 applikationer
|
||||||
.system-description = X11-applikationer kommer att se suddiga ut på HiDPI-skärmar.
|
.system-description = X11-applikationer kommer att se suddiga ut på HiDPI-skärmar.
|
||||||
.scaled-natively = Rendera X11-applikationer med inbyggd upplösning
|
.scaled-natively = Rendera X11-applikationer med inbyggd upplösning
|
||||||
|
|
@ -203,7 +203,7 @@ top-panel = Övre Panel
|
||||||
window-controls = Fönsterkontroller
|
window-controls = Fönsterkontroller
|
||||||
.minimize = Visa minimera knapp
|
.minimize = Visa minimera knapp
|
||||||
.maximize = Visa maximera knapp
|
.maximize = Visa maximera knapp
|
||||||
|
|
||||||
focus-navigation = Fokusnavigering
|
focus-navigation = Fokusnavigering
|
||||||
.focus-follows-cursor = Fokus följer markören
|
.focus-follows-cursor = Fokus följer markören
|
||||||
.focus-follows-cursor-delay = Fokus följer markörens fördröjning i ms
|
.focus-follows-cursor-delay = Fokus följer markörens fördröjning i ms
|
||||||
|
|
@ -310,7 +310,7 @@ workspaces-overview-thumbnails = Arbetsyta Översikt Miniatyrer
|
||||||
workspaces-orientation = Arbetsytor Orientering
|
workspaces-orientation = Arbetsytor Orientering
|
||||||
.vertical = Vertikal
|
.vertical = Vertikal
|
||||||
.horizontal = Horisontell
|
.horizontal = Horisontell
|
||||||
|
|
||||||
hot-corner = Heta hörn
|
hot-corner = Heta hörn
|
||||||
.top-left-corner = Aktivera det övre vänstra heta hörnet för arbetsytor
|
.top-left-corner = Aktivera det övre vänstra heta hörnet för arbetsytor
|
||||||
|
|
||||||
|
|
@ -322,19 +322,19 @@ wired = Trådbunden anslutning
|
||||||
.connections = Trådbundna anslutningar
|
.connections = Trådbundna anslutningar
|
||||||
.devices = Trådbundna enheter
|
.devices = Trådbundna enheter
|
||||||
.remove = Ta bort anslutningsprofil
|
.remove = Ta bort anslutningsprofil
|
||||||
|
|
||||||
## Nätverk: WiFi
|
## Nätverk: WiFi
|
||||||
|
|
||||||
wifi = Wi-Fi
|
wifi = Wi-Fi
|
||||||
.adapter = WiFi adapter { $id }
|
.adapter = WiFi adapter { $id }
|
||||||
.forget = Glöm detta nätverket
|
.forget = Glöm detta nätverket
|
||||||
|
|
||||||
## Nätverk: Wireguard
|
## Nätverk: Wireguard
|
||||||
|
|
||||||
wireguard-dialog = Lägg till WireGuard enhet
|
wireguard-dialog = Lägg till WireGuard enhet
|
||||||
.description = Välj ett enhetsnamn för WireGuard-konfigurationen.
|
.description = Välj ett enhetsnamn för WireGuard-konfigurationen.
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
## Nätverksanslutningar
|
## Nätverksanslutningar
|
||||||
|
|
||||||
|
|
@ -386,7 +386,7 @@ vpn = VPN
|
||||||
.error = Misslyckades med att lägga till en VPN-konfiguration
|
.error = Misslyckades med att lägga till en VPN-konfiguration
|
||||||
.remove = Ta bort ansluten profil
|
.remove = Ta bort ansluten profil
|
||||||
.select-file = Välj en VPN-konfigurationsfil
|
.select-file = Välj en VPN-konfigurationsfil
|
||||||
|
|
||||||
vpn-error = VPN fel
|
vpn-error = VPN fel
|
||||||
.config = Misslyckades med att lägga till en VPN-konfiguration
|
.config = Misslyckades med att lägga till en VPN-konfiguration
|
||||||
.connect = Misslyckades att ansluta till VPN
|
.connect = Misslyckades att ansluta till VPN
|
||||||
|
|
@ -422,14 +422,14 @@ bluetooth = Bluetooth
|
||||||
.forget = Glöm bort
|
.forget = Glöm bort
|
||||||
.dbus-error = Ett fel har uppstått under interaktion med DBus: { $why }
|
.dbus-error = Ett fel har uppstått under interaktion med DBus: { $why }
|
||||||
.show-device-without-name = Visa enheter utan namn
|
.show-device-without-name = Visa enheter utan namn
|
||||||
|
|
||||||
bluetooth-paired = Tidigare anslutna enheter
|
bluetooth-paired = Tidigare anslutna enheter
|
||||||
.connect = Anslut
|
.connect = Anslut
|
||||||
.battery = { $percentage }% batteri
|
.battery = { $percentage }% batteri
|
||||||
|
|
||||||
bluetooth-confirm-pin = Bekräfta Bluetooth PIN
|
bluetooth-confirm-pin = Bekräfta Bluetooth PIN
|
||||||
.description = Kontrollera att följande PIN-kod stämmer överens med den som visas på { $device }
|
.description = Kontrollera att följande PIN-kod stämmer överens med den som visas på { $device }
|
||||||
|
|
||||||
bluetooth-available = Enheter i närheten
|
bluetooth-available = Enheter i närheten
|
||||||
|
|
||||||
bluetooth-adapters = Bluetooth Adapters
|
bluetooth-adapters = Bluetooth Adapters
|
||||||
|
|
@ -460,7 +460,7 @@ time-format = Datum & tidsformat
|
||||||
|
|
||||||
time-region = Region & språk
|
time-region = Region & språk
|
||||||
.desc = Formatera datum, tider och siffror baserat på din region
|
.desc = Formatera datum, tider och siffror baserat på din region
|
||||||
|
|
||||||
formatting = Formatering
|
formatting = Formatering
|
||||||
.dates = Datum
|
.dates = Datum
|
||||||
.time = Tid
|
.time = Tid
|
||||||
|
|
@ -471,7 +471,7 @@ time-region = Region & språk
|
||||||
|
|
||||||
preferred-languages = Föredragna språk
|
preferred-languages = Föredragna språk
|
||||||
.desc = Ordningen på språken avgör vilket språk som används för översättningen av skrivbordsmiljön. Ändringar träder i kraft vid nästa inloggning.
|
.desc = Ordningen på språken avgör vilket språk som används för översättningen av skrivbordsmiljön. Ändringar träder i kraft vid nästa inloggning.
|
||||||
|
|
||||||
add-language = Lägg till språk
|
add-language = Lägg till språk
|
||||||
.context = Lägg till språk
|
.context = Lägg till språk
|
||||||
install-additional-languages = Installera ytterligare språk
|
install-additional-languages = Installera ytterligare språk
|
||||||
|
|
@ -635,7 +635,7 @@ keyboard-sources = Inmatningskällor
|
||||||
.view-layout = Visa tangentbordslayout
|
.view-layout = Visa tangentbordslayout
|
||||||
.remove = Ta bort
|
.remove = Ta bort
|
||||||
.add = Lägg till källa
|
.add = Lägg till källa
|
||||||
|
|
||||||
keyboard-special-char = Specialkaraktärsinmatning
|
keyboard-special-char = Specialkaraktärsinmatning
|
||||||
.alternate = Knapp för alternativa tecken
|
.alternate = Knapp för alternativa tecken
|
||||||
.compose = Compose knapp
|
.compose = Compose knapp
|
||||||
|
|
@ -653,7 +653,7 @@ show-extended-input-sources = Visa utökade ingångskällor
|
||||||
|
|
||||||
keyboard-shortcuts = Tangentbordsgenvägar
|
keyboard-shortcuts = Tangentbordsgenvägar
|
||||||
.desc = Visa och anpassa genvägar
|
.desc = Visa och anpassa genvägar
|
||||||
|
|
||||||
add-keybinding = Lägg till tangentbindning
|
add-keybinding = Lägg till tangentbindning
|
||||||
cancel = Avbryt
|
cancel = Avbryt
|
||||||
command = Kommando
|
command = Kommando
|
||||||
|
|
@ -667,7 +667,7 @@ migrate-workspace = Migrera arbetsytan till utdata { $direction ->
|
||||||
[left] vänster
|
[left] vänster
|
||||||
[right] höger
|
[right] höger
|
||||||
[up] upp
|
[up] upp
|
||||||
|
|
||||||
navigate = Navigera
|
navigate = Navigera
|
||||||
replace = Byt ut
|
replace = Byt ut
|
||||||
shortcut-name = Genvägsnamn
|
shortcut-name = Genvägsnamn
|
||||||
|
|
@ -680,7 +680,7 @@ custom-shortcuts = Anpassade genvägar
|
||||||
.add = Lägg till genväg
|
.add = Lägg till genväg
|
||||||
.context = Lägg till anpassad genväg
|
.context = Lägg till anpassad genväg
|
||||||
.none = Inga anpassade genvägar
|
.none = Inga anpassade genvägar
|
||||||
|
|
||||||
modified = { $count } modiferad
|
modified = { $count } modiferad
|
||||||
|
|
||||||
nav-shortcuts = Navigation
|
nav-shortcuts = Navigation
|
||||||
|
|
@ -704,7 +704,7 @@ nav-shortcuts = Navigation
|
||||||
[up] upp
|
[up] upp
|
||||||
}
|
}
|
||||||
.workspace = Ändra till arbetsyta { $num }
|
.workspace = Ändra till arbetsyta { $num }
|
||||||
|
|
||||||
manage-windows = Hantera fönster
|
manage-windows = Hantera fönster
|
||||||
.close = Stäng fönster
|
.close = Stäng fönster
|
||||||
.maximize = Maximera fönster
|
.maximize = Maximera fönster
|
||||||
|
|
@ -712,7 +712,7 @@ manage-windows = Hantera fönster
|
||||||
.resize-inwards = Ändra storlek på fönstret inåt
|
.resize-inwards = Ändra storlek på fönstret inåt
|
||||||
.resize-outwards = Ändra storlek på fönstret utåt
|
.resize-outwards = Ändra storlek på fönstret utåt
|
||||||
.toggle-sticky = Växla klibbigt fönster
|
.toggle-sticky = Växla klibbigt fönster
|
||||||
|
|
||||||
move-windows = Flytta fönster
|
move-windows = Flytta fönster
|
||||||
.direction = Flytta fönster { $direction ->
|
.direction = Flytta fönster { $direction ->
|
||||||
*[down] ned
|
*[down] ned
|
||||||
|
|
@ -740,7 +740,7 @@ move-windows = Flytta fönster
|
||||||
.prev-display = Flytta fönster till föregående skärm
|
.prev-display = Flytta fönster till föregående skärm
|
||||||
.send-to-prev-workspace = Flytta fönster till föregående arbetsyta
|
.send-to-prev-workspace = Flytta fönster till föregående arbetsyta
|
||||||
.send-to-next-workspace = Flytta fönster till nästa arbetsyta
|
.send-to-next-workspace = Flytta fönster till nästa arbetsyta
|
||||||
|
|
||||||
system-shortcut = System
|
system-shortcut = System
|
||||||
.app-library = Öppna app bibliotek
|
.app-library = Öppna app bibliotek
|
||||||
.brightness-down = Minska skärmens ljusstyrka
|
.brightness-down = Minska skärmens ljusstyrka
|
||||||
|
|
@ -762,7 +762,7 @@ system-shortcut = System
|
||||||
.web-browser = Öppna en webbläsare
|
.web-browser = Öppna en webbläsare
|
||||||
.window-switcher = Växla mellan öppna fönster
|
.window-switcher = Växla mellan öppna fönster
|
||||||
.workspace-overview = Öppna översikten över arbetsytor
|
.workspace-overview = Öppna översikten över arbetsytor
|
||||||
|
|
||||||
window-tiling = Kakelsättning av fönster
|
window-tiling = Kakelsättning av fönster
|
||||||
.horizontal = Ställ in horisontell orientering
|
.horizontal = Ställ in horisontell orientering
|
||||||
.vertical = Ställ in vertikal orientering
|
.vertical = Ställ in vertikal orientering
|
||||||
|
|
@ -771,7 +771,7 @@ window-tiling = Kakelsättning av fönster
|
||||||
.toggle-stacking = Växla fönsterstapling
|
.toggle-stacking = Växla fönsterstapling
|
||||||
.toggle-floating = Växla flytande fönster
|
.toggle-floating = Växla flytande fönster
|
||||||
.toggle-orientation = Växla orientering
|
.toggle-orientation = Växla orientering
|
||||||
|
|
||||||
replace-shortcut-dialog = Byt ut genväg?
|
replace-shortcut-dialog = Byt ut genväg?
|
||||||
.desc = { $shortcut } används av { $name }. Om du byter ut den så kommer, { $name } att inaktiveras.
|
.desc = { $shortcut } används av { $name }. Om du byter ut den så kommer, { $name } att inaktiveras.
|
||||||
|
|
||||||
|
|
@ -787,10 +787,10 @@ mouse = Mus
|
||||||
click-behavior = Klickbeteende
|
click-behavior = Klickbeteende
|
||||||
.click-finger = Sekundärklicka med två fingrar och mellanklicka med tre fingrar
|
.click-finger = Sekundärklicka med två fingrar och mellanklicka med tre fingrar
|
||||||
.button-areas = Sekundärklicka i det nedre högra hörnet och mittenklicka längst ner i mitten
|
.button-areas = Sekundärklicka i det nedre högra hörnet och mittenklicka längst ner i mitten
|
||||||
|
|
||||||
pinch-to-zoom = Nyp för att zooma
|
pinch-to-zoom = Nyp för att zooma
|
||||||
.desc = Använd två fingrar för att zooma in på innehåll, för applikationer som stöder zoom.
|
.desc = Använd två fingrar för att zooma in på innehåll, för applikationer som stöder zoom.
|
||||||
|
|
||||||
tap-to-click = Tryck för att klicka
|
tap-to-click = Tryck för att klicka
|
||||||
.desc = Aktiverar tryck med ett finger för primärt klick, tryck med två fingrar för sekundärt klick och tryck med tre fingrar för mittenklick.
|
.desc = Aktiverar tryck med ett finger för primärt klick, tryck med två fingrar för sekundärt klick och tryck med tre fingrar för mittenklick.
|
||||||
|
|
||||||
|
|
@ -811,7 +811,7 @@ gestures = Gester
|
||||||
switch-workspaces = Ändra arbetsyta
|
switch-workspaces = Ändra arbetsyta
|
||||||
.horizontal = Fyra fingrar svep vänster/höger
|
.horizontal = Fyra fingrar svep vänster/höger
|
||||||
.vertical = Fyra fingrar svep upp/ned
|
.vertical = Fyra fingrar svep upp/ned
|
||||||
|
|
||||||
switch-between-windows = Ändra mellan fönster
|
switch-between-windows = Ändra mellan fönster
|
||||||
open-application-library = Öppna Applikationsbibliotek
|
open-application-library = Öppna Applikationsbibliotek
|
||||||
open-workspaces-view = Öppna Översikt över arbetsytor
|
open-workspaces-view = Öppna Översikt över arbetsytor
|
||||||
|
|
|
||||||
|
|
@ -392,7 +392,7 @@ dialog = ไดอะล็อก
|
||||||
.change-prompt = การเปลี่ยนแปลงการตั้งค่าจะคืนค่าเดิมภายใน { $time } วินาที
|
.change-prompt = การเปลี่ยนแปลงการตั้งค่าจะคืนค่าเดิมภายใน { $time } วินาที
|
||||||
.revert-settings = คงค่าการตั้งค่าเดิม
|
.revert-settings = คงค่าการตั้งค่าเดิม
|
||||||
|
|
||||||
legacy-applications = การขยายแอพลิเคชั่นที่ใช้ระบบจัดการหน้าต่าง X11
|
legacy-app-scaling = การขยายแอพลิเคชั่นที่ใช้ระบบจัดการหน้าต่าง X11
|
||||||
.scaled-by-system = ขยายแอพลิเคชั่น X11 ทั้งหมด
|
.scaled-by-system = ขยายแอพลิเคชั่น X11 ทั้งหมด
|
||||||
.system-description = แอพลิเคชั่น X11 จะเบลอบนหน้าจอ HiDPI
|
.system-description = แอพลิเคชั่น X11 จะเบลอบนหน้าจอ HiDPI
|
||||||
.scaled-natively = แสดงแอพลิเคชั่น X11 ทั้งหมดที่ความละเอียดดั้งเดิม
|
.scaled-natively = แสดงแอพลิเคชั่น X11 ทั้งหมดที่ความละเอียดดั้งเดิม
|
||||||
|
|
|
||||||
|
|
@ -116,7 +116,7 @@ bluetooth = Bluetooth
|
||||||
.forget = Unut
|
.forget = Unut
|
||||||
.dbus-error = DBus ile etkileşirken bir hata meydana geldi: { $why }
|
.dbus-error = DBus ile etkileşirken bir hata meydana geldi: { $why }
|
||||||
|
|
||||||
bluetooth-paired = Önceden Bağlanılan Aygıtlar
|
bluetooth-paired = Önceden Bağlanılan Aygıtlar
|
||||||
.connect = Bağlan
|
.connect = Bağlan
|
||||||
.battery = %{ $percentage } şarj
|
.battery = %{ $percentage } şarj
|
||||||
|
|
||||||
|
|
@ -214,7 +214,7 @@ window-hint-accent-toggle = Etkin pencereyi belirtmek için tema vurgu rengini k
|
||||||
auto-switch = Otomatik olarak Açık ve Koyu modlar arasında geçiş yap
|
auto-switch = Otomatik olarak Açık ve Koyu modlar arasında geçiş yap
|
||||||
.sunrise = Gün doğumunda Açık moda geçer
|
.sunrise = Gün doğumunda Açık moda geçer
|
||||||
.sunset = Gün batımında Koyu moda geçer
|
.sunset = Gün batımında Koyu moda geçer
|
||||||
.next-sunrise = Bir dahaki gün doğumunda Açık moda geçer
|
.next-sunrise = Bir dahaki gün doğumunda Açık moda geçer
|
||||||
.next-sunset = Bir dahaki gün doğumunda Koyu moda geçer
|
.next-sunset = Bir dahaki gün doğumunda Koyu moda geçer
|
||||||
|
|
||||||
container-background = Konteyner arka planı
|
container-background = Konteyner arka planı
|
||||||
|
|
@ -235,7 +235,7 @@ icon-theme = Simge Teması
|
||||||
.desc = Uygulamalara farklı birtakım simgeler uygular.
|
.desc = Uygulamalara farklı birtakım simgeler uygular.
|
||||||
|
|
||||||
text-tint = Arayüz metin tonlaması
|
text-tint = Arayüz metin tonlaması
|
||||||
.desc = Çeşitli yüzeylerde yeterli kontrasta sahip metinlerin rengini belirlemekte kullanılan renk
|
.desc = Çeşitli yüzeylerde yeterli kontrasta sahip metinlerin rengini belirlemekte kullanılan renk
|
||||||
|
|
||||||
style = Stil
|
style = Stil
|
||||||
.round = Yuvarlak
|
.round = Yuvarlak
|
||||||
|
|
@ -292,7 +292,7 @@ panel-appearance = Görünüm
|
||||||
|
|
||||||
panel-behavior-and-position = Davranış ve Konumlar
|
panel-behavior-and-position = Davranış ve Konumlar
|
||||||
.autohide = Paneli otomatik gizle
|
.autohide = Paneli otomatik gizle
|
||||||
.dock-autohide = Docku otomatik gizle
|
.dock-autohide = Docku otomatik gizle
|
||||||
.position = Ekrandaki konum
|
.position = Ekrandaki konum
|
||||||
.display = Ekranda göster
|
.display = Ekranda göster
|
||||||
|
|
||||||
|
|
@ -428,10 +428,10 @@ dialog = Diyalog
|
||||||
.change-prompt = { $time } saniye içinde önceki görüntü ayarlarına dönülecek.
|
.change-prompt = { $time } saniye içinde önceki görüntü ayarlarına dönülecek.
|
||||||
.revert-settings = Ayarları Geri Al
|
.revert-settings = Ayarları Geri Al
|
||||||
|
|
||||||
legacy-applications = X11 Pencere Sistemi Uygulama Ölçeği
|
legacy-app-scaling = X11 Pencere Sistemi Uygulama Ölçeği
|
||||||
.scaled-by-system = Tüm X11 Uygulamalarını ölçekle
|
.scaled-by-system = Tüm X11 Uygulamalarını ölçekle
|
||||||
.system-description = X11 Uygulamaları HiDPI ekranlarda bulanık gözükecek.
|
.system-description = X11 Uygulamaları HiDPI ekranlarda bulanık gözükecek.
|
||||||
.scaled-natively = X11 Uygulamalarını kendi çözünürlüğünde renderla
|
.scaled-natively = X11 Uygulamalarını kendi çözünürlüğünde renderla
|
||||||
.native-description = Ölçekleme desteklemeyen X11 uygulamaları HiDPI ekran kullanıldığında küçük gözükecek. Oyunların ekran çözünürlüğünün tamamından faydalanması için etkinleştirin.
|
.native-description = Ölçekleme desteklemeyen X11 uygulamaları HiDPI ekran kullanıldığında küçük gözükecek. Oyunların ekran çözünürlüğünün tamamından faydalanması için etkinleştirin.
|
||||||
|
|
||||||
## Sound
|
## Sound
|
||||||
|
|
@ -483,7 +483,7 @@ battery = Pil
|
||||||
.remaining-time = { $action ->
|
.remaining-time = { $action ->
|
||||||
[full] Dolmasına
|
[full] Dolmasına
|
||||||
*[other] Bitmesine
|
*[other] Bitmesine
|
||||||
} { $time }
|
} { $time }
|
||||||
|
|
||||||
connected-devices = Bağlı Aygıtlar
|
connected-devices = Bağlı Aygıtlar
|
||||||
.unknown = Bilinmeyen aygıt
|
.unknown = Bilinmeyen aygıt
|
||||||
|
|
@ -601,7 +601,7 @@ nav-shortcuts = Gezinim
|
||||||
.prev-output = Önceki çıktıya odaklan
|
.prev-output = Önceki çıktıya odaklan
|
||||||
.next-output = Sonraki çıktıya odaklan
|
.next-output = Sonraki çıktıya odaklan
|
||||||
.last-workspace = Son çalışma alanına odaklan
|
.last-workspace = Son çalışma alanına odaklan
|
||||||
.prev-workspace = Önceki çalışma alanına odaklan
|
.prev-workspace = Önceki çalışma alanına odaklan
|
||||||
.next-workspace = Sonraki çalışma alanına odaklan
|
.next-workspace = Sonraki çalışma alanına odaklan
|
||||||
.focus = { $direction ->
|
.focus = { $direction ->
|
||||||
*[down] Aşağıdaki
|
*[down] Aşağıdaki
|
||||||
|
|
@ -705,9 +705,9 @@ mouse = Fare
|
||||||
|
|
||||||
click-behavior = Tıklama davranışı
|
click-behavior = Tıklama davranışı
|
||||||
.click-finger = İki parmak ile ikincil tıklama ve üç parmak ile orta tıklama
|
.click-finger = İki parmak ile ikincil tıklama ve üç parmak ile orta tıklama
|
||||||
.button-areas = Sağ alt köşede ikincil tıklama ve orta alt kenarında orta tıklama
|
.button-areas = Sağ alt köşede ikincil tıklama ve orta alt kenarında orta tıklama
|
||||||
|
|
||||||
pinch-to-zoom = İki parmakla yakınlaştırma
|
pinch-to-zoom = İki parmakla yakınlaştırma
|
||||||
.desc = Yakınlaştırma destekleyen uygulamalar için iki parmağınıla sıkıştırarak ve genişleterek yaklaştırın ve uzaklaştırın.
|
.desc = Yakınlaştırma destekleyen uygulamalar için iki parmağınıla sıkıştırarak ve genişleterek yaklaştırın ve uzaklaştırın.
|
||||||
|
|
||||||
tap-to-click = Tıklamak için dokun
|
tap-to-click = Tıklamak için dokun
|
||||||
|
|
@ -771,7 +771,7 @@ formatting = Biçimlendirme
|
||||||
.paper = Kağıt
|
.paper = Kağıt
|
||||||
|
|
||||||
preferred-languages = Tercih Edilen Diller
|
preferred-languages = Tercih Edilen Diller
|
||||||
.desc = Dillerin sırası masaüstünün çevirisinde hangi dilin kullanılacağını belirler. Değişiklikler bir dahaki girişinizde geçerli olur.
|
.desc = Dillerin sırası masaüstünün çevirisinde hangi dilin kullanılacağını belirler. Değişiklikler bir dahaki girişinizde geçerli olur.
|
||||||
|
|
||||||
add-language = Dil ekle
|
add-language = Dil ekle
|
||||||
.context = Dil Ekle
|
.context = Dil Ekle
|
||||||
|
|
@ -840,4 +840,3 @@ default-apps = Varsayılan Uygulamalar
|
||||||
.terminal = Uçbirim
|
.terminal = Uçbirim
|
||||||
.other-associations = Diğer ilişkiler
|
.other-associations = Diğer ilişkiler
|
||||||
.text-editor = Metin Düzenleyici
|
.text-editor = Metin Düzenleyici
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue