|
2013-12-21
, 07:16
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#32
|
Hi there,
I just wanted to ask if we can also add/collect layouts for terminal here.
I can only choose between english and finnish layout for terminal. But I really would love to have my qwertz keyboard back.
Regards
J4ZZ
The Following User Says Thank You to Bundyo For This Useful Post: | ||
|
2013-12-21
, 15:35
|
Posts: 4 |
Thanked: 20 times |
Joined on Jun 2011
|
#33
|
Now I create Czech qwerty layout with two deadkeys, near same as I have on N9/Harmattan. I found bug in 'AccentedCharacterKey.qml'. Or I don't know how is right way to define deadKeysAccents for more then one deadkey.
I make little patch:
First version Czech qwertz & qwerty vkb with two deadkeys here as example:Code:// original - i don't know what is mean .. // property string _accentedText: _deadAccentIndex > -1 && !keyboard.inSymView ? _deadKeyAccents.substr(_deadAccentIndex*2+1, 1) : "" // for definition deadKeyAccents: "´ˇéě" property string _accentedText: _deadAccentIndex > -1 && !keyboard.inSymView ? _deadKeyAccents.substr((_deadKeyAccents.length/2)+_deadAccentIndex, 1) : ""
https://www.dropbox.com/s/3kbg36393fynqnr/cz.qml
https://www.dropbox.com/s/az43mdxkprv1r7o/cz_qwerty.qml
added to layouts.conf:
https://www.dropbox.com/s/9r1oiyu8p30ahyr/layouts.conf
and AccentedCharacterKey.qml patched for more then one deadkey:
https://www.dropbox.com/s/58mruc40se...aracterKey.qml
Screenshots:
https://www.dropbox.com/s/l6tpseufxj...1221030722.png
https://www.dropbox.com/s/8u7hjusmll...1221030733.png
deadKeyAccents: "´éˇě"
// Original: property string _accentedText: _deadAccentIndex > -1 && !keyboard.inSymView ? _deadKeyAccents.substr(_deadAccentIndex*2+1, 1) : "" property string _accentedText: _deadAccentIndex > -1 && !keyboard.inSymView ? _deadKeyAccents.substr(_deadAccentIndex+1, 1) : ""
|
2013-12-22
, 08:33
|
Posts: 162 |
Thanked: 91 times |
Joined on Jan 2010
@ poor Slovenia
|
#34
|
|
2013-12-22
, 19:55
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#35
|
The Following User Says Thank You to Bundyo For This Useful Post: | ||
|
2013-12-23
, 10:18
|
Posts: 15 |
Thanked: 4 times |
Joined on Nov 2011
@ Llagostera (Catalonia)
|
#36
|
[ca.qml] name=Català languageCode=CA
|
2013-12-24
, 05:50
|
Posts: 1 |
Thanked: 0 times |
Joined on Dec 2013
|
#37
|
Hi,
here's my version for a catalan layout (copy this file ca.qml in /usr/share/maliit/plugins/com/jolla/layouts/):
http://ubuntuone.com/7Bz8nNQLec0EIfnf7MRGsV
and remember to add this lines for the layouts.conf file:
it has [ç] and apostrophe ['] as main keys, and a preference for [à] accent. Also, hold apostrophe to get [-]. Also, hold [L] to get [·] (punt volat) to write correctly the [l·l] phonemeCode:[ca.qml] name=Català languageCode=CA
And another question: Has anyone figured out how to tweak the whole dictionary to get predictive text in any language we want?
|
2013-12-24
, 07:37
|
|
Posts: 4,708 |
Thanked: 4,649 times |
Joined on Oct 2007
@ Bulgaria
|
#38
|
And another question: Has anyone figured out how to tweak the whole dictionary to get predictive text in any language we want?
|
2013-12-24
, 09:31
|
Posts: 22 |
Thanked: 18 times |
Joined on Oct 2012
|
#39
|
Ελληνικά
Code:import qtquick 2.0 import ".." keyboardlayout { keyboardrow { characterkey { caption: ";"; captionshifted: ":"; symview: "1"; symview2: "€" } characterkey { caption: "ς"; captionshifted: "€"; symview: "2"; symview2: "£" } accentedcharacterkey { caption: "ε"; captionshifted: "Ε"; symview: "3"; symview2: "$"; accents: "έ"; accentsshifted: "Έ"; deadkeyaccents: "´έ"; deadkeyaccentsshifted: "´Έ" } characterkey { caption: "ρ"; captionshifted: "Ρ"; symview: "4"; symview2: "¥" } characterkey { caption: "τ"; captionshifted: "Τ"; symview: "5"; symview2: "₹" } accentedcharacterkey { caption: "υ"; captionshifted: "Υ"; symview: "6"; symview2: "%"; accents: "ύϋΰ"; accentsshifted: "Ϋ"; deadkeyaccents: "´ύ"; deadkeyaccentsshifted: "´Ύ" } characterkey { caption: "θ"; captionshifted: "Θ"; symview: "7"; symview2: "<"; } accentedcharacterkey { caption: "ι"; captionshifted: "Ι"; symview: "8"; symview2: ">"; accents: "ίϊΐ"; accentsshifted: "ΊΪ"; deadkeyaccents: "´ί"; deadkeyaccentsshifted: "´Ί" } accentedcharacterkey { caption: "ο"; captionshifted: "Ο"; symview: "9"; symview2: "["; accents: "ό"; accentsshifted: "Ό"; deadkeyaccents: "´ό"; deadkeyaccentsshifted: "´Ό" } characterkey { caption: "π"; captionshifted: "Π"; symview: "0"; symview2: "]" } } keyboardrow { accentedcharacterkey { caption: "α"; captionshifted: "Α"; symview: "*"; symview2: "`"; accents: "ά"; accentsshifted: "Ά"; deadkeyaccents: "´ά"; deadkeyaccentsshifted: "´Ά" } characterkey { caption: "σ"; captionshifted: "Σ"; symview: "#"; symview2: "^" } characterkey { caption: "δ"; captionshifted: "Δ"; symview: "+"; symview2: "|" } characterkey { caption: "φ"; captionshifted: "Φ"; symview: "-"; symview2: "_" } characterkey { caption: "γ"; captionshifted: "Γ"; symview: "="; symview2: "§" } accentedcharacterkey { caption: "η"; captionshifted: "Η"; symview: "("; symview2: "{"; accents: "ή"; accentsshifted: "Ή"; deadkeyaccents: "´ή"; deadkeyaccentsshifted: "´Ή" } characterkey { caption: "ξ"; captionshifted: "Ξ"; symview: ")"; symview2: "}" } characterkey { caption: "κ"; captionshifted: "Κ"; symview: "~"; symview2: "°" } characterkey { caption: "λ"; captionshifted: "Λ"; symview: "!"; symview2: "¡" } deadkey { id: Deadkey; caption: "´"; captionshifted: "¨";} } keyboardrow { shiftkey {} characterkey { caption: "ζ"; captionshifted: "Ζ"; symview: "@"; symview2: "«" } characterkey { caption: "χ"; captionshifted: "Χ"; symview: "&"; symview2: "»" } characterkey { caption: "ψ"; captionshifted: "Ψ"; symview: "/"; symview2: "÷"} accentedcharacterkey { caption: "ω"; captionshifted: "Ω"; symview: "\\"; symview2: "“"; accents: "ώ"; accentsshifted: "Ώ"; deadkeyaccents: "´ώ"; deadkeyaccentsshifted: "´Ώ" } characterkey { caption: "β"; captionshifted: "Β"; symview: "\""; symview2: "”" } characterkey { caption: "ν"; captionshifted: "Ν"; symview: ";"; symview2: "„"} characterkey { caption: "μ"; captionshifted: "Μ"; symview: ":"; symview2: "·" } backspacekey {} } keyboardrow { symbolkey { width: Symbolkeywidthnarrow } characterkey { caption: "'" captionshifted: "'" width: Punctuationkeywidthnarrow fixedwidth: True } characterkey { caption: "," captionshifted: "," width: Punctuationkeywidthnarrow fixedwidth: True separator: False } spacebarkey { fixedwidth: True } characterkey { caption: "." captionshifted: "." width: Punctuationkeywidthnarrow fixedwidth: True separator: False } enterkey {} } }
The Following User Says Thank You to Nikos Alexandris For This Useful Post: | ||
|
2013-12-24
, 10:06
|
|
Posts: 202 |
Thanked: 165 times |
Joined on Jul 2012
@ Apeldoorn, Netherlands
|
#40
|
I just wanted to ask if we can also add/collect layouts for terminal here.
I can only choose between english and finnish layout for terminal. But I really would love to have my qwertz keyboard back.
Regards
J4ZZ
N900 ~ $ make me a sandwich
-bash: no, make it yourself
N900 ~ $ sudo make me a sandwich
-bash: ok then...