summaryrefslogtreecommitdiff
path: root/vcl/unx
diff options
context:
space:
mode:
authorIvo Hinkelmann <ihi@openoffice.org>2007-11-26 14:16:34 +0000
committerIvo Hinkelmann <ihi@openoffice.org>2007-11-26 14:16:34 +0000
commitdc1cc73c55410914fe547e5ac57f307739123792 (patch)
treef3a2ab03e2694d1fe46f8adf004a98b6bec92119 /vcl/unx
parente9e9b20e5507cae5e31a7b6dbdc753d2bcf86464 (diff)
INTEGRATION: CWS vcl83 (1.20.146); FILE MERGED
2007/10/08 16:50:00 pl 1.20.146.1: #i82370# added turkish and russian key sym replacement strings
Diffstat (limited to 'vcl/unx')
-rw-r--r--vcl/unx/source/app/keysymnames.cxx28
1 files changed, 26 insertions, 2 deletions
diff --git a/vcl/unx/source/app/keysymnames.cxx b/vcl/unx/source/app/keysymnames.cxx
index 26fbdf694bd9..24b9fd879d46 100644
--- a/vcl/unx/source/app/keysymnames.cxx
+++ b/vcl/unx/source/app/keysymnames.cxx
@@ -4,9 +4,9 @@
*
* $RCSfile: keysymnames.cxx,v $
*
- * $Revision: 1.20 $
+ * $Revision: 1.21 $
*
- * last change: $Author: rt $ $Date: 2007-04-26 10:41:16 $
+ * last change: $Author: ihi $ $Date: 2007-11-26 15:16:34 $
*
* The Contents of this file are made available subject to
* the terms of GNU Lesser General Public License Version 2.1.
@@ -105,6 +105,26 @@ namespace vcl_sal {
{ XK_plus, "+" }
};
+ static const struct KeysymNameReplacement aImplReplacements_Turkish[] =
+ {
+ { XK_Control_L, "Ctrl" },
+ { XK_Control_R, "Ctrl" },
+ { XK_Right, "Sağ" },
+ { XK_Left, "Sol" },
+ { XK_Up, "Yukarı" },
+ { XK_Down, "Aşağı" },
+ { XK_space, "Boşluk" }
+ };
+
+ static const struct KeysymNameReplacement aImplReplacements_Russian[] =
+ {
+ { XK_Right, "Вправо" },
+ { XK_Left, "Влево" },
+ { XK_Up, "Вверх" },
+ { XK_Down, "Вниз" },
+ { XK_space, "Пробел" }
+ };
+
static const struct KeysymNameReplacement aImplReplacements_German[] =
{
{ XK_Control_L, "Strg" },
@@ -401,6 +421,10 @@ namespace vcl_sal {
{ "Swed", aImplReplacements_Swedish, sizeof(aImplReplacements_Swedish)/sizeof(aImplReplacements_Swedish[0]) },
{ "Netherland", aImplReplacements_Dutch, sizeof(aImplReplacements_Dutch)/sizeof(aImplReplacements_Dutch[0]) },
{ "Dutch", aImplReplacements_Dutch, sizeof(aImplReplacements_Dutch)/sizeof(aImplReplacements_Dutch[0]) },
+ // Turkish, Turkey
+ { "Turk", aImplReplacements_Turkish, sizeof(aImplReplacements_Turkish)/sizeof(aImplReplacements_Turkish[0]) },
+ // Russian, Russia
+ { "Russia", aImplReplacements_Russian, sizeof(aImplReplacements_Russian)/sizeof(aImplReplacements_Russian[0]) },
{ "English", aImplReplacements_English, sizeof(aImplReplacements_English)/sizeof(aImplReplacements_English[0]) }
};