Merge lp:~danielholm/ubuntu-keyboard/ubuntu-keyboard into lp:ubuntu-keyboard

Proposed by Daniel Holm
Status: Merged
Merged at revision: 370
Proposed branch: lp:~danielholm/ubuntu-keyboard/ubuntu-keyboard
Merge into: lp:ubuntu-keyboard
Diff against target: 59 lines (+8/-8)
4 files modified
plugins/sv/qml/Keyboard_sv.qml (+2/-2)
plugins/sv/qml/Keyboard_sv_email.qml (+2/-2)
plugins/sv/qml/Keyboard_sv_url.qml (+2/-2)
plugins/sv/qml/Keyboard_sv_url_search.qml (+2/-2)
To merge this branch: bzr merge lp:~danielholm/ubuntu-keyboard/ubuntu-keyboard
Reviewer Review Type Date Requested Status
Michael Sheldon (community) Needs Fixing
Review via email: mp+242580@code.launchpad.net

Commit message

Set the correct order of the "Ö" and "Ä" characters in the Swedish layout

Description of the change

Resolve bug 1395402 - The letter "Ö" and "Ä" are in the wrong order in the Swedish keyboard layout.

Are there any related MPs required for this MP to build/function as expected? Please list.

 * No

Is your branch in sync with latest trunk (e.g. bzr pull lp:trunk -> no changes)

 * Yes

Did you perform an exploratory manual test run of your code change and any related functionality on device or emulator?

 * Yes

Did you successfully run all tests found in your component's Test Plan (https://wiki.ubuntu.com/Process/Merges/TestPlan/ubuntu-keyboard) on device or emulator?

 * Yes

If you changed the UI, was the change specified/approved by design?

 * No change

If you changed UI labels, did you update the pot file?

 * No change

If you changed the packaging (debian), did you add a core-dev as a reviewer to this MP?

 * No change

To post a comment you must log in.
Revision history for this message
Michael Sheldon (michael-sheldon) wrote :

That's great, thanks. One small issue, could you move the "rightSide: true" property to the "ä" key, since that's now the furthest right key (this then gives it an extended touch area to the edge of the keyboard).

Thanks!

review: Needs Fixing
254. By Daniel Holm

Moved rightSide: true; to Ä instead of ö

Revision history for this message
Daniel Holm (danielholm) wrote :

Like so? :)
Thank you!

Revision history for this message
Michael Sheldon (michael-sheldon) wrote :

Perfect, thanks! I'll run that through our tests quickly and then we can see about getting it merged :)

Revision history for this message
Michael Sheldon (michael-sheldon) wrote :

Couple more changes needed, there's the same issue on the email and url layouts: Keyboard_sv_email.qml, Keyboard_sv_url.qml and Keyboard_sv_url_search.qml

If you could apply the same fix there we should then be good to go :)

review: Needs Fixing
255. By Daniel Holm

Switched place of Ä and Ö in the email, url and search as well.

Revision history for this message
Daniel Holm (danielholm) wrote :

Why I did not done that already, I don't know. But it's done now. Sorry.

Revision history for this message
Michael Sheldon (michael-sheldon) wrote :

Great, thanks very much; I'll re-test tomorrow and then we should be able to include it in our next batch of merges :)

Preview Diff

