aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--data/Makefile.am3
-rw-r--r--debian/changelog56
-rw-r--r--lib/Makefile.am7
-rw-r--r--lib/greeter.vala26
-rw-r--r--lib/main.vala184
-rw-r--r--po/POTFILES.in2
-rw-r--r--po/POTFILES.skip1
-rw-r--r--po/ar.po35
-rw-r--r--po/ast.po35
-rw-r--r--po/az.po35
-rw-r--r--po/be.po35
-rw-r--r--po/bs.po35
-rw-r--r--po/ca.po14
-rw-r--r--po/cs.po35
-rw-r--r--po/cy.po35
-rw-r--r--po/da.po35
-rw-r--r--po/de.po35
-rw-r--r--po/el.po35
-rw-r--r--po/en_AU.po35
-rw-r--r--po/en_CA.po14
-rw-r--r--po/en_GB.po35
-rw-r--r--po/es.po18
-rw-r--r--po/et.po35
-rw-r--r--po/eu.po35
-rw-r--r--po/fi.po35
-rw-r--r--po/fr.po14
-rw-r--r--po/gd.po35
-rw-r--r--po/gl.po35
-rw-r--r--po/he.po35
-rw-r--r--po/hi.po35
-rw-r--r--po/hu.po35
-rw-r--r--po/indicator-keyboard.pot10
-rw-r--r--po/it.po14
-rw-r--r--po/ja.po35
-rw-r--r--po/km.po35
-rw-r--r--po/kn.po35
-rw-r--r--po/ko.po35
-rw-r--r--po/lt.po14
-rw-r--r--po/lv.po35
-rw-r--r--po/ms.po35
-rw-r--r--po/nb.po35
-rw-r--r--po/nl.po35
-rw-r--r--po/oc.po35
-rw-r--r--po/pl.po35
-rw-r--r--po/pt.po35
-rw-r--r--po/pt_BR.po16
-rw-r--r--po/ro.po35
-rw-r--r--po/ru.po14
-rw-r--r--po/sk.po14
-rw-r--r--po/sl.po35
-rw-r--r--po/sq.po35
-rw-r--r--po/sr.po14
-rw-r--r--po/sv.po35
-rw-r--r--po/ta.po35
-rw-r--r--po/tg.po35
-rw-r--r--po/tr.po35
-rw-r--r--po/ug.po35
-rw-r--r--po/uk.po35
-rw-r--r--po/vi.po35
-rw-r--r--po/zh_CN.po35
-rw-r--r--po/zh_TW.po35
61 files changed, 1835 insertions, 105 deletions
diff --git a/data/Makefile.am b/data/Makefile.am
index bd649373..26e819dc 100644
--- a/data/Makefile.am
+++ b/data/Makefile.am
@@ -52,6 +52,9 @@ com.canonical.indicator.keyboard:
echo 'ObjectPath=/com/canonical/indicator/keyboard/desktop'; \
echo ''; \
echo '[desktop_greeter]'; \
+ echo 'ObjectPath=/com/canonical/indicator/keyboard/desktop'; \
+ echo ''; \
+ echo '[ubiquity]'; \
echo 'ObjectPath=/com/canonical/indicator/keyboard/desktop') > $@.tmp && \
mv $@.tmp $@
diff --git a/debian/changelog b/debian/changelog
index 46ffd9a3..6bc47925 100644
--- a/debian/changelog
+++ b/debian/changelog
@@ -1,3 +1,59 @@
+indicator-keyboard (0.0.0+14.04.20131029.1-0ubuntu1) trusty; urgency=low
+
+ [ Dmitrijs Ledkovs ]
+ * Define "ubiquity" indicator profile, reusing the greeter object. (LP:
+ #1241539)
+
+ [ Ubuntu daily release ]
+ * Automatic snapshot from revision 155
+
+ -- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 29 Oct 2013 10:30:36 +0000
+
+indicator-keyboard (0.0.0+13.10.20131010.1-0ubuntu1) saucy; urgency=low
+
+ [ William Hua ]
+ * Don't set LightDM's layout if we're in a session. (LP: 1226962).
+ (LP: #1226962)
+
+ [ Ubuntu daily release ]
+ * Automatic snapshot from revision 134
+
+ -- Ubuntu daily release <ps-jenkins@lists.canonical.com> Thu, 10 Oct 2013 12:36:09 +0000
+
+indicator-keyboard (0.0.0+13.10.20131004-0ubuntu1) saucy; urgency=low
+
+ [ William Hua ]
+ * Set the selected user's first keyboard layout whenever it changes
+ under unity-greeter. (LP #1233945). (LP: #1233945)
+
+ [ Ubuntu daily release ]
+ * Automatic snapshot from revision 125
+
+ -- Ubuntu daily release <ps-jenkins@lists.canonical.com> Fri, 04 Oct 2013 02:28:12 +0000
+
+indicator-keyboard (0.0.0+13.10.20130924.2-0ubuntu3) saucy; urgency=low
+
+ * Updated POTFILES.skip, seems to be required as well.
+
+ -- Sebastien Bacher <seb128@ubuntu.com> Fri, 27 Sep 2013 17:09:25 +0200
+
+indicator-keyboard (0.0.0+13.10.20130924.2-0ubuntu2) saucy; urgency=low
+
+ * Update translations template (workaround launchpad bug) (lp: #1223488)
+
+ -- Sebastien Bacher <seb128@ubuntu.com> Fri, 27 Sep 2013 16:10:01 +0200
+
+indicator-keyboard (0.0.0+13.10.20130924.2-0ubuntu1) saucy; urgency=low
+
+ [ William Hua ]
+ * Fall-back on old unity-greeter keyboard layouts in case migration
+ hasn't occurred. (LP: #1228489)
+
+ [ Ubuntu daily release ]
+ * Automatic snapshot from revision 116
+
+ -- Ubuntu daily release <ps-jenkins@lists.canonical.com> Tue, 24 Sep 2013 08:58:16 +0000
+
indicator-keyboard (0.0.0+13.10.20130829.1-0ubuntu1) saucy; urgency=low
[ William Hua ]
diff --git a/lib/Makefile.am b/lib/Makefile.am
index 0e6c70d1..fd8a945e 100644
--- a/lib/Makefile.am
+++ b/lib/Makefile.am
@@ -6,9 +6,10 @@ AM_VALAFLAGS = --enable-experimental-non-null \
--metadatadir $(top_srcdir)/deps \
--vapidir $(top_srcdir)/deps
-indicator_keyboard_service_SOURCES = main.vala \
- source.vala \
- common.vala
+indicator_keyboard_service_SOURCES = main.vala \
+ source.vala \
+ common.vala \
+ greeter.vala
indicator_keyboard_service_VALAFLAGS = $(AM_VALAFLAGS) \
--pkg gee-1.0 \
--pkg posix \
diff --git a/lib/greeter.vala b/lib/greeter.vala
new file mode 100644
index 00000000..c378bbd5
--- /dev/null
+++ b/lib/greeter.vala
@@ -0,0 +1,26 @@
+/*
+ * Copyright 2013 Canonical Ltd.
+ *
+ * This program is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, version 3 of the License.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program. If not, see <http://www.gnu.org/licenses/>.
+ *
+ * Authors: William Hua <william.hua@canonical.com>
+ */
+
+[DBus (name="com.canonical.UnityGreeter.List")]
+public interface Greeter : Object {
+
+ public abstract string get_active_entry () throws IOError;
+ public abstract void set_active_entry (string entry_name) throws IOError;
+
+ public signal void entry_selected (string entry_name);
+}
diff --git a/lib/main.vala b/lib/main.vala
index a0315590..195ee140 100644
--- a/lib/main.vala
+++ b/lib/main.vala
@@ -41,6 +41,8 @@ public class Indicator.Keyboard.Service : Object {
private MenuModel? menu_model;
private Menu? sources_menu;
+ private Greeter? greeter;
+ private string? greeter_user;
private uint lightdm_current;
[DBus (visible = false)]
@@ -55,6 +57,18 @@ public class Indicator.Keyboard.Service : Object {
Gdk.init (ref args);
}
+ if (is_login_user ()) {
+ var name = Environment.get_variable ("UNITY_GREETER_DBUS_NAME");
+
+ if (name != null) {
+ Bus.watch_name (BusType.SESSION,
+ (!) name,
+ BusNameWatcherFlags.NONE,
+ handle_name_appeared,
+ handle_name_vanished);
+ }
+ }
+
indicator_settings = new Settings ("com.canonical.indicator.keyboard");
indicator_settings.changed["visible"].connect (handle_changed_visible);
@@ -112,6 +126,108 @@ public class Indicator.Keyboard.Service : Object {
}
[DBus (visible = false)]
+ private void update_greeter_user () {
+ if (greeter_user == null && greeter != null) {
+ try {
+ greeter_user = ((!) greeter).get_active_entry ();
+ } catch (IOError error) {
+ warning ("error: %s", error.message);
+ }
+ }
+
+ string? source = null;
+
+ if (greeter_user != null) {
+ var manager = Act.UserManager.get_default ();
+
+ if (manager.is_loaded) {
+ Act.User? user = manager.get_user ((!) greeter_user);
+
+ if (user != null && ((!) user).is_loaded) {
+ VariantIter outer;
+ VariantIter inner;
+
+ var sources = ((!) user).input_sources;
+ sources.get ("aa{ss}", out outer);
+
+ while (outer.next ("a{ss}", out inner)) {
+ unowned string key;
+ unowned string value;
+
+ while (inner.next ("{&s&s}", out key, out value)) {
+ if (key == "xkb") {
+ source = value;
+ break;
+ }
+ }
+
+ if (source != null) {
+ break;
+ }
+ }
+
+ if (source == null) {
+ var layouts = ((!) user).xkeyboard_layouts;
+
+ if (layouts.length <= 0) {
+ var user_list = LightDM.UserList.get_instance ();
+ LightDM.User? light_user = user_list.get_user_by_name ((!) greeter_user);
+
+ if (light_user != null) {
+ layouts = ((!) light_user).get_layouts ();
+ }
+ }
+
+ if (layouts.length > 0) {
+ source = layouts[0];
+ source = ((!) source).replace (" ", "+");
+ source = ((!) source).replace ("\t", "+");
+ }
+ }
+ }
+ }
+ }
+
+ if (source == null) {
+ LightDM.Layout? layout = LightDM.get_layout ();
+
+ if (layout != null) {
+ source = ((!) layout).name;
+
+ if (source != null) {
+ source = ((!) source).replace (" ", "+");
+ source = ((!) source).replace ("\t", "+");
+ }
+ }
+ }
+
+ if (source != null) {
+ var array = source_settings.get_value ("sources");
+
+ for (int i = 0; i < array.n_children (); i++) {
+ unowned string type;
+ unowned string name;
+
+ array.get_child (i, "(&s&s)", out type, out name);
+
+ if (type == "xkb" && name == (!) source) {
+ source_settings.set_uint ("current", i);
+ break;
+ }
+ }
+ }
+ }
+
+ [DBus (visible = false)]
+ private void handle_entry_selected (string entry_name) {
+ if (greeter_user == null || entry_name != (!) greeter_user) {
+ greeter_user = entry_name;
+
+ update_greeter_user ();
+ }
+ }
+
+ [DBus (visible = false)]
private void migrate_keyboard_layouts () {
if (is_login_user ()) {
lightdm_current = source_settings.get_uint ("current");
@@ -285,15 +401,20 @@ public class Indicator.Keyboard.Service : Object {
}
}
- var layout = LightDM.get_layout ();
+ LightDM.Layout? layout = LightDM.get_layout ();
+
+ if (layout != null) {
+ string? source = ((!) layout).name;
- var source = layout.name;
- source = source.replace (" ", "+");
- source = source.replace ("\t", "+");
+ if (source != null) {
+ source = ((!) source).replace (" ", "+");
+ source = ((!) source).replace ("\t", "+");
- if (!added.contains (source)) {
- list.add (source);
- added.add (source);
+ if (!added.contains ((!) source)) {
+ list.add ((!) source);
+ added.add ((!) source);
+ }
+ }
}
var builder = new VariantBuilder (new VariantType ("a(ss)"));
@@ -309,28 +430,32 @@ public class Indicator.Keyboard.Service : Object {
}
source_settings.set_value ("sources", builder.end ());
+
+ update_greeter_user ();
}
[DBus (visible = false)]
private void update_login_layout () {
- unowned List<LightDM.Layout> layouts = LightDM.get_layouts ();
- var current = source_settings.get_uint ("current");
+ if (is_login_user ()) {
+ unowned List<LightDM.Layout> layouts = LightDM.get_layouts ();
+ var current = source_settings.get_uint ("current");
- if (current < get_sources ().length) {
- var source = get_sources ()[current];
- string? name = null;
+ if (current < get_sources ().length) {
+ var source = get_sources ()[current];
+ string? name = null;
- if (source.layout != null && source.variant != null) {
- name = @"$((!) source.layout)\t$((!) source.variant)";
- } else if (source.layout != null) {
- name = source.layout;
- }
+ if (source.layout != null && source.variant != null) {
+ name = @"$((!) source.layout)\t$((!) source.variant)";
+ } else if (source.layout != null) {
+ name = source.layout;
+ }
- if (name != null) {
- foreach (var layout in layouts) {
- if (layout.name == (!) name) {
- LightDM.set_layout (layout);
- break;
+ if (name != null) {
+ foreach (var layout in layouts) {
+ if (layout.name == (!) name) {
+ LightDM.set_layout (layout);
+ break;
+ }
}
}
}
@@ -617,6 +742,21 @@ public class Indicator.Keyboard.Service : Object {
}
[DBus (visible = false)]
+ private void handle_name_appeared (DBusConnection connection, string name, string name_owner) {
+ try {
+ greeter = Bus.get_proxy_sync (BusType.SESSION, name, "/list");
+ ((!) greeter).entry_selected.connect (handle_entry_selected);
+ } catch (IOError error) {
+ warning ("error: %s", error.message);
+ }
+ }
+
+ [DBus (visible = false)]
+ private void handle_name_vanished (DBusConnection connection, string name) {
+ greeter = null;
+ }
+
+ [DBus (visible = false)]
private void handle_bus_acquired (DBusConnection connection, string name) {
try {
connection.export_action_group ("/com/canonical/indicator/keyboard", get_action_group ());
diff --git a/po/POTFILES.in b/po/POTFILES.in
index 30b50dc2..14cf57e3 100644
--- a/po/POTFILES.in
+++ b/po/POTFILES.in
@@ -1,4 +1,2 @@
# List of source files which contain translatable strings.
-
-lib/main.c
lib/main.vala
diff --git a/po/POTFILES.skip b/po/POTFILES.skip
new file mode 100644
index 00000000..57cc1d5d
--- /dev/null
+++ b/po/POTFILES.skip
@@ -0,0 +1 @@
+lib/main.c
diff --git a/po/ar.po b/po/ar.po
new file mode 100644
index 00000000..350f79b4
--- /dev/null
+++ b/po/ar.po
@@ -0,0 +1,35 @@
+# Arabic translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-10 03:47+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Arabic <ar@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "مصدر الإدخال %s"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "خريطة المحارف"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "رسمة تخطيط لوحة المفاتيح"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "إعدادات إدخال النص..."
diff --git a/po/ast.po b/po/ast.po
new file mode 100644
index 00000000..5f54433c
--- /dev/null
+++ b/po/ast.po
@@ -0,0 +1,35 @@
+# Asturian translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-03 15:38+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Asturian <ast@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "Orixe d'entrada %s"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Mapa de caráuteres"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Distribución del tecláu"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Configuración d'entrada de testu…"
diff --git a/po/az.po b/po/az.po
new file mode 100644
index 00000000..509109e2
--- /dev/null
+++ b/po/az.po
@@ -0,0 +1,35 @@
+# Azerbaijani translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-12 21:01+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Azerbaijani <az@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s giriş mənbəyi"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Simvol Xəritəsi"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Klaviatura Düzümü Qrafiki"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Mətn Daxiletmə Seçənəkləri..."
diff --git a/po/be.po b/po/be.po
new file mode 100644
index 00000000..37575b8b
--- /dev/null
+++ b/po/be.po
@@ -0,0 +1,35 @@
+# Belarusian translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-14 10:04+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Belarusian <be@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr ""
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr ""
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr ""
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr ""
diff --git a/po/bs.po b/po/bs.po
new file mode 100644
index 00000000..b203b6fc
--- /dev/null
+++ b/po/bs.po
@@ -0,0 +1,35 @@
+# Bosnian translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-28 15:43+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Bosnian <bs@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s ulazni izvor"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Mapa znakova"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Crtež rasporeda tastature"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Postavke unosa teksta..."
diff --git a/po/ca.po b/po/ca.po
index 18c28eb3..debbc443 100644
--- a/po/ca.po
+++ b/po/ca.po
@@ -7,29 +7,29 @@ msgid ""
msgstr ""
"Project-Id-Version: indicator-keyboard\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2013-08-29 10:20+0800\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
"PO-Revision-Date: 2013-09-19 10:24+0000\n"
"Last-Translator: David Planella <david.planella@ubuntu.com>\n"
"Language-Team: Catalan <ca@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-09-20 06:02+0000\n"
-"X-Generator: Launchpad (build 16765)\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
-#: ../lib/main.c:1870 ../lib/main.vala:369
+#: ../lib/main.vala:552
#, c-format
msgid "%s input source"
msgstr "Font d'entrada %s"
-#: ../lib/main.c:2220 ../lib/main.vala:467
+#: ../lib/main.vala:650
msgid "Character Map"
msgstr "Mapa de caràcters"
-#: ../lib/main.c:2223 ../lib/main.vala:468
+#: ../lib/main.vala:651
msgid "Keyboard Layout Chart"
msgstr "Disposició del teclat"
-#: ../lib/main.c:2226 ../lib/main.vala:469
+#: ../lib/main.vala:652
msgid "Text Entry Settings..."
msgstr "Paràmetres d'entrada de text…"
diff --git a/po/cs.po b/po/cs.po
new file mode 100644
index 00000000..5f3c6bd3
--- /dev/null
+++ b/po/cs.po
@@ -0,0 +1,35 @@
+# Czech translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-08 06:34+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Czech <cs@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr ""
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Mapa znaků"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Mapa rozložení klávesnice"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Nastavení zadávání textu..."
diff --git a/po/cy.po b/po/cy.po
new file mode 100644
index 00000000..dd228c38
--- /dev/null
+++ b/po/cy.po
@@ -0,0 +1,35 @@
+# Welsh translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-08 00:05+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Welsh <cy@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr ""
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr ""
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr ""
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr ""
diff --git a/po/da.po b/po/da.po
new file mode 100644
index 00000000..ce82d5b2
--- /dev/null
+++ b/po/da.po
@@ -0,0 +1,35 @@
+# Danish translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-28 10:32+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Danish <da@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s-inputkilde"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Tegnoversigt"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Oversigt over tastaturlayout"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Indstillinger for tekstfelt..."
diff --git a/po/de.po b/po/de.po
new file mode 100644
index 00000000..13648186
--- /dev/null
+++ b/po/de.po
@@ -0,0 +1,35 @@
+# German translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-28 11:11+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: German <de@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s-Eingabequelle"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Zeichentabelle"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Abbild der Tastaturbelegung"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Texteingabe-Einstellungen …"
diff --git a/po/el.po b/po/el.po
new file mode 100644
index 00000000..46091df2
--- /dev/null
+++ b/po/el.po
@@ -0,0 +1,35 @@
+# Greek translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-28 11:42+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Greek <el@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s πηγή εισόδου"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Καθορισμός χαρακτήρων"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Διάγραμμα διάταξης πληκτρολογίου"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Ρυθμίσεις εισαγωγής κειμένου..."
diff --git a/po/en_AU.po b/po/en_AU.po
new file mode 100644
index 00000000..e4531c61
--- /dev/null
+++ b/po/en_AU.po
@@ -0,0 +1,35 @@
+# English (Australia) translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-07 23:11+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: English (Australia) <en_AU@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s input source"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Character Map"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Keyboard Layout Chart"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Text Entry Settings..."
diff --git a/po/en_CA.po b/po/en_CA.po
index 593a22dc..4725cf71 100644
--- a/po/en_CA.po
+++ b/po/en_CA.po
@@ -7,29 +7,29 @@ msgid ""
msgstr ""
"Project-Id-Version: indicator-keyboard\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2013-08-29 10:20+0800\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
"PO-Revision-Date: 2013-09-12 10:07+0000\n"
"Last-Translator: William Hua <william.hua@canonical.com>\n"
"Language-Team: English (Canada) <en_CA@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-09-20 06:02+0000\n"
-"X-Generator: Launchpad (build 16765)\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:49+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
-#: ../lib/main.c:1870 ../lib/main.vala:369
+#: ../lib/main.vala:552
#, c-format
msgid "%s input source"
msgstr "%s input source"
-#: ../lib/main.c:2220 ../lib/main.vala:467
+#: ../lib/main.vala:650
msgid "Character Map"
msgstr "Character Map"
-#: ../lib/main.c:2223 ../lib/main.vala:468
+#: ../lib/main.vala:651
msgid "Keyboard Layout Chart"
msgstr "Keyboard Layout Chart"
-#: ../lib/main.c:2226 ../lib/main.vala:469
+#: ../lib/main.vala:652
msgid "Text Entry Settings..."
msgstr "Text Entry Settings..."
diff --git a/po/en_GB.po b/po/en_GB.po
new file mode 100644
index 00000000..77f0e069
--- /dev/null
+++ b/po/en_GB.po
@@ -0,0 +1,35 @@
+# English (United Kingdom) translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-29 15:56+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: English (United Kingdom) <en_GB@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s input source"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Character Map"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Keyboard Layout Chart"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Text Entry Settings..."
diff --git a/po/es.po b/po/es.po
index 0b3edbb6..53fe81f6 100644
--- a/po/es.po
+++ b/po/es.po
@@ -7,29 +7,29 @@ msgid ""
msgstr ""
"Project-Id-Version: indicator-keyboard\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2013-08-29 10:20+0800\n"
-"PO-Revision-Date: 2013-06-23 20:20+0000\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-23 09:25+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fitoschido@gmail.com>\n"
"Language-Team: Spanish <es@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-09-20 06:02+0000\n"
-"X-Generator: Launchpad (build 16765)\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
-#: ../lib/main.c:1870 ../lib/main.vala:369
+#: ../lib/main.vala:552
#, c-format
msgid "%s input source"
-msgstr ""
+msgstr "Origen de entrada %s"
-#: ../lib/main.c:2220 ../lib/main.vala:467
+#: ../lib/main.vala:650
msgid "Character Map"
msgstr "Mapa de caracteres"
-#: ../lib/main.c:2223 ../lib/main.vala:468
+#: ../lib/main.vala:651
msgid "Keyboard Layout Chart"
msgstr "Distribución del teclado"
-#: ../lib/main.c:2226 ../lib/main.vala:469
+#: ../lib/main.vala:652
msgid "Text Entry Settings..."
msgstr "Configuración de entrada de texto…"
diff --git a/po/et.po b/po/et.po
new file mode 100644
index 00000000..3c37cc96
--- /dev/null
+++ b/po/et.po
@@ -0,0 +1,35 @@
+# Estonian translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-28 15:17+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Estonian <et@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s sisendallikas"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Märgikaart"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Klaviatuuripaigutuse skeem"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Tekstisisestamise seaded..."
diff --git a/po/eu.po b/po/eu.po
new file mode 100644
index 00000000..c8ce7cd1
--- /dev/null
+++ b/po/eu.po
@@ -0,0 +1,35 @@
+# Basque translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-01 20:51+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Basque <eu@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr ""
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Karaktere-mapa"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr ""
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr ""
diff --git a/po/fi.po b/po/fi.po
new file mode 100644
index 00000000..d774e496
--- /dev/null
+++ b/po/fi.po
@@ -0,0 +1,35 @@
+# Finnish translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-03 09:43+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Finnish <fi@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "Syötelähde %s"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Merkkikartta"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Näppäimistön asettelu"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Tekstisyötteen asetukset..."
diff --git a/po/fr.po b/po/fr.po
index dd23ba43..76c01a6e 100644
--- a/po/fr.po
+++ b/po/fr.po
@@ -7,29 +7,29 @@ msgid ""
msgstr ""
"Project-Id-Version: indicator-keyboard\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2013-08-29 10:20+0800\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
"PO-Revision-Date: 2013-08-29 08:33+0000\n"
"Last-Translator: Matthieu Baerts <matttbe@gmail.com>\n"
"Language-Team: French <fr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-09-20 06:02+0000\n"
-"X-Generator: Launchpad (build 16765)\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
-#: ../lib/main.c:1870 ../lib/main.vala:369
+#: ../lib/main.vala:552
#, c-format
msgid "%s input source"
msgstr "Agencement : %s"
-#: ../lib/main.c:2220 ../lib/main.vala:467
+#: ../lib/main.vala:650
msgid "Character Map"
msgstr "Table de caractères"
-#: ../lib/main.c:2223 ../lib/main.vala:468
+#: ../lib/main.vala:651
msgid "Keyboard Layout Chart"
msgstr "Représentation de l'agencement"
-#: ../lib/main.c:2226 ../lib/main.vala:469
+#: ../lib/main.vala:652
msgid "Text Entry Settings..."
msgstr "Paramètres d'agencement"
diff --git a/po/gd.po b/po/gd.po
new file mode 100644
index 00000000..7f2d6fe7
--- /dev/null
+++ b/po/gd.po
@@ -0,0 +1,35 @@
+# Gaelic; Scottish translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-30 10:02+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Gaelic; Scottish <gd@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "Tùs ion-chur %s"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Mapa nan caractaran"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Cairt co-dhealbhachd a' mheur-chlàir"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Roghainnean ion-chur teacsa..."
diff --git a/po/gl.po b/po/gl.po
new file mode 100644
index 00000000..d5f7a77f
--- /dev/null
+++ b/po/gl.po
@@ -0,0 +1,35 @@
+# Galician translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-29 17:49+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Galician <gl@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "Orixe da entrada: %s"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Mapa de caracteres"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Gráfica da disposición do teclado"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Configuración da entrada de texto..."
diff --git a/po/he.po b/po/he.po
new file mode 100644
index 00000000..44a07033
--- /dev/null
+++ b/po/he.po
@@ -0,0 +1,35 @@
+# Hebrew translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-01 12:03+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Hebrew <he@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "מקור קלט %s"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "מפת תווים"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "תרשים פריסת המקלדת"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "הגדרות הזנת טקסט…"
diff --git a/po/hi.po b/po/hi.po
new file mode 100644
index 00000000..c61cc731
--- /dev/null
+++ b/po/hi.po
@@ -0,0 +1,35 @@
+# Hindi translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-28 21:49+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Hindi <hi@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr ""
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "अक्षर तालिका"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr ""
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr ""
diff --git a/po/hu.po b/po/hu.po
new file mode 100644
index 00000000..fd9dff8d
--- /dev/null
+++ b/po/hu.po
@@ -0,0 +1,35 @@
+# Hungarian translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-04 18:45+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Hungarian <hu@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s beviteli forrás"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Karaktertábla"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Billentyűzetkiosztás"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Szövegbeviteli beállítások…"
diff --git a/po/indicator-keyboard.pot b/po/indicator-keyboard.pot
index bdfffeca..34931572 100644
--- a/po/indicator-keyboard.pot
+++ b/po/indicator-keyboard.pot
@@ -8,7 +8,7 @@ msgid ""
msgstr ""
"Project-Id-Version: PACKAGE VERSION\n"
"Report-Msgid-Bugs-To: \n"
-"POT-Creation-Date: 2013-09-20 20:56-0400\n"
+"POT-Creation-Date: 2013-09-27 16:28+0200\n"
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
"Language-Team: LANGUAGE <LL@li.org>\n"
@@ -17,19 +17,19 @@ msgstr ""
"Content-Type: text/plain; charset=CHARSET\n"
"Content-Transfer-Encoding: 8bit\n"
-#: ../lib/main.c:1870 ../lib/main.vala:369
+#: ../lib/main.vala:427
#, c-format
msgid "%s input source"
msgstr ""
-#: ../lib/main.c:2220 ../lib/main.vala:467
+#: ../lib/main.vala:525
msgid "Character Map"
msgstr ""
-#: ../lib/main.c:2223 ../lib/main.vala:468
+#: ../lib/main.vala:526
msgid "Keyboard Layout Chart"
msgstr ""
-#: ../lib/main.c:2226 ../lib/main.vala:469
+#: ../lib/main.vala:527
msgid "Text Entry Settings..."
msgstr ""
diff --git a/po/it.po b/po/it.po
index 52a489da..f3523a7e 100644
--- a/po/it.po
+++ b/po/it.po
@@ -7,29 +7,29 @@ msgid ""
msgstr ""
"Project-Id-Version: indicator-keyboard\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2013-08-29 10:20+0800\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
"PO-Revision-Date: 2013-09-12 11:02+0000\n"
"Last-Translator: Milo Casagrande <milo.casagrande@gmail.com>\n"
"Language-Team: Italian <it@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-09-20 06:02+0000\n"
-"X-Generator: Launchpad (build 16765)\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
-#: ../lib/main.c:1870 ../lib/main.vala:369
+#: ../lib/main.vala:552
#, c-format
msgid "%s input source"
msgstr "Sorgente di input %s"
-#: ../lib/main.c:2220 ../lib/main.vala:467
+#: ../lib/main.vala:650
msgid "Character Map"
msgstr "Tabella caratteri"
-#: ../lib/main.c:2223 ../lib/main.vala:468
+#: ../lib/main.vala:651
msgid "Keyboard Layout Chart"
msgstr "Disposizione tastiera"
-#: ../lib/main.c:2226 ../lib/main.vala:469
+#: ../lib/main.vala:652
msgid "Text Entry Settings..."
msgstr "Impostazioni inserimento testo..."
diff --git a/po/ja.po b/po/ja.po
new file mode 100644
index 00000000..390c24cb
--- /dev/null
+++ b/po/ja.po
@@ -0,0 +1,35 @@
+# Japanese translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-29 07:25+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Japanese <ja@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s 入力ソース"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "文字マップ"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "キーボードレイアウト表"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "テキスト入力設定..."
diff --git a/po/km.po b/po/km.po
new file mode 100644
index 00000000..fde3a6b9
--- /dev/null
+++ b/po/km.po
@@ -0,0 +1,35 @@
+# Khmer translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-17 01:42+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Khmer <km@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "ប្រភព​បញ្ចូល %s"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "ផែនទី​តួអក្សរ"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "តារាង​ប្លង់​ក្ដារចុច"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "ការ​កំណត់​ធាតុ​អត្ថបទ..."
diff --git a/po/kn.po b/po/kn.po
new file mode 100644
index 00000000..7e86de87
--- /dev/null
+++ b/po/kn.po
@@ -0,0 +1,35 @@
+# Kannada translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-16 11:18+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Kannada <kn@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr ""
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "ಅಕ್ಷರ ನಕ್ಷೆ"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "ಕೀಲಿಮಣೆ ವಿನ್ಯಾಸ ಪಟ್ಟಿ"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "ಪಠ್ಯ ನಮೂದಿಸುವ ಸಂಯೋಜನೆಗಳು ..."
diff --git a/po/ko.po b/po/ko.po
new file mode 100644
index 00000000..8d0b6bb2
--- /dev/null
+++ b/po/ko.po
@@ -0,0 +1,35 @@
+# Korean translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-01 10:55+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Korean <ko@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "입력 소스 %s"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "문자 표"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "키보드 배치 표"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "텍스트 입력창 설정..."
diff --git a/po/lt.po b/po/lt.po
index 3a06e49e..e2074a9c 100644
--- a/po/lt.po
+++ b/po/lt.po
@@ -7,29 +7,29 @@ msgid ""
msgstr ""
"Project-Id-Version: indicator-keyboard\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2013-08-29 10:20+0800\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
"PO-Revision-Date: 2013-08-30 14:47+0000\n"
"Last-Translator: Aurimas Fišeras <Unknown>\n"
"Language-Team: Lithuanian <lt@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-09-20 06:02+0000\n"
-"X-Generator: Launchpad (build 16765)\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
-#: ../lib/main.c:1870 ../lib/main.vala:369
+#: ../lib/main.vala:552
#, c-format
msgid "%s input source"
msgstr "%s įvesties šaltinis"
-#: ../lib/main.c:2220 ../lib/main.vala:467
+#: ../lib/main.vala:650
msgid "Character Map"
msgstr "Simbolių lentelė"
-#: ../lib/main.c:2223 ../lib/main.vala:468
+#: ../lib/main.vala:651
msgid "Keyboard Layout Chart"
msgstr "Klaviatūros klavišų išdėstymas"
-#: ../lib/main.c:2226 ../lib/main.vala:469
+#: ../lib/main.vala:652
msgid "Text Entry Settings..."
msgstr "Teksto įvedimo nustatymai..."
diff --git a/po/lv.po b/po/lv.po
new file mode 100644
index 00000000..8a55c57b
--- /dev/null
+++ b/po/lv.po
@@ -0,0 +1,35 @@
+# Latvian translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-03 15:03+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Latvian <lv@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s ievades avots"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Rakstzīmju tabula"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Klaviatūras Izkārtojuma Tabula"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Teksta Ievades Iestatījumi..."
diff --git a/po/ms.po b/po/ms.po
new file mode 100644
index 00000000..2efdb7e9
--- /dev/null
+++ b/po/ms.po
@@ -0,0 +1,35 @@
+# Malay translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-28 17:17+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Malay <ms@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "% sumber input"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Peta Aksara"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Carta Bentanga Papan Kekunci"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Tetapan Masukan Teks..."
diff --git a/po/nb.po b/po/nb.po
new file mode 100644
index 00000000..fdc81246
--- /dev/null
+++ b/po/nb.po
@@ -0,0 +1,35 @@
+# Norwegian Bokmal translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-07 09:55+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Norwegian Bokmal <nb@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s inndatakilde"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Tegnkart"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Kart over tastaturoppsett"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Innstillinger for tekstskriving …"
diff --git a/po/nl.po b/po/nl.po
new file mode 100644
index 00000000..6a5ae193
--- /dev/null
+++ b/po/nl.po
@@ -0,0 +1,35 @@
+# Dutch translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-30 07:20+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Dutch <nl@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s invoerbron"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Tekens en symbolen"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Toetsenbordindelingoverzicht"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Tekstinvoerinstellingen…"
diff --git a/po/oc.po b/po/oc.po
new file mode 100644
index 00000000..07c8ab98
--- /dev/null
+++ b/po/oc.po
@@ -0,0 +1,35 @@
+# Occitan (post 1500) translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-02 06:07+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Occitan (post 1500) <oc@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "Agençament : %s"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Taula de caractèrs"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Representacion de l'agençament"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Paramètres d'agençament"
diff --git a/po/pl.po b/po/pl.po
new file mode 100644
index 00000000..4cf3470a
--- /dev/null
+++ b/po/pl.po
@@ -0,0 +1,35 @@
+# Polish translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-13 13:52+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Polish <pl@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s metoda wprowadzania"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Mapa znaków"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Tabela układów klawiatury"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Ustawienia wprowadzanie tekstu..."
diff --git a/po/pt.po b/po/pt.po
new file mode 100644
index 00000000..c9787559
--- /dev/null
+++ b/po/pt.po
@@ -0,0 +1,35 @@
+# Portuguese translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-10 21:34+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Portuguese <pt@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "fonte de entrada %s"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Mapa de Caracteres"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Disposição do teclado"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Definições de entrada de texto..."
diff --git a/po/pt_BR.po b/po/pt_BR.po
index ff6724a3..2c34d2ce 100644
--- a/po/pt_BR.po
+++ b/po/pt_BR.po
@@ -7,29 +7,29 @@ msgid ""
msgstr ""
"Project-Id-Version: indicator-keyboard\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2013-08-29 10:20+0800\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
"PO-Revision-Date: 2013-08-28 01:25+0000\n"
"Last-Translator: Adolfo Jayme Barrientos <fitoschido@gmail.com>\n"
"Language-Team: Brazilian Portuguese <pt_BR@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-09-20 06:02+0000\n"
-"X-Generator: Launchpad (build 16765)\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
-#: ../lib/main.c:1870 ../lib/main.vala:369
+#: ../lib/main.vala:552
#, c-format
msgid "%s input source"
-msgstr ""
+msgstr "fonte de entrada %s"
-#: ../lib/main.c:2220 ../lib/main.vala:467
+#: ../lib/main.vala:650
msgid "Character Map"
msgstr "Mapa de caracteres"
-#: ../lib/main.c:2223 ../lib/main.vala:468
+#: ../lib/main.vala:651
msgid "Keyboard Layout Chart"
msgstr "Disposição do teclado"
-#: ../lib/main.c:2226 ../lib/main.vala:469
+#: ../lib/main.vala:652
msgid "Text Entry Settings..."
msgstr "Configurações de entrada de texto…"
diff --git a/po/ro.po b/po/ro.po
new file mode 100644
index 00000000..34d9e216
--- /dev/null
+++ b/po/ro.po
@@ -0,0 +1,35 @@
+# Romanian translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-30 07:42+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Romanian <ro@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr ""
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr ""
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr ""
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr ""
diff --git a/po/ru.po b/po/ru.po
index 2846e08d..f27bfe52 100644
--- a/po/ru.po
+++ b/po/ru.po
@@ -7,29 +7,29 @@ msgid ""
msgstr ""
"Project-Id-Version: indicator-keyboard\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2013-08-29 10:20+0800\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
"PO-Revision-Date: 2013-09-12 22:02+0000\n"
"Last-Translator: Igor Zubarev <igor.zubarev@gmail.com>\n"
"Language-Team: Russian <ru@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-09-20 06:02+0000\n"
-"X-Generator: Launchpad (build 16765)\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
-#: ../lib/main.c:1870 ../lib/main.vala:369
+#: ../lib/main.vala:552
#, c-format
msgid "%s input source"
msgstr "Источник ввода %s"
-#: ../lib/main.c:2220 ../lib/main.vala:467
+#: ../lib/main.vala:650
msgid "Character Map"
msgstr "Таблица символов"
-#: ../lib/main.c:2223 ../lib/main.vala:468
+#: ../lib/main.vala:651
msgid "Keyboard Layout Chart"
msgstr "Схема раскладки клавиатуры"
-#: ../lib/main.c:2226 ../lib/main.vala:469
+#: ../lib/main.vala:652
msgid "Text Entry Settings..."
msgstr "Параметры ввода текста..."
diff --git a/po/sk.po b/po/sk.po
index b1bf8c45..7fa8c256 100644
--- a/po/sk.po
+++ b/po/sk.po
@@ -7,29 +7,29 @@ msgid ""
msgstr ""
"Project-Id-Version: indicator-keyboard\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2013-08-29 10:20+0800\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
"PO-Revision-Date: 2013-09-02 13:04+0000\n"
"Last-Translator: Pavol Klačanský <pavol@klacansky.com>\n"
"Language-Team: Slovak <sk@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-09-20 06:02+0000\n"
-"X-Generator: Launchpad (build 16765)\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
-#: ../lib/main.c:1870 ../lib/main.vala:369
+#: ../lib/main.vala:552
#, c-format
msgid "%s input source"
msgstr "zdroj vstupu %s"
-#: ../lib/main.c:2220 ../lib/main.vala:467
+#: ../lib/main.vala:650
msgid "Character Map"
msgstr "Mapa znakov"
-#: ../lib/main.c:2223 ../lib/main.vala:468
+#: ../lib/main.vala:651
msgid "Keyboard Layout Chart"
msgstr "Rozloženie klávesnice"
-#: ../lib/main.c:2226 ../lib/main.vala:469
+#: ../lib/main.vala:652
msgid "Text Entry Settings..."
msgstr "Nastavenia vstupu…"
diff --git a/po/sl.po b/po/sl.po
new file mode 100644
index 00000000..d1a0cb0c
--- /dev/null
+++ b/po/sl.po
@@ -0,0 +1,35 @@
+# Slovenian translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-27 18:24+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Slovenian <sl@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s vir vnosa"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Preglednica znakov"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Prikaz razporeditve tipk"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Nastavitve vnosa besedila ..."
diff --git a/po/sq.po b/po/sq.po
new file mode 100644
index 00000000..c5d8b18f
--- /dev/null
+++ b/po/sq.po
@@ -0,0 +1,35 @@
+# Albanian translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-28 13:40+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Albanian <sq@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s burim hyrjeje"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Harta e Simboleve"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Harta e Daljes së Tastierës"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Parametrat e Hyrjes së Tekstit..."
diff --git a/po/sr.po b/po/sr.po
index f6b8a097..7526192f 100644
--- a/po/sr.po
+++ b/po/sr.po
@@ -7,29 +7,29 @@ msgid ""
msgstr ""
"Project-Id-Version: indicator-keyboard\n"
"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
-"POT-Creation-Date: 2013-08-29 10:20+0800\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
"PO-Revision-Date: 2013-06-21 11:10+0000\n"
"Last-Translator: Иван Благојевић <ivan_blagojevic@mail.com>\n"
"Language-Team: Serbian <sr@li.org>\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=UTF-8\n"
"Content-Transfer-Encoding: 8bit\n"
-"X-Launchpad-Export-Date: 2013-09-20 06:02+0000\n"
-"X-Generator: Launchpad (build 16765)\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
-#: ../lib/main.c:1870 ../lib/main.vala:369
+#: ../lib/main.vala:552
#, c-format
msgid "%s input source"
msgstr ""
-#: ../lib/main.c:2220 ../lib/main.vala:467
+#: ../lib/main.vala:650
msgid "Character Map"
msgstr "Мапа карактера"
-#: ../lib/main.c:2223 ../lib/main.vala:468
+#: ../lib/main.vala:651
msgid "Keyboard Layout Chart"
msgstr "Шаблон распореда тастатуре"
-#: ../lib/main.c:2226 ../lib/main.vala:469
+#: ../lib/main.vala:652
msgid "Text Entry Settings..."
msgstr "Подешавања уноса текста"
diff --git a/po/sv.po b/po/sv.po
new file mode 100644
index 00000000..4f7a8fa4
--- /dev/null
+++ b/po/sv.po
@@ -0,0 +1,35 @@
+# Swedish translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-30 08:08+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Swedish <sv@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr ""
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr ""
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr ""
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr ""
diff --git a/po/ta.po b/po/ta.po
new file mode 100644
index 00000000..2cf9c57b
--- /dev/null
+++ b/po/ta.po
@@ -0,0 +1,35 @@
+# Tamil translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-25 01:48+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Tamil <ta@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s உள்ளீடு மூலம்"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "எழுத்து வரைபடம்"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "விசைப்பலகை வரைபடம்"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "உரை நுழைவு அமைப்புகள்..."
diff --git a/po/tg.po b/po/tg.po
new file mode 100644
index 00000000..761b33b0
--- /dev/null
+++ b/po/tg.po
@@ -0,0 +1,35 @@
+# Tajik translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-28 14:41+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Tajik <tg@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "Манбаи вуруди %s"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Тарҳбандии аломатҳо"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Аломатҳои тарҳбандии клавиатура"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Танзимоти вуруди матн..."
diff --git a/po/tr.po b/po/tr.po
new file mode 100644
index 00000000..19e9fc5c
--- /dev/null
+++ b/po/tr.po
@@ -0,0 +1,35 @@
+# Turkish translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-28 21:34+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Turkish <tr@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s girdi kaynağı"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Karakter Haritası"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Klavye Düzeni Şeması"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Metin Girdisi Ayarları..."
diff --git a/po/ug.po b/po/ug.po
new file mode 100644
index 00000000..cca2e00b
--- /dev/null
+++ b/po/ug.po
@@ -0,0 +1,35 @@
+# Uyghur translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-30 06:50+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Uyghur <ug@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s كىرگۈزۈش مەنبەسى"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "ھەرپ-بەلگە جەدۋىلى"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "ھەرپتاختا ئورۇنلاشتۇرۇش كۆرۈنۈشى"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "تېكىست كىرگۈزۈش تەڭشەكلىرى…"
diff --git a/po/uk.po b/po/uk.po
new file mode 100644
index 00000000..9fb823f5
--- /dev/null
+++ b/po/uk.po
@@ -0,0 +1,35 @@
+# Ukrainian translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-09-27 17:20+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Ukrainian <uk@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "Джерело введення %s"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Таблиця символів"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Таблиця розкладки клавіатури"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Параметри введення тексту…"
diff --git a/po/vi.po b/po/vi.po
new file mode 100644
index 00000000..7bc16c11
--- /dev/null
+++ b/po/vi.po
@@ -0,0 +1,35 @@
+# Vietnamese translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-16 11:12+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Vietnamese <vi@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s nguồn đầu vào"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "Sơ đồ kí tự"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "Biểu đồ Bố cục Bàn phím"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "Thiết đặt nhập văn bản..."
diff --git a/po/zh_CN.po b/po/zh_CN.po
new file mode 100644
index 00000000..7e1a10ac
--- /dev/null
+++ b/po/zh_CN.po
@@ -0,0 +1,35 @@
+# Chinese (Simplified) translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-03 12:50+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Chinese (Simplified) <zh_CN@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:49+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s 输入源"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "字符映射表"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "键盘布局图"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "文本输入设置..."
diff --git a/po/zh_TW.po b/po/zh_TW.po
new file mode 100644
index 00000000..4e4d34e3
--- /dev/null
+++ b/po/zh_TW.po
@@ -0,0 +1,35 @@
+# Chinese (Traditional) translation for indicator-keyboard
+# Copyright (c) 2013 Rosetta Contributors and Canonical Ltd 2013
+# This file is distributed under the same license as the indicator-keyboard package.
+# FIRST AUTHOR <EMAIL@ADDRESS>, 2013.
+#
+msgid ""
+msgstr ""
+"Project-Id-Version: indicator-keyboard\n"
+"Report-Msgid-Bugs-To: FULL NAME <EMAIL@ADDRESS>\n"
+"POT-Creation-Date: 2013-10-30 05:59+0000\n"
+"PO-Revision-Date: 2013-10-14 14:50+0000\n"
+"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
+"Language-Team: Chinese (Traditional) <zh_TW@li.org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Launchpad-Export-Date: 2013-10-31 05:48+0000\n"
+"X-Generator: Launchpad (build 16820)\n"
+
+#: ../lib/main.vala:552
+#, c-format
+msgid "%s input source"
+msgstr "%s 輸入來源"
+
+#: ../lib/main.vala:650
+msgid "Character Map"
+msgstr "字元對應表"
+
+#: ../lib/main.vala:651
+msgid "Keyboard Layout Chart"
+msgstr "鍵盤配置圖"
+
+#: ../lib/main.vala:652
+msgid "Text Entry Settings..."
+msgstr "文字輸入設定..."