aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
| * Translated using Weblate (German)Mike Gabriel2022-09-131-9/+6
| | | | | | | | | | | | | | Currently translated at 92.3% (12 of 13 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/de/
| * po/ayatana-indicator-bluetooth.pot: Update file.Mike Gabriel2022-09-111-14/+14
| |
| * update-po{,t}.sh: Omit ../ at beginning of file names in .pot file.Mike Gabriel2022-09-112-0/+2
| |
* | Translated using Weblate (Occitan)Quentin PAGÈS2022-09-081-8/+6
| | | | | | | | | | | | | | Currently translated at 100.0% (13 of 13 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/oc/
* | Translated using Weblate (Lithuanian)Moo2022-09-081-8/+6
| | | | | | | | | | | | | | Currently translated at 100.0% (13 of 13 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/lt/
* | Translated using Weblate (Portuguese (Brazil))Wellington Terumi Uemura2022-09-071-7/+5
| | | | | | | | | | | | | | Currently translated at 100.0% (13 of 13 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/pt_BR/
* | Translated using Weblate (German)Mike Gabriel2022-09-051-2/+1
| | | | | | | | | | | | | | Currently translated at 100.0% (13 of 13 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/de/
* | Translated using Weblate (Chinese (Simplified))Eric2022-09-051-6/+4
| | | | | | | | | | | | | | Currently translated at 92.3% (12 of 13 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/zh_Hans/
* | Translated using Weblate (Hebrew)Yaron Shahrabani2022-09-051-9/+7
| | | | | | | | | | | | | | Currently translated at 100.0% (13 of 13 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/he/
* | Translated using Weblate (German)Mike Gabriel2022-09-051-9/+6
|/ | | | | | | Currently translated at 92.3% (12 of 13 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/de/
* po/*.po{,t}: Translation strings update.Mike Gabriel2022-09-05127-1447/+2521
|
* Merge branch 'tari01-pr/hide-icon-if-no-adapter'Mike Gabriel2022-09-052-3/+15
|\ | | | | | | Attributes GH PR #44: https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/44
| * src/profile.vala: Add tooltip.Mike Gabriel2022-09-051-0/+1
| |
| * Translated using Weblate (Occitan)Quentin PAGÈS2022-09-051-3/+3
| | | | | | | | | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/oc/
| * Hide bluetooth icon on hardware without bluetooth supportRobert Tari2022-08-012-3/+15
| | | | | | | | fixes https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/issues/42
* | Merge branch 'sunweaver-pr/tooltip-support'Mike Gabriel2022-09-011-0/+1
|\ \ | | | | | | | | | Attributes GH PR #43: https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/43
| * | src/profile.vala: Add tooltip.Mike Gabriel2022-09-011-0/+1
|/ /
* / Translated using Weblate (Occitan)Quentin PAGÈS2022-08-071-3/+3
|/ | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/oc/
* Translated using Weblate (Ukrainian)Sergii Horichenko2022-07-291-2/+2
| | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/uk/
* Translated using Weblate (Burmese)Teitei2022-07-151-13/+13
| | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/my/
* Merge branch 'peat-psuwit-qmenumodel-compat'Mike Gabriel2022-06-262-9/+18
|\ | | | | | | Attributes GH PR #40: https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/40
| * src/*.vala: make the switch item & action QMenuModel compatibleRatchanan Srirattanamet2022-06-222-9/+18
|/ | | | | | | | | | | | | | | | | | | | | | | QMenuModel, inheritting code from GTK, will consider the menu item not "activatable" if the item's "target" [1] doesn't match the corresponding action's parameter. Since we take a boolean as action's parameter (and we can't change action's parameter easily since it's semi-public), we instead have to pass "target". Taking a page from the slider menu items, pass "true" as the target will make QMenuModel considers the item activatable and reflect the right state. And while we're at it, restore the ability to use g_action_change_state to change the state. This allows the clients that still support Canonical's indicator (e.g. Lomiri) to not have to distinguish between that and Ayatana's. This, again, is taken from how the slider menu items work. [1] i.e. the parameter to pass when activating the action. See https://wiki.gnome.org/Projects/GLib/GApplication/DBusAPI#Attributes Related: https://github.com/AyatanaIndicators/qmenumodel/issues/21
* Translated using Weblate (German)Mike Gabriel2022-06-161-4/+4
| | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/de/
* Translated using Weblate (Russian)Sergii Horichenko2022-04-231-8/+8
| | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/ru/
* Translated using Weblate (Ukrainian)Sergii Horichenko2022-04-231-4/+4
| | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/uk/
* Translated using Weblate (Russian)Sergii Horichenko2022-04-231-7/+11
| | | | | | | Currently translated at 36.3% (4 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/ru/
* Translated using Weblate (Ukrainian)Sergii Horichenko2022-04-231-8/+8
| | | | | | | Currently translated at 72.7% (8 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/uk/
* Translated using Weblate (Ukrainian)Sergii Horichenko2022-04-231-4/+8
| | | | | | | Currently translated at 9.0% (1 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/uk/
* Translated using Weblate (Korean)이정희2022-03-011-14/+17
| | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/ko/
* Translated using Weblate (Hebrew)Yaron Shahrabani2022-03-011-12/+12
| | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/he/
* release 22.2.022.2.0Mike Gabriel2022-02-175-2/+82
|
* Merge branch 'tari01-pr/drop-cmake-install-full-pkglibexecdir'Mike Gabriel2022-02-161-1/+0
|\ | | | | | | Attributes GH PR #38: https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/38
| * data/CMakeLists.txt: Drop unused pkglibexecdir definitionRobert Tari2022-02-161-1/+0
|/
* .travis.yml: Run CI builds on Travis CI's Ubuntu focal base systemRobert Tari2022-02-081-1/+1
|
* Translated using Weblate (Burmese)Aung Xange2022-02-031-4/+7
| | | | | | | Currently translated at 9.0% (1 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/my/
* Merge branch 'tari01-pr/cleanup-compile-flags'Mike Gabriel2022-01-273-26/+26
|\ | | | | | | Attributes GH PR #37: https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/37
| * .build.yml: Drop extra compilation flags and build with -WerrorRobert Tari2022-01-111-3/+2
| |
| * CMakeLists.txt: Clean up compilation flagsRobert Tari2022-01-111-9/+7
| |
| * Translated using Weblate (Portuguese)ssantos2022-01-031-14/+17
|/ | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/pt/
* Merge branch 'tari01-pr/fix-device-section-layout'Mike Gabriel2021-12-151-4/+23
|\ | | | | | | Attributes GH PR #36: https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/36
| * src/desktop.vala: Fix device section layoutRobert Tari2021-12-151-4/+23
|/ | | | fixes https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/issues/35
* Merge branch 'tari01-pr/build-libayatana-common-with-enable-lomiri-features'Mike Gabriel2021-12-151-1/+5
|\ | | | | | | Attributes GH PR #34: https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/34
| * .build.yml: Build libayatana-common with ENABLE_LOMIRI_FEATURESRobert Tari2021-12-151-1/+5
|/
* Translated using Weblate (Esperanto)phlostically2021-11-191-14/+17
| | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/eo/
* release 0.9.00.9.0Mike Gabriel2021-11-175-1376/+913
|
* Translated using Weblate (Gaelic)Phil Clifford2021-11-171-4/+9
| | | | | | | Currently translated at 0.0% (0 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/gd/
* Translated using Weblate (Slovak)Andrej Shadura2021-11-071-4/+7
| | | | | | | Currently translated at 9.0% (1 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/sk/
* Translated using Weblate (Italian)Michele2021-11-071-4/+4
| | | | | | | Currently translated at 100.0% (11 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/it/
* Translated using Weblate (Macedonian)ElectrifiedSpeed2021-11-041-4/+7
| | | | | | | Currently translated at 9.0% (1 of 11 strings) Translation: Ayatana Indicators/Bluetooth Applet Translate-URL: https://hosted.weblate.org/projects/ayatana-indicators/bluetooth-applet/mk/
* Merge branch 'tari01-pr/drop-merge-review'Mike Gabriel2021-11-022-20/+0
|\ | | | | | | Attributes GH PR #33: https://github.com/AyatanaIndicators/ayatana-indicator-bluetooth/pull/33