summaryrefslogtreecommitdiff
path: root/po
diff options
context:
space:
mode:
Diffstat (limited to 'po')
-rw-r--r--po/CMakeLists.txt21
-rw-r--r--po/en_US.po20
-rw-r--r--po/it_IT.po6
3 files changed, 47 insertions, 0 deletions
diff --git a/po/CMakeLists.txt b/po/CMakeLists.txt
new file mode 100644
index 0000000..6e69f30
--- /dev/null
+++ b/po/CMakeLists.txt
@@ -0,0 +1,21 @@
+SET(POFILES en_US.po it_IT.po)
+SET(MSGFMT "/usr/bin/msgfmt")
+
+FOREACH(pofile ${POFILES})
+ SET(pofile ${CMAKE_CURRENT_SOURCE_DIR}/${pofile})
+ MESSAGE(PO: " ${pofile}")
+ GET_FILENAME_COMPONENT(absPofile ${pofile} ABSOLUTE)
+ GET_FILENAME_COMPONENT(lang ${absPofile} NAME_WE)
+ SET(moFile ${CMAKE_CURRENT_BINARY_DIR}/${lang}.mo)
+ ADD_CUSTOM_COMMAND(
+ OUTPUT ${moFile}
+ COMMAND ${MSGFMT} -o ${moFile} ${absPofile}
+ DEPENDS ${absPofile}
+ )
+ INSTALL(FILES ${moFile}
+ DESTINATION ${LOCALEDIR}/${lang}/LC_MESSAGES RENAME ${PACKAGE}.mo)
+ SET(moFiles ${moFiles} ${moFile})
+ENDFOREACH(pofile)
+
+ADD_CUSTOM_TARGET(po ALL DEPENDS ${moFiles})
+
diff --git a/po/en_US.po b/po/en_US.po
new file mode 100644
index 0000000..bc00f5c
--- /dev/null
+++ b/po/en_US.po
@@ -0,0 +1,20 @@
+msgid "IDS_BUTTON_DESCRIPTION"
+msgstr "One finger double tap to activate"
+
+msgid "IDS_BUTTON_NAME"
+msgstr "Button accessiblity name"
+
+msgid "IDS_GENLIST_GROUP_CHECKBOX_TICK_BOX"
+msgstr "Tick box for the entire group"
+
+msgid "IDS_INDEX_FASTSCROLL_DESCRIPTION"
+msgstr "Alphabetical index bar, Swipe right or left with one finger to select next or previous letter"
+
+msgid "Page %d of %d"
+msgstr "Page %d of %d"
+
+msgid "IDS_SLIDER_NAME"
+msgstr "Slider accessiblity name"
+
+msgid "IDS_FAVOURITE_NAME"
+msgstr "Favorite button"
diff --git a/po/it_IT.po b/po/it_IT.po
new file mode 100644
index 0000000..bd54823
--- /dev/null
+++ b/po/it_IT.po
@@ -0,0 +1,6 @@
+msgid "IDS_BUTTON_DESCRIPTION"
+msgstr "Un dito doppio tap per attivare"
+
+msgid "IDS_BUTTON_NAME"
+msgstr "Button nome di accessibilità"
+