Codebase list ibus-table / a14cb2a
Update upstream source from tag 'upstream/1.16.12' Update to upstream version '1.16.12' with Debian dir c7eed33a0f4580ed456513642553fbcde4cb5aa8 Boyuan Yang 1 year, 7 months ago
6 changed file(s) with 71 addition(s) and 17 deletion(s). Raw diff Collapse all Expand all
0 commit f5e46fcaa3bcbb76f04d77ca2436e50a96e33047
0 commit 0b5125805e26c2f87ab0f668be6a9ef154d05b5c
1 Author: Mike FABIAN <mfabian@redhat.com>
2 Date: Mon Sep 5 19:51:48 2022 +0200
3
4 Release 1.16.12
5
6 commit 930bfd8ddfe35948aa5e6164f244a79c29cba787
7 Author: Mike FABIAN <mfabian@redhat.com>
8 Date: Mon Sep 5 19:53:06 2022 +0200
9
10 Update ibus-table.pot (Only line number changes)
11
12 commit 1779f8f9f2cf709092db613c0ad0bc1067ba16ce
13 Author: Mike FABIAN <mfabian@redhat.com>
14 Date: Mon Sep 5 14:57:20 2022 +0200
15
16 Add 128x128, 256x256, and svg (remote) icons to ibus-table.appdata.xml
17
18 commit bbcfba9d5882735b81276ce80c115b6ac5e5502c
19 Author: Mike FABIAN <mfabian@redhat.com>
20 Date: Mon Sep 5 14:52:16 2022 +0200
21
22 Use setlocale() and getlocale() instead of getdefaultlocale()
23
24 Resolves: https://github.com/mike-fabian/ibus-table/issues/120
25
26 commit 1616f65f4a05c6de634b6aa6580b8ebfad9318e6
27 Author: Mike FABIAN <mfabian@redhat.com>
28 Date: Wed Aug 10 09:19:10 2022 +0200
29
30 Translated using Weblate (Portuguese (Portugal))
31
32 Currently translated at 78.0% (114 of 146 strings)
33
34 Co-authored-by: Mike FABIAN <mfabian@redhat.com>
35 Translate-URL: https://translate.fedoraproject.org/projects/ibus-table/app/pt_PT/
36 Translation: ibus-table/app
37
38 commit f5583ba6dbe3aaca551effa00b8873f9fd5c26ec
139 Author: Mike FABIAN <mfabian@redhat.com>
240 Date: Sat Aug 6 13:58:57 2022 +0200
341
2424 m4_define([ibus_released], [1])
2525 m4_define([ibus_major_version], [1])
2626 m4_define([ibus_minor_version], [16])
27 m4_define([ibus_micro_version], [11])
27 m4_define([ibus_micro_version], [12])
2828 m4_define(ibus_maybe_datestamp,
2929 m4_esyscmd([if test ]ibus_released[ != 1; then date +.%Y%m%d | tr -d '\n\r'; fi]))
3030
103103 _PROFILE = cProfile.Profile()
104104
105105 if _ARGS.xml:
106 from locale import getdefaultlocale
106 import locale
107107 from xml.etree.ElementTree import Element, SubElement, tostring
108108 else:
109109 # Avoid importing factory when the --xml option is used because
276276 _longname.text = ''
277277 # getdefaultlocale() returns something like ('ja_JP', 'UTF-8').
278278 # In case of C/POSIX locale it returns (None, None)
279 _locale = getdefaultlocale()[0]
280 if _locale:
281 _locale = _locale.lower()
282 else:
279 locale.setlocale(locale.LC_ALL, '')
280 _locale = locale.getlocale(locale.LC_MESSAGES)[0].lower()
281 if not _locale:
283282 _locale = 'en'
284283 _longname.text = _sq_db.ime_properties.get(
285284 '.'.join(['name', _locale]))
2525 </screenshot>
2626 </screenshots>
2727 <icon type="remote" width="64" height="64">https://raw.githubusercontent.com/mike-fabian/ibus-table/main/icons/64x64/ibus-table.png</icon>
28 <icon type="remote" width="128" height="128">https://raw.githubusercontent.com/mike-fabian/ibus-table/main/icons/128x128/ibus-table.png</icon>
29 <icon type="remote" width="256" height="256">https://raw.githubusercontent.com/mike-fabian/ibus-table/main/icons/256x256/ibus-table.png</icon>
30 <icon type="remote">https://raw.githubusercontent.com/mike-fabian/ibus-table/main/icons/ibus-table.svg</icon>
2831 <project_license>LGPL-2.1+</project_license>
2932 <developer_name>Mike FABIAN</developer_name>
3033 <update_contact>mfabian@redhat.com</update_contact>
3437 <url type="translate">https://translate.fedoraproject.org/projects/ibus-table/</url>
3538 <content_rating type="oars-1.1" />
3639 <releases>
40 <release version="1.16.12" date="2022-09-05" urgency="medium">
41 <description>
42 <p>This new stable release includes these changes:</p>
43 </description>
44 <url>https://github.com/mike-fabian/ibus-table/releases/tag/1.16.12</url>
45 <issues>
46 <issue url="https://github.com/mike-fabian/ibus-table/issues/120">
47 github-mike-fabian-issue#120: Stop using
48 locale.getdefaultlocale() because it is deprecated in Python
49 3.11 and will be removed in Python 3.13
50 </issue>
51 <issue>
52 Add 128x128, 256x256, and svg (remote) icons to ibus-table.appdata.xml
53 </issue>
54 </issues>
55 </release>
3756 <release version="1.16.11" date="2022-08-02" urgency="medium">
3857 <description>
3958 <p>This new stable release includes these changes:</p>
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: https://github.com/mike-fabian/ibus-table/issues\n"
10 "POT-Creation-Date: 2022-06-13 18:13+0200\n"
10 "POT-Creation-Date: 2022-09-05 19:52+0200\n"
1111 "PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
1212 "Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
1313 "Language-Team: LANGUAGE <LL@li.org>\n"
325325 msgid "Online documentation:"
326326 msgstr ""
327327
328 #: ibus-table.appdata.xml:5
328 #: ibus-table.appdata.xml:6
329329 msgid "Ibus Table"
330330 msgstr ""
331331
332 #: ibus-table.appdata.xml:6
332 #: ibus-table.appdata.xml:7
333333 msgid "Table based input method"
334334 msgstr ""
335335
336 #: ibus-table.appdata.xml:8
336 #: ibus-table.appdata.xml:9
337337 msgid ""
338338 "Ibus-table is an input method framework for table-based input methods. "
339339 "Mostly it is used for Chinese input methods such as ZhengMa, WuBi, ErBi, "
22 # This file is distributed under the same license as the PACKAGE package.
33 # Manuela Silva <mmsrs@sky.com>, 2020.
44 # Anonymous <noreply@weblate.org>, 2020.
5 # Mike FABIAN <mfabian@redhat.com>, 2021.
5 # Mike FABIAN <mfabian@redhat.com>, 2021, 2022.
66 msgid ""
77 msgstr ""
88 "Project-Id-Version: PACKAGE VERSION\n"
99 "Report-Msgid-Bugs-To: http://code.google.com/p/ibus/issues/entry\n"
1010 "POT-Creation-Date: 2022-01-28 12:57+0100\n"
11 "PO-Revision-Date: 2021-07-22 15:03+0000\n"
11 "PO-Revision-Date: 2022-08-10 07:19+0000\n"
1212 "Last-Translator: Mike FABIAN <mfabian@redhat.com>\n"
1313 "Language-Team: Portuguese (Portugal) <https://translate.fedoraproject.org/"
1414 "projects/ibus-table/app/pt_PT/>\n"
1717 "Content-Type: text/plain; charset=UTF-8\n"
1818 "Content-Transfer-Encoding: 8bit\n"
1919 "Plural-Forms: nplurals=2; plural=n > 1;\n"
20 "X-Generator: Weblate 4.7.2\n"
20 "X-Generator: Weblate 4.13\n"
2121
2222 #. Translators: This is the menu entry to select
2323 #. when one wants to input only Simplified Chinese.
355355 "disponíveis algumas tabelas para outros idiomas."
356356
357357 #: setup/main.py:114
358 #, fuzzy
359 #| msgid "<b>Inital state</b>"
360358 msgid "Initial state"
361 msgstr "<b>Estado inicial</b>"
359 msgstr "Estado inicial"
362360
363361 #: setup/main.py:115
364362 msgid "Direct input"