diff options
author | Sergey <sshikaree@zoho.com> | 2021-03-09 19:04:43 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-03-09 17:04:43 +0100 |
commit | f4eba18ff67fb35bdedf6786c69655541327275f (patch) | |
tree | 502e981c90600855cbc41c95105dc3a675526b05 /main/src | |
parent | 64237a83a45ab949e28bdb0221663ac918a2c5d2 (diff) | |
download | dino-f4eba18ff67fb35bdedf6786c69655541327275f.tar.gz dino-f4eba18ff67fb35bdedf6786c69655541327275f.zip |
Fix some typos in variable names (#1016)
* Fix WelcomePlaceholder typo
* Fix DEFAULT_TABLE_NAME typo
Diffstat (limited to 'main/src')
-rw-r--r-- | main/src/ui/main_window.vala | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/main/src/ui/main_window.vala b/main/src/ui/main_window.vala index 28e2bbd9..df24038a 100644 --- a/main/src/ui/main_window.vala +++ b/main/src/ui/main_window.vala @@ -13,7 +13,7 @@ public class MainWindow : Gtk.Window { public new string? title { get; set; } public string? subtitle { get; set; } - public WelcomePlceholder welcome_placeholder = new WelcomePlceholder() { visible=true }; + public WelcomePlaceholder welcome_placeholder = new WelcomePlaceholder() { visible=true }; public NoAccountsPlaceholder accounts_placeholder = new NoAccountsPlaceholder() { visible=true }; public ConversationView conversation_view; public ConversationSelector conversation_selector; @@ -193,8 +193,8 @@ public class MainWindow : Gtk.Window { } } -public class WelcomePlceholder : MainWindowPlaceholder { - public WelcomePlceholder() { +public class WelcomePlaceholder : MainWindowPlaceholder { + public WelcomePlaceholder() { title_label.label = _("Welcome to Dino!"); label.label = _("Sign in or create an account to get started."); primary_button.label = _("Set up account"); |