Skip to content

Commit

Permalink
Merge 7256756 into 79d633b
Browse files Browse the repository at this point in the history
  • Loading branch information
imobachgs committed Nov 16, 2018
2 parents 79d633b + 7256756 commit 9b4aa63
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 5 deletions.
7 changes: 7 additions & 0 deletions package/autoyast2.changes
@@ -1,3 +1,10 @@
-------------------------------------------------------------------
Thu Nov 15 15:11:47 UTC 2018 - igonzalezsosa@suse.com

- Fallback to English when using fbiterm on those languages
which are not properly supported (fate#325746).
- 4.0.68

-------------------------------------------------------------------
Tue Nov 13 11:53:55 CET 2018 - schubi@suse.de

Expand Down
2 changes: 1 addition & 1 deletion package/autoyast2.spec
Expand Up @@ -22,7 +22,7 @@
%endif

Name: autoyast2
Version: 4.0.67
Version: 4.0.68
Release: 0

BuildRoot: %{_tmppath}/%{name}-%{version}-build
Expand Down
6 changes: 4 additions & 2 deletions src/clients/inst_autosetup.rb
Expand Up @@ -232,8 +232,10 @@ def main
Installation.encoding = "UTF-8"
end

UI.SetLanguage(Language.language, Installation.encoding)
WFM.SetLanguage(Language.language, "UTF-8")
unless Language.SwitchToEnglishIfNeeded(true)
UI.SetLanguage(Language.language, Installation.encoding)
WFM.SetLanguage(Language.language, "UTF-8")
end

if Builtins.haskey(Profile.current, "timezone")
Timezone.Import(Ops.get_map(Profile.current, "timezone", {}))
Expand Down
6 changes: 4 additions & 2 deletions src/clients/inst_autosetup_upgrade.rb
Expand Up @@ -164,8 +164,10 @@ def main
Installation.encoding = "UTF-8"
end

UI.SetLanguage(Language.language, Installation.encoding)
WFM.SetLanguage(Language.language, "UTF-8")
unless Language.SwitchToEnglishIfNeeded(true)
UI.SetLanguage(Language.language, Installation.encoding)
WFM.SetLanguage(Language.language, "UTF-8")
end

if Builtins.haskey(Profile.current, "timezone")
Timezone.Import(Ops.get_map(Profile.current, "timezone", {}))
Expand Down

0 comments on commit 9b4aa63

Please sign in to comment.