mirror of
https://github.com/noctalia-dev/noctalia-shell.git
synced 2026-05-11 17:08:27 +08:00
add some missing translations
This commit is contained in:
@@ -347,23 +347,23 @@ SmartPanel {
|
||||
model: [
|
||||
{
|
||||
"icon": "sparkles",
|
||||
"label": "Welcome"
|
||||
"label": I18n.tr("setup.welcome")
|
||||
},
|
||||
{
|
||||
"icon": "image",
|
||||
"label": "Wallpaper"
|
||||
"label": I18n.tr("common.wallpaper")
|
||||
},
|
||||
{
|
||||
"icon": "palette",
|
||||
"label": "Appearance"
|
||||
"label": I18n.tr("common.appearance")
|
||||
},
|
||||
{
|
||||
"icon": "settings",
|
||||
"label": "Customize"
|
||||
"label": I18n.tr("common.customize")
|
||||
},
|
||||
{
|
||||
"icon": "device-desktop",
|
||||
"label": "Dock"
|
||||
"label": I18n.tr("panels.dock.title")
|
||||
}
|
||||
]
|
||||
delegate: RowLayout {
|
||||
|
||||
@@ -950,14 +950,14 @@ SmartPanel {
|
||||
}
|
||||
tooltipText: {
|
||||
if (sortOrder === "date_desc")
|
||||
return "Sort: Newest First";
|
||||
return I18n.tr("wallpaper.panel.sort-date-desc");
|
||||
if (sortOrder === "date_asc")
|
||||
return "Sort: Oldest First";
|
||||
return I18n.tr("wallpaper.panel.sort-date-asc");
|
||||
if (sortOrder === "name_desc")
|
||||
return "Sort: Name (Z-A)";
|
||||
return I18n.tr("wallpaper.panel.sort-name-desc");
|
||||
if (sortOrder === "random")
|
||||
return "Sort: Random";
|
||||
return "Sort: Name (A-Z)";
|
||||
return return I18n.tr("wallpaper.panel.sort-random");
|
||||
return return I18n.tr("wallpaper.panel.sort-name-asc");
|
||||
}
|
||||
baseSize: Style.baseWidgetSize * 0.8
|
||||
onClicked: {
|
||||
|
||||
Reference in New Issue
Block a user