Hello community, here is the log from the commit of package fcitx-m17n for openSUSE:Factory checked in at 2013-01-29 12:12:08 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Comparing /work/SRC/openSUSE:Factory/fcitx-m17n (Old) and /work/SRC/openSUSE:Factory/.fcitx-m17n.new (New) ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Package is "fcitx-m17n", Maintainer is "" Changes: -------- --- /work/SRC/openSUSE:Factory/fcitx-m17n/fcitx-m17n.changes 2013-01-22 22:21:37.000000000 +0100 +++ /work/SRC/openSUSE:Factory/.fcitx-m17n.new/fcitx-m17n.changes 2013-01-29 12:12:11.000000000 +0100 @@ -1,0 +2,6 @@ +Sat Jan 26 18:54:27 UTC 2013 - [email protected] + +- update to 0.2.0 + * Fix py hide by default bug. + +------------------------------------------------------------------- Old: ---- fcitx-m17n-0.1.4.tar.bz2 New: ---- fcitx-m17n-0.2.0.tar.bz2 ++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++ Other differences: ------------------ ++++++ fcitx-m17n.spec ++++++ --- /var/tmp/diff_new_pack.lAcwxl/_old 2013-01-29 12:12:12.000000000 +0100 +++ /var/tmp/diff_new_pack.lAcwxl/_new 2013-01-29 12:12:12.000000000 +0100 @@ -16,7 +16,7 @@ # Name: fcitx-m17n -Version: 0.1.4 +Version: 0.2.0 Release: 0 Summary: M17N engine for fcitx Group: System/I18n/Chinese ++++++ fcitx-m17n-0.1.4.tar.bz2 -> fcitx-m17n-0.2.0.tar.bz2 ++++++ diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.1.4/.gitignore new/fcitx-m17n-0.2.0/.gitignore --- old/fcitx-m17n-0.1.4/.gitignore 2013-01-20 16:41:20.000000000 +0100 +++ new/fcitx-m17n-0.2.0/.gitignore 2013-01-22 11:01:37.000000000 +0100 @@ -1,7 +1,13 @@ *~ -build/* +build*/ +.* +!.git* +.git/ +*.tar.* *.kdev4 -.kdev_include_paths -.kdev4 -.directory *.kate-swp +*.orig +tags +astyle.sh +cscope.* +*.part diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.1.4/CMakeLists.txt new/fcitx-m17n-0.2.0/CMakeLists.txt --- old/fcitx-m17n-0.1.4/CMakeLists.txt 2013-01-20 16:41:20.000000000 +0100 +++ new/fcitx-m17n-0.2.0/CMakeLists.txt 2013-01-22 11:01:37.000000000 +0100 @@ -1,39 +1,32 @@ -cmake_minimum_required (VERSION 2.6) +cmake_minimum_required(VERSION 2.6) project(fcitx-m17n) set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH}) -FIND_PACKAGE(M17N REQUIRED) -FIND_PACKAGE(Gettext REQUIRED) -FIND_PACKAGE(Fcitx 4.2.6 REQUIRED) +find_package(M17N REQUIRED) +find_package(Fcitx 4.2.7 REQUIRED) option(ENABLE_TEST "standalone test program" Off) -# uninstall target -configure_file( - "${CMAKE_CURRENT_SOURCE_DIR}/cmake/cmake_uninstall.cmake.in" - "${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake" - IMMEDIATE @ONLY) - -add_custom_target(uninstall - COMMAND ${CMAKE_COMMAND} -P ${CMAKE_CURRENT_BINARY_DIR}/cmake_uninstall.cmake) +_fcitx_add_uninstall_target() set(CMAKE_C_FLAGS "-Wall -Wextra -Wno-sign-compare -Wno-unused-parameter -fvisibility=hidden ${CMAKE_C_FLAGS}") set(CMAKE_CXX_FLAGS "-Wall -Wextra -Wno-sign-compare -Wno-unused-parameter -fvisibility=hidden ${CMAKE_CXX_FLAGS}") set(CMAKE_SHARED_LINKER_FLAGS "-Wl,--as-needed ${CMAKE_SHARED_LINKER_FLAGS}") set(CMAKE_MODULE_LINKER_FLAGS "-Wl,--as-needed ${CMAKE_MODULE_LINKER_FLAGS}") add_definitions(-D_GNU_SOURCE) -if (M17N_VERSION VERSION_LESS "1.6.3") - set(NEED_MINPUT_LIST 1) -else (M17N_VERSION VERSION_LESS "1.6.3") - set(NEED_MINPUT_LIST 0) -endif (M17N_VERSION VERSION_LESS "1.6.3") +if(M17N_VERSION VERSION_LESS "1.6.3") + set(NEED_MINPUT_LIST 1) +else() + set(NEED_MINPUT_LIST 0) +endif() -configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in ${CMAKE_CURRENT_BINARY_DIR}/config.h) +configure_file(${CMAKE_CURRENT_SOURCE_DIR}/config.h.in + ${CMAKE_CURRENT_BINARY_DIR}/config.h) -add_subdirectory(im) add_subdirectory(po) -if (ENABLE_TEST) - add_subdirectory(testmim) -endif (ENABLE_TEST) +add_subdirectory(im) +if(ENABLE_TEST) + add_subdirectory(testmim) +endif() diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.1.4/cmake/cmake_uninstall.cmake.in new/fcitx-m17n-0.2.0/cmake/cmake_uninstall.cmake.in --- old/fcitx-m17n-0.1.4/cmake/cmake_uninstall.cmake.in 2013-01-20 16:41:20.000000000 +0100 +++ new/fcitx-m17n-0.2.0/cmake/cmake_uninstall.cmake.in 1970-01-01 01:00:00.000000000 +0100 @@ -1,21 +0,0 @@ -if (NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") - message(FATAL_ERROR "Cannot find install manifest: \"@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt\"") -endif(NOT EXISTS "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt") - -file(READ "@CMAKE_CURRENT_BINARY_DIR@/install_manifest.txt" files) -string(REGEX REPLACE "\n" ";" files "${files}") -foreach (file ${files}) - message(STATUS "Uninstalling \"$ENV{DESTDIR}${file}\"") - if (EXISTS "$ENV{DESTDIR}${file}" OR IS_SYMLINK "$ENV{DESTDIR}${file}") - execute_process( - COMMAND @CMAKE_COMMAND@ -E remove "$ENV{DESTDIR}${file}" - OUTPUT_VARIABLE rm_out - RESULT_VARIABLE rm_retval - ) - if(NOT ${rm_retval} EQUAL 0) - message(FATAL_ERROR "Problem when removing \"$ENV{DESTDIR}${file}\"") - endif (NOT ${rm_retval} EQUAL 0) - else (EXISTS "$ENV{DESTDIR}${file}" OR IS_SYMLINK "$ENV{DESTDIR}${file}") - message(STATUS "File \"$ENV{DESTDIR}${file}\" does not exist.") - endif (EXISTS "$ENV{DESTDIR}${file}" OR IS_SYMLINK "$ENV{DESTDIR}${file}") -endforeach(file) \ No newline at end of file diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.1.4/im/CMakeLists.txt new/fcitx-m17n-0.2.0/im/CMakeLists.txt --- old/fcitx-m17n-0.1.4/im/CMakeLists.txt 2013-01-20 16:41:20.000000000 +0100 +++ new/fcitx-m17n-0.2.0/im/CMakeLists.txt 2013-01-22 11:01:37.000000000 +0100 @@ -11,15 +11,24 @@ overrideparser.c ) +fcitx_translate_add_sources( + fcitx-m17n.h + keyname.h + keysymname.h + minput_list.h + overrideparser.h + i18nname.c + ) + if (NEED_MINPUT_LIST) set(fcitx_m17n_sources ${fcitx_m17n_sources} minput_list.c) endif (NEED_MINPUT_LIST) add_definitions( -DLOCALEDIR=\"${CMAKE_INSTALL_PREFIX}/share/locale\" ) -fcitx_add_addon(fcitx-m17n ${fcitx_m17n_sources} ) -fcitx_add_addon_conf_file(fcitx-m17n.conf) -fcitx_add_configdesc_file(fcitx-m17n.desc) -target_link_libraries (fcitx-m17n ${M17N_LIBRARIES}) +fcitx_add_addon_full(m17n DESC + SOURCES ${fcitx_m17n_sources} + LINK_LIBS ${M17N_LIBRARIES} +) -install(FILES default DESTINATION ${FCITX4_PREFIX}/share/fcitx/m17n) \ No newline at end of file +install(FILES default DESTINATION ${FCITX4_PREFIX}/share/fcitx/m17n) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.1.4/im/default new/fcitx-m17n-0.2.0/im/default --- old/fcitx-m17n-0.1.4/im/default 2013-01-20 16:41:20.000000000 +0100 +++ new/fcitx-m17n-0.2.0/im/default 2013-01-22 11:01:37.000000000 +0100 @@ -35,13 +35,13 @@ ta:tamil99:1 te:inscript:1 zh:bopomofo:100:Chewing Symbol -zh:py:100:Pinyin Symbol +zh:pinyin:100:Pinyin Symbol # Disabled with -1 zh:cangjie:-1:Cangjie -zh:pinyin:-1:Pinyin +zh:py:-1:Pinyin zh:tonepy:-1:Tone Pinyin *:kbd:-1:Keyboard ja:anthy:-1:Anthy ko:han2:-1:Hanja ko:romaja:-1:Romaja -zh:quick:-1:Quick \ No newline at end of file +zh:quick:-1:Quick diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.1.4/im/fcitx-m17n.c new/fcitx-m17n-0.2.0/im/fcitx-m17n.c --- old/fcitx-m17n-0.1.4/im/fcitx-m17n.c 2013-01-20 16:41:20.000000000 +0100 +++ new/fcitx-m17n-0.2.0/im/fcitx-m17n.c 2013-01-22 11:01:37.000000000 +0100 @@ -410,7 +410,7 @@ FcitxIRV FcitxM17NDoInputInternal(IM* im, FcitxKeySym sym, unsigned state) { FcitxInstance* inst = im->owner->owner; - // FcitxInputState* is = FcitxInstanceGetInputState(inst); + FcitxInputState* is = FcitxInstanceGetInputState(inst); FcitxInputContext* ic = FcitxInstanceGetCurrentIC(inst); MSymbol msym = KeySymToSymbol(sym, state); diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.1.4/im/i18nname.c new/fcitx-m17n-0.2.0/im/i18nname.c --- old/fcitx-m17n-0.1.4/im/i18nname.c 2013-01-20 16:41:20.000000000 +0100 +++ new/fcitx-m17n-0.2.0/im/i18nname.c 2013-01-22 11:01:37.000000000 +0100 @@ -4,6 +4,7 @@ /* remember to update "default" in the same directory. */ const char* dump = { + N_("Pinyin Symbol"), N_("Chewing Symbol"), N_("Cangjie"), N_("Pinyin"), @@ -13,4 +14,4 @@ N_("Hanja"), N_("Romaja"), N_("Quick") -}; \ No newline at end of file +}; diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.1.4/po/CMakeLists.txt new/fcitx-m17n-0.2.0/po/CMakeLists.txt --- old/fcitx-m17n-0.1.4/po/CMakeLists.txt 2013-01-20 16:41:20.000000000 +0100 +++ new/fcitx-m17n-0.2.0/po/CMakeLists.txt 2013-01-22 11:01:37.000000000 +0100 @@ -1,23 +1,5 @@ -file(GLOB PO_FILES RELATIVE ${CMAKE_CURRENT_SOURCE_DIR} *.po) -file(RELATIVE_PATH REL_SOURCE_ROOT ${PROJECT_BINARY_DIR} ${PROJECT_SOURCE_DIR}) -if ("${REL_SOURCE_ROOT}" STREQUAL "") - set(REL_SOURCE_ROOT ".") -endif("${REL_SOURCE_ROOT}" STREQUAL "") - -set(POT_FILE fcitx-m17n.pot) - -configure_file(POTFILES.in.in ${CMAKE_CURRENT_BINARY_DIR}/POTFILES.in) - -extract_fcitx_addon_conf_postring() -extract_fcitx_desc_file_postring() - -add_custom_target( - pot - COMMAND INTLTOOL_EXTRACT=${INTLTOOL_EXTRACT} srcdir=${CMAKE_CURRENT_BINARY_DIR} ${INTLTOOL_UPDATE} --gettext-package fcitx-m17n --pot - WORKING_DIRECTORY ${CMAKE_CURRENT_SOURCE_DIR} - DEPENDS ${CMAKE_CURRENT_BINARY_DIR}/conf.po ${CMAKE_CURRENT_BINARY_DIR}/desc.po - ) - -# Update .po files and compile them to binary .gmo files -gettext_create_translations(${POT_FILE} ALL ${PO_FILES}) - +set(PO_LANGS zh_CN zh_TW) +foreach(lang ${PO_LANGS}) + fcitx_translate_add_po_file("${lang}" "${lang}.po") +endforeach() +fcitx_translate_set_pot_target(pot fcitx-m17n fcitx-m17n.pot) diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.1.4/po/POTFILES.in.in new/fcitx-m17n-0.2.0/po/POTFILES.in.in --- old/fcitx-m17n-0.1.4/po/POTFILES.in.in 2013-01-20 16:41:20.000000000 +0100 +++ new/fcitx-m17n-0.2.0/po/POTFILES.in.in 1970-01-01 01:00:00.000000000 +0100 @@ -1,6 +0,0 @@ -# List of source files which contain translatable strings. -./po/conf.po -./po/desc.po -@REL_SOURCE_ROOT@/im/fcitx-m17n.c -@REL_SOURCE_ROOT@/im/i18nname.c -@REL_SOURCE_ROOT@/im/fcitx-m17n.conf.in diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.1.4/po/fcitx-m17n.pot new/fcitx-m17n-0.2.0/po/fcitx-m17n.pot --- old/fcitx-m17n-0.1.4/po/fcitx-m17n.pot 2013-01-20 16:41:20.000000000 +0100 +++ new/fcitx-m17n-0.2.0/po/fcitx-m17n.pot 2013-01-22 11:01:37.000000000 +0100 @@ -7,80 +7,84 @@ msgid "" msgstr "" "Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-27 12:48-0400\n" +"Report-Msgid-Bugs-To: [email protected]\n" +"POT-Creation-Date: 2013-01-22 05:00-0500\n" "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n" "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n" "Language-Team: LANGUAGE <[email protected]>\n" -"Language: \n" +"Language: LANG\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=UTF-8\n" +"Content-Type: text/plain; charset=utf-8\n" "Content-Transfer-Encoding: 8bit\n" -# unknown -#: /home/saber/Develop/fcitx-m17n/build/po/tmp/fcitx-m17n.conf.in.h:1 -msgid "M17N" +#: im/fcitx-m17n.c:574 +#, c-format +msgid "%s (M17N)" msgstr "" -#: /home/saber/Develop/fcitx-m17n/build/po/tmp/fcitx-m17n.conf.in.h:2 -msgid "M17N IM Support For Fcitx" +#: im/i18nname.c:7 +msgid "Pinyin Symbol" msgstr "" -#: /home/saber/Develop/fcitx-m17n/im/fcitx-m17n.desc:2 -msgid "Prev Page" +#: im/i18nname.c:8 +msgid "Chewing Symbol" msgstr "" -#: /home/saber/Develop/fcitx-m17n/im/fcitx-m17n.desc:7 -msgid "Next Page" +#: im/i18nname.c:9 +msgid "Cangjie" msgstr "" -#: /home/saber/Develop/fcitx-m17n/im/fcitx-m17n.desc:12 -msgid "Enable deprecated Input method" +#: im/i18nname.c:10 +msgid "Pinyin" msgstr "" -#: /home/saber/Develop/fcitx-m17n/im/fcitx-m17n.desc:15 -msgid "" -"Enable deprecated input method provided M17N, usually this means something " -"better is already out (Need restart)" +#: im/i18nname.c:11 +msgid "Tone Pinyin" msgstr "" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/fcitx-m17n.c:576 -#, c-format -msgid "%s (M17N)" +#: im/i18nname.c:12 +msgid "Keyboard" msgstr "" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:7 -msgid "Chewing Symbol" +#: im/i18nname.c:13 +msgid "Anthy" msgstr "" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:8 -msgid "Cangjie" +#: im/i18nname.c:14 +msgid "Hanja" msgstr "" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:9 -msgid "Pinyin" +#: im/i18nname.c:15 +msgid "Romaja" msgstr "" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:10 -msgid "Tone Pinyin" +#: im/i18nname.c:16 +msgid "Quick" msgstr "" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:11 -msgid "Keyboard" +#: im/fcitx-m17n.conf.in:3 im/fcitx-m17n.desc:1 im/fcitx-m17n.desc:6 +#: im/fcitx-m17n.desc:11 +msgid "M17N" msgstr "" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:12 -msgid "Anthy" +#: im/fcitx-m17n.conf.in:4 +msgid "M17N IM Support For Fcitx" msgstr "" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:13 -msgid "Hanja" +#: im/fcitx-m17n.desc:2 +msgid "Prev Page" msgstr "" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:14 -msgid "Romaja" +#: im/fcitx-m17n.desc:7 +msgid "Next Page" msgstr "" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:15 -msgid "Quick" +#: im/fcitx-m17n.desc:12 +msgid "Enable deprecated Input method" +msgstr "" + +#: im/fcitx-m17n.desc:15 +msgid "" +"Enable deprecated input method provided M17N, usually this means something " +"better is already out (Need restart)" msgstr "" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.1.4/po/zh_CN.po new/fcitx-m17n-0.2.0/po/zh_CN.po --- old/fcitx-m17n-0.1.4/po/zh_CN.po 2013-01-20 16:41:20.000000000 +0100 +++ new/fcitx-m17n-0.2.0/po/zh_CN.po 2013-01-22 11:01:37.000000000 +0100 @@ -2,86 +2,91 @@ # This file is distributed under the same license as the PACKAGE package. # # Translators: -# Weng Xuetian <[email protected]>, 2012. +# Weng Xuetian <[email protected]>, 2012, 2013. msgid "" msgstr "" "Project-Id-Version: fcitx\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-27 12:48-0400\n" -"PO-Revision-Date: 2012-09-27 12:49-0400\n" +"Report-Msgid-Bugs-To: [email protected]\n" +"POT-Creation-Date: 2013-01-22 04:59-0500\n" +"PO-Revision-Date: 2013-01-22 04:59-0500\n" "Last-Translator: Weng Xuetian <[email protected]>\n" -"Language-Team: Chinese Simplified <[email protected]>\n" +"Language-Team: Chinese Simplified <[email protected]>\n" "Language: zh_CN\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Lokalize 1.5\n" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/fcitx-m17n.c:576 +#: im/fcitx-m17n.c:574 #, c-format msgid "%s (M17N)" msgstr "%s (M17N)" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:12 +#: im/i18nname.c:13 msgid "Anthy" msgstr "Anthy" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:8 +#: im/i18nname.c:9 msgid "Cangjie" msgstr "仓颉" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:7 +#: im/i18nname.c:8 msgid "Chewing Symbol" msgstr "注音符号" -#: /home/saber/Develop/fcitx-m17n/im/fcitx-m17n.desc:12 +#: im/fcitx-m17n.desc:12 msgid "Enable deprecated Input method" msgstr "启用已废弃的输入法" -#: /home/saber/Develop/fcitx-m17n/im/fcitx-m17n.desc:15 +#: im/fcitx-m17n.desc:15 msgid "" "Enable deprecated input method provided M17N, usually this means something " "better is already out (Need restart)" msgstr "启用 M17N 提供的已废弃的输入法,通常这意味着更好的输入法已经被支持 (需要重启)" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:13 +#: im/i18nname.c:14 msgid "Hanja" msgstr "汉字" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:11 +#: im/i18nname.c:12 msgid "Keyboard" msgstr "键盘" -#: /home/saber/Develop/fcitx-m17n/build/po/tmp/fcitx-m17n.conf.in.h:1 +#: im/fcitx-m17n.conf.in:3 im/fcitx-m17n.desc:1 im/fcitx-m17n.desc:6 +#: im/fcitx-m17n.desc:11 msgid "M17N" msgstr "M17N" -#: /home/saber/Develop/fcitx-m17n/build/po/tmp/fcitx-m17n.conf.in.h:2 +#: im/fcitx-m17n.conf.in:4 msgid "M17N IM Support For Fcitx" msgstr "Fcitx 的 M17N 输入法支持" -#: /home/saber/Develop/fcitx-m17n/im/fcitx-m17n.desc:7 +#: im/fcitx-m17n.desc:7 msgid "Next Page" msgstr "下一页" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:9 +#: im/i18nname.c:10 msgid "Pinyin" msgstr "拼音" -#: /home/saber/Develop/fcitx-m17n/im/fcitx-m17n.desc:2 +#: im/i18nname.c:7 +msgid "Pinyin Symbol" +msgstr "拼音符号" + +#: im/fcitx-m17n.desc:2 msgid "Prev Page" msgstr "上一页" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:15 +#: im/i18nname.c:16 msgid "Quick" msgstr "速成" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:14 +#: im/i18nname.c:15 msgid "Romaja" msgstr "罗马字" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:10 +#: im/i18nname.c:11 msgid "Tone Pinyin" msgstr "音调拼音" diff -urN '--exclude=CVS' '--exclude=.cvsignore' '--exclude=.svn' '--exclude=.svnignore' old/fcitx-m17n-0.1.4/po/zh_TW.po new/fcitx-m17n-0.2.0/po/zh_TW.po --- old/fcitx-m17n-0.1.4/po/zh_TW.po 2013-01-20 16:41:20.000000000 +0100 +++ new/fcitx-m17n-0.2.0/po/zh_TW.po 2013-01-22 11:01:37.000000000 +0100 @@ -3,87 +3,94 @@ # # Translators: # Alisha <[email protected]>, 2012. -# Weng Xuetian <[email protected]>, 2012. +# Cheng-Chia Tseng <[email protected]>, 2012. +# <[email protected]>, 2012. +# Weng Xuetian <[email protected]>, 2012, 2013. msgid "" msgstr "" "Project-Id-Version: fcitx\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2012-09-27 12:48-0400\n" -"PO-Revision-Date: 2012-09-27 12:51-0400\n" +"Report-Msgid-Bugs-To: [email protected]\n" +"POT-Creation-Date: 2013-01-22 05:00-0500\n" +"PO-Revision-Date: 2013-01-22 04:59-0500\n" "Last-Translator: Weng Xuetian <[email protected]>\n" -"Language-Team: Chinese Simplified <[email protected]>\n" +"Language-Team: Chinese Simplified <[email protected]>\n" "Language: zh_TW\n" "MIME-Version: 1.0\n" "Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "language/zh_TW/)\n" -"Plural-Forms: nplurals=1; plural=0\n" +"Plural-Forms: nplurals=1; plural=0;\n" "X-Generator: Lokalize 1.5\n" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/fcitx-m17n.c:576 -#, fuzzy, c-format +#: im/fcitx-m17n.c:574 +#, c-format msgid "%s (M17N)" -msgstr "%s - %s (M17N)" +msgstr "%s (M17N)" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:12 +#: im/i18nname.c:13 msgid "Anthy" msgstr "Anthy" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:8 +#: im/i18nname.c:9 msgid "Cangjie" msgstr "倉頡" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:7 +#: im/i18nname.c:8 msgid "Chewing Symbol" msgstr "注音符號" -#: /home/saber/Develop/fcitx-m17n/im/fcitx-m17n.desc:12 +#: im/fcitx-m17n.desc:12 msgid "Enable deprecated Input method" -msgstr "啓用已廢棄的輸入法" +msgstr "啟用已廢棄的輸入法" -#: /home/saber/Develop/fcitx-m17n/im/fcitx-m17n.desc:15 +#: im/fcitx-m17n.desc:15 msgid "" "Enable deprecated input method provided M17N, usually this means something " "better is already out (Need restart)" -msgstr "啓用由 M17N 提供的已廢棄的輸入法,通常這意味着更好的輸入法已經被支持 (需要重啓)" +msgstr "" +"啟用 M17N 提供的已廢棄的輸入法,通常這意味著有其他更好的輸入法 (需要重新啟動)" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:13 +#: im/i18nname.c:14 msgid "Hanja" msgstr "漢字" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:11 +#: im/i18nname.c:12 msgid "Keyboard" msgstr "鍵盤" -#: /home/saber/Develop/fcitx-m17n/build/po/tmp/fcitx-m17n.conf.in.h:1 +#: im/fcitx-m17n.conf.in:3 im/fcitx-m17n.desc:1 im/fcitx-m17n.desc:6 +#: im/fcitx-m17n.desc:11 msgid "M17N" msgstr "M17N" -#: /home/saber/Develop/fcitx-m17n/build/po/tmp/fcitx-m17n.conf.in.h:2 +#: im/fcitx-m17n.conf.in:4 msgid "M17N IM Support For Fcitx" msgstr "Fcitx 的 M17N 輸入法支援" -#: /home/saber/Develop/fcitx-m17n/im/fcitx-m17n.desc:7 +#: im/fcitx-m17n.desc:7 msgid "Next Page" msgstr "下一頁" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:9 +#: im/i18nname.c:10 msgid "Pinyin" msgstr "拼音" -#: /home/saber/Develop/fcitx-m17n/im/fcitx-m17n.desc:2 +#: im/i18nname.c:7 +msgid "Pinyin Symbol" +msgstr "拼音符號" + +#: im/fcitx-m17n.desc:2 msgid "Prev Page" msgstr "上一頁" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:15 +#: im/i18nname.c:16 msgid "Quick" msgstr "速成" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:14 +#: im/i18nname.c:15 msgid "Romaja" msgstr "羅馬字" -#: /home/saber/Develop/fcitx-m17n/build/po/../..//im/i18nname.c:10 +#: im/i18nname.c:11 msgid "Tone Pinyin" msgstr "音調拼音" - -- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
