Translate all non json entries
This commit is contained in:
parent
1e591ad755
commit
fc0af3ff18
@ -1,4 +1,20 @@
|
|||||||
{
|
{
|
||||||
"app_name": "PikaOS Welcome",
|
"app_name": "PikaOS Welcome",
|
||||||
"app_dev": "Cosmo"
|
"app_dev": "Cosmo",
|
||||||
|
"cmd_err_dialog_body": "Command Failed to Launch",
|
||||||
|
"cmd_err_dialog_heading": "Error!",
|
||||||
|
"cmd_err_dialog_ok_label": "Ok",
|
||||||
|
"startup_switch_label": "Show on startup",
|
||||||
|
"welcome_page_title": "Welcome",
|
||||||
|
"setup_steps_page_title": "Setup Steps",
|
||||||
|
"recommended_addons_page_title": "Recommended Additions",
|
||||||
|
"look_and_feel_page_title": "Look and feel",
|
||||||
|
"community_page_title": "Join the community",
|
||||||
|
"troubleshoot_page_title": "Troubleshoot Issues",
|
||||||
|
"contribute_page_title": "Contribute to PikaOS",
|
||||||
|
"recommended_addons_command_dialog_heading": "APT Process Log",
|
||||||
|
"recommended_addons_command_dialog_ok_label": "Ok",
|
||||||
|
"welcome_page_text_title": "Welcome to PikaOS",
|
||||||
|
"welcome_page_text_description": "Thank you for choosing PikaOS!\nThis welcome screen will help guide you through the\navailable resources for PikaOS as well as help you setup \nyour computer to your liking.\n\nEnjoy!\nThe PikaOS team",
|
||||||
|
"window_banner_no_internet": "Application Locked: No Internet Connection!"
|
||||||
}
|
}
|
||||||
|
@ -31,7 +31,7 @@ pub fn build_ui(app: &adw::Application) {
|
|||||||
.icon_name(APP_ICON)
|
.icon_name(APP_ICON)
|
||||||
.default_width(glib_settings.int("window-width"))
|
.default_width(glib_settings.int("window-width"))
|
||||||
.default_height(glib_settings.int("window-height"))
|
.default_height(glib_settings.int("window-height"))
|
||||||
.width_request(300)
|
.width_request(430)
|
||||||
.height_request(500)
|
.height_request(500)
|
||||||
.startup_id(APP_ID)
|
.startup_id(APP_ID)
|
||||||
.build();
|
.build();
|
||||||
|
@ -57,6 +57,7 @@ pub fn community_page(
|
|||||||
.child(&community_page_box)
|
.child(&community_page_box)
|
||||||
.propagate_natural_width(true)
|
.propagate_natural_width(true)
|
||||||
.propagate_natural_height(true)
|
.propagate_natural_height(true)
|
||||||
|
.min_content_width(520)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
let internet_loop_context = MainContext::default();
|
let internet_loop_context = MainContext::default();
|
||||||
|
@ -57,6 +57,7 @@ pub fn contribute_page(
|
|||||||
.child(&contribute_page_box)
|
.child(&contribute_page_box)
|
||||||
.propagate_natural_width(true)
|
.propagate_natural_width(true)
|
||||||
.propagate_natural_height(true)
|
.propagate_natural_height(true)
|
||||||
|
.min_content_width(520)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
let internet_loop_context = MainContext::default();
|
let internet_loop_context = MainContext::default();
|
||||||
|
@ -58,6 +58,7 @@ pub fn look_and_feel_page(
|
|||||||
.child(&look_and_feel_page_box)
|
.child(&look_and_feel_page_box)
|
||||||
.propagate_natural_width(true)
|
.propagate_natural_width(true)
|
||||||
.propagate_natural_height(true)
|
.propagate_natural_height(true)
|
||||||
|
.min_content_width(520)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
let internet_loop_context = MainContext::default();
|
let internet_loop_context = MainContext::default();
|
||||||
|
@ -104,6 +104,7 @@ pub fn recommended_addons_page(
|
|||||||
.child(&recommended_addons_page_box)
|
.child(&recommended_addons_page_box)
|
||||||
.propagate_natural_width(true)
|
.propagate_natural_width(true)
|
||||||
.propagate_natural_height(true)
|
.propagate_natural_height(true)
|
||||||
|
.min_content_width(520)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
let internet_loop_context = MainContext::default();
|
let internet_loop_context = MainContext::default();
|
||||||
|
@ -57,6 +57,7 @@ pub fn setup_steps_page(
|
|||||||
.child(&setup_steps_page_box)
|
.child(&setup_steps_page_box)
|
||||||
.propagate_natural_width(true)
|
.propagate_natural_width(true)
|
||||||
.propagate_natural_height(true)
|
.propagate_natural_height(true)
|
||||||
|
.min_content_width(520)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
let internet_loop_context = MainContext::default();
|
let internet_loop_context = MainContext::default();
|
||||||
|
@ -57,6 +57,7 @@ pub fn troubleshoot_page(
|
|||||||
.child(&troubleshoot_page_box)
|
.child(&troubleshoot_page_box)
|
||||||
.propagate_natural_width(true)
|
.propagate_natural_width(true)
|
||||||
.propagate_natural_height(true)
|
.propagate_natural_height(true)
|
||||||
|
.min_content_width(520)
|
||||||
.build();
|
.build();
|
||||||
|
|
||||||
let internet_loop_context = MainContext::default();
|
let internet_loop_context = MainContext::default();
|
||||||
|
Loading…
Reference in New Issue
Block a user