[H/L] Next/Prev Comment, [J/K] Next/Prev File, [N/P] Next/Prev Hunk
1=== modified file 'plugins/sv/qml/Keyboard_sv.qml'
2--- plugins/sv/qml/Keyboard_sv.qml 2014-09-26 13:22:23 +0000
3+++ plugins/sv/qml/Keyboard_sv.qml 2014-11-26 17:34:39 +0000
4@@ -59,8 +59,8 @@
5 CharKey { label: "j"; shifted: "J"; }
6 CharKey { label: "k"; shifted: "K"; }
7 CharKey { label: "l"; shifted: "L"; }
8- CharKey { label: "ä"; shifted: "Ä"; extended: ["æ"]; extendedShifted: ["Æ"] }
9- CharKey { label: "ö"; shifted: "Ö"; extended: ["ø"]; extendedShifted: ["Ø"]; rightSide: true; }
10+ CharKey { label: "ö"; shifted: "Ö"; extended: ["ø"]; extendedShifted: ["Ø"]}
11+ CharKey { label: "ä"; shifted: "Ä"; extended: ["æ"]; extendedShifted: ["Æ"]; rightSide: true; }
12 }
13
14 Row {
15
16=== modified file 'plugins/sv/qml/Keyboard_sv_email.qml'
17--- plugins/sv/qml/Keyboard_sv_email.qml 2014-09-26 13:22:23 +0000
18+++ plugins/sv/qml/Keyboard_sv_email.qml 2014-11-26 17:34:39 +0000
19@@ -59,8 +59,8 @@
20 CharKey { label: "j"; shifted: "J"; }
21 CharKey { label: "k"; shifted: "K"; }
22 CharKey { label: "l"; shifted: "L"; }
23- CharKey { label: "ä"; shifted: "Ä"; extended: ["æ"]; extendedShifted: ["Æ"] }
24- CharKey { label: "ö"; shifted: "Ö"; extended: ["ø"]; extendedShifted: ["Ø"]; rightSide: true; }
25+ CharKey { label: "ö"; shifted: "Ö"; extended: ["ø"]; extendedShifted: ["Ø"] }
26+ CharKey { label: "ä"; shifted: "Ä"; extended: ["æ"]; extendedShifted: ["Æ"]; rightSide: true; }
27 }
28
29 Row {
30
31=== modified file 'plugins/sv/qml/Keyboard_sv_url.qml'
32--- plugins/sv/qml/Keyboard_sv_url.qml 2014-09-26 13:22:23 +0000
33+++ plugins/sv/qml/Keyboard_sv_url.qml 2014-11-26 17:34:39 +0000
34@@ -59,8 +59,8 @@
35 CharKey { label: "j"; shifted: "J"; }
36 CharKey { label: "k"; shifted: "K"; }
37 CharKey { label: "l"; shifted: "L"; }
38- CharKey { label: "ä"; shifted: "Ä"; extended: ["æ"]; extendedShifted: ["Æ"] }
39- CharKey { label: "ö"; shifted: "Ö"; extended: ["ø"]; extendedShifted: ["Ø"]; rightSide: true; }
40+ CharKey { label: "ö"; shifted: "Ö"; extended: ["ø"]; extendedShifted: ["Ø"] }
41+ CharKey { label: "ä"; shifted: "Ä"; extended: ["æ"]; extendedShifted: ["Æ"]; rightSide: true; }
42 }
43
44 Row {
45
46=== modified file 'plugins/sv/qml/Keyboard_sv_url_search.qml'
47--- plugins/sv/qml/Keyboard_sv_url_search.qml 2014-09-26 13:22:23 +0000
48+++ plugins/sv/qml/Keyboard_sv_url_search.qml 2014-11-26 17:34:39 +0000
49@@ -59,8 +59,8 @@
50 CharKey { label: "j"; shifted: "J"; }
51 CharKey { label: "k"; shifted: "K"; }
52 CharKey { label: "l"; shifted: "L"; }
53- CharKey { label: "ä"; shifted: "Ä"; extended: ["æ"]; extendedShifted: ["Æ"] }
54- CharKey { label: "ö"; shifted: "Ö"; extended: ["ø"]; extendedShifted: ["Ø"]; rightSide: true; }
55+ CharKey { label: "ö"; shifted: "Ö"; extended: ["ø"]; extendedShifted: ["Ø"] }
56+ CharKey { label: "ä"; shifted: "Ä"; extended: ["æ"]; extendedShifted: ["Æ"]; rightSide: true; }
57 }
58
59 Row {

Subscribers

People subscribed via source and target branches