This is an automated email from the git hooks/post-receive script. b l u e s a b r e p u s h e d a c o m m i t t o b r a n c h m a s t e r in repository apps/xfce4-panel-profiles.
commit 3e83732801ea5f2bcec0f65d5e70fc5ae2a06ddc Author: Sean Davis <[email protected]> Date: Sat Jul 14 06:00:21 2018 -0400 Rename project to xfce4-panel-profiles --- .bzrignore | 8 -- .gitignore | 8 ++ INSTALL | 4 +- Makefile.in.in | 31 ++--- NEWS | 20 ++-- README | 2 +- bin/xfce4-panel-profiles.in.in | 2 + bin/xfpanel-switch.in.in | 2 - configure | 2 +- ...ml.in => org.xfce.PanelProfiles.appdata.xml.in} | 16 +-- po/POTFILES.in | 10 +- po/da.po | 2 +- po/lt.po | 2 +- po/pt_BR.po | 2 +- po/xfce4-panel-profiles.pot | 132 +++++++++++++++++++++ po/xfpanel-switch.pot | 132 --------------------- ...h.desktop.in => xfce4-panel-profiles.desktop.in | 4 +- .../panelconfig.py | 0 .../xfce4-panel-profiles.glade | 2 +- .../xfce4-panel-profiles.py | 26 ++-- 20 files changed, 204 insertions(+), 203 deletions(-) diff --git a/.bzrignore b/.bzrignore deleted file mode 100644 index 082f35b..0000000 --- a/.bzrignore +++ /dev/null @@ -1,8 +0,0 @@ -xfpanel-switch.desktop -*.tar.bz2 -*.xml -Makefile.in -Makefile -locale -bin/xfpanel-switch -bin/xfpanel-switch.in diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..973aa58 --- /dev/null +++ b/.gitignore @@ -0,0 +1,8 @@ +xfce4-panel-profiles.desktop +*.tar.bz2 +*.xml +Makefile.in +Makefile +locale +bin/xfce4-panel-profiles +bin/xfce4-panel-profiles.in diff --git a/INSTALL b/INSTALL index 5c035cb..c4c2f59 100644 --- a/INSTALL +++ b/INSTALL @@ -1,8 +1,8 @@ 1. Unpack the archive. -2. To build xfpanel-switch run +2. To build xfce4-panel-profiles run ./configure make -3. To install xfpanel-switch run +3. To install xfce4-panel-profiles run (sudo) make install \ No newline at end of file diff --git a/Makefile.in.in b/Makefile.in.in index c419401..910ced9 100644 --- a/Makefile.in.in +++ b/Makefile.in.in @@ -1,14 +1,14 @@ -APPNAME=xfpanel-switch +APPNAME=xfce4-panel-profiles PREFIX=@prefix@ PYTHON=`which @python@` LANGUAGE_FILES=$(patsubst po/%.po, locale/%/LC_MESSAGES/$(APPNAME).mo, $(wildcard po/*.po)) DESTDIR= all: $(LANGUAGE_FILES) layouts - intltool-merge -d po xfpanel-switch.desktop.in xfpanel-switch.desktop - intltool-merge -x po data/metainfo/org.xubuntu.XfpanelSwitch.appdata.xml.in \ - data/metainfo/org.xubuntu.XfpanelSwitch.appdata.xml - chmod +x xfpanel-switch.desktop + intltool-merge -d po xfce4-panel-profiles.desktop.in xfce4-panel-profiles.desktop + intltool-merge -x po data/metainfo/org.xfce.PanelProfiles.appdata.xml.in \ + data/metainfo/org.xfce.PanelProfiles.appdata.xml + chmod +x xfce4-panel-profiles.desktop sed -e s,%prefix%,$(PREFIX), bin/$(APPNAME).in.in > bin/$(APPNAME).in sed -e s,%python%,$(PYTHON), bin/$(APPNAME).in > bin/$(APPNAME) chmod +x bin/$(APPNAME) @@ -18,7 +18,7 @@ locale/%/LC_MESSAGES/$(APPNAME).mo: po/%.po msgfmt $< -o $@ pot: - cd po; intltool-update --pot --gettext-package=xfpanel-switch + cd po; intltool-update --pot --gettext-package=xfce4-panel-profiles layouts: cd data/layouts/gnome2; tar -cvjf "../GNOME 2.tar.bz2" * @@ -32,10 +32,10 @@ install: all install -d $(DESTDIR)/$(PREFIX)/bin install bin/$(APPNAME) $(DESTDIR)/$(PREFIX)/bin - install -d $(DESTDIR)/$(PREFIX)/share/$(APPNAME)/xfpanel-switch - install xfpanel-switch/panelconfig.py $(DESTDIR)/$(PREFIX)/share/$(APPNAME)/xfpanel-switch - install xfpanel-switch/xfpanel-switch.py $(DESTDIR)/$(PREFIX)/share/$(APPNAME)/xfpanel-switch - install xfpanel-switch/xfpanel-switch.glade $(DESTDIR)/$(PREFIX)/share/$(APPNAME)/xfpanel-switch + install -d $(DESTDIR)/$(PREFIX)/share/$(APPNAME)/xfce4-panel-profiles + install xfce4-panel-profiles/panelconfig.py $(DESTDIR)/$(PREFIX)/share/$(APPNAME)/xfce4-panel-profiles + install xfce4-panel-profiles/xfce4-panel-profiles.py $(DESTDIR)/$(PREFIX)/share/$(APPNAME)/xfce4-panel-profiles + install xfce4-panel-profiles/xfce4-panel-profiles.glade $(DESTDIR)/$(PREFIX)/share/$(APPNAME)/xfce4-panel-profiles install -d $(DESTDIR)/$(PREFIX)/share/doc/$(APPNAME) install AUTHORS $(DESTDIR)/$(PREFIX)/share/doc/$(APPNAME) @@ -47,9 +47,9 @@ install: all install -d $(DESTDIR)/$(PREFIX)/share/applications install -m 644 $(APPNAME).desktop $(DESTDIR)/$(PREFIX)/share/applications - install -d $(DESTDIR)/$(PREFIX)/share/xfpanel-switch - install -d $(DESTDIR)/$(PREFIX)/share/xfpanel-switch/layouts - install data/layouts/*.tar.bz2 $(DESTDIR)/$(PREFIX)/share/xfpanel-switch/layouts + install -d $(DESTDIR)/$(PREFIX)/share/xfce4-panel-profiles + install -d $(DESTDIR)/$(PREFIX)/share/xfce4-panel-profiles/layouts + install data/layouts/*.tar.bz2 $(DESTDIR)/$(PREFIX)/share/xfce4-panel-profiles/layouts install -d $(DESTDIR)/$(PREFIX)/share/metainfo install data/metainfo/*.xml $(DESTDIR)/$(PREFIX)/share/metainfo @@ -66,10 +66,11 @@ uninstall: clean: rm -Rf locale - rm -f xfpanel-switch/*.pyc + rm -f xfce4-panel-profiles/*.pyc rm -f bin/$(APPNAME).in rm -f bin/$(APPNAME) + rm -f data/metainfo/org.xfce.PanelProfiles.appdata.xml rm -f data/layouts/*.tar.bz2 - rm -f xfpanel-switch.desktop + rm -f xfce4-panel-profiles.desktop rm -f Makefile.in rm -f Makefile diff --git a/NEWS b/NEWS index efad416..1e2519f 100644 --- a/NEWS +++ b/NEWS @@ -1,16 +1,16 @@ -xfpanel-switch 1.0.7 +xfce4-panel-profiles 1.0.7 * Bugs Fixed - AttributeError: 'PanelConfig' object has no attribute 'source' (LP: #1762779) * Updated translation: French -xfpanel-switch 1.0.6 +xfce4-panel-profiles 1.0.6 * Bugs Fixed - Restore missing launchers for "Xubuntu Precise" layout -xfpanel-switch 1.0.5 +xfce4-panel-profiles 1.0.5 * General - Add gi.require_version('Gtk', '3.0') to silence warning @@ -30,12 +30,12 @@ xfpanel-switch 1.0.5 * Updated translations: Brazilian Portuguese, Czech, French, Galician, Italian, Kazakh, Polish, Slovenian -xfpanel-switch 1.0.4 +xfce4-panel-profiles 1.0.4 * New translations: Dutch, Greek, Japanese, Portuguese * Updated translations: French, Lithuanian, Spanish, Swedish -xfpanel-switch 1.0.3 +xfce4-panel-profiles 1.0.3 * Bugs Fixed - Allow translation of missing messages (LP: #1497762) @@ -45,15 +45,15 @@ xfpanel-switch 1.0.3 * New translations: Finnish, Spanish * Updated translations: German, French -xfpanel-switch 1.0.2 +xfce4-panel-profiles 1.0.2 * Bugs Fixed - - Wrong shebang in xfpanel-switch/xfpanel-switch.py (LP: #1494843) + - Wrong shebang in xfce4-panel-profiles/xfce4-panel-profiles.py (LP: #1494843) - Check if user can delete backup (LP: #1494846) - Do not list saved configurations multiple times * New Translation: French -xfpanel-switch 1.0.1 +xfce4-panel-profiles 1.0.1 * New Features - Ths new release ships with it's first set of templates. @@ -69,9 +69,9 @@ xfpanel-switch 1.0.1 * Many thanks to our contributors! -Initial release: xfpanel-switch 1.0 +Initial release: xfce4-panel-profiles 1.0 - * This is the first release of xfpanel-switch. This application + * This is the first release of xfce4-panel-profiles. This application allows users to manage their panel configuration, make backups, and even import/export their creations. Distributors can provide default configurations to be used. diff --git a/README b/README index e10cafb..af9e098 100644 --- a/README +++ b/README @@ -1,7 +1,7 @@ Xfce4 Panel Profiles ================== -Xfce4 Panel Profiles (xfce4-panel-profiles, formerly known as xfpanel-switch) is a simple application to manage Xfce panel layouts. +Xfce4 Panel Profiles (xfce4-panel-profiles, formerly known as xfce4-panel-profiles) is a simple application to manage Xfce panel layouts. With the modular Xfce Panel, a multitude of panel layouts can be created. This tool makes it possible to backup, restore, import, and export these panel layouts. diff --git a/bin/xfce4-panel-profiles.in.in b/bin/xfce4-panel-profiles.in.in new file mode 100644 index 0000000..43ba94f --- /dev/null +++ b/bin/xfce4-panel-profiles.in.in @@ -0,0 +1,2 @@ +#!/bin/sh +%python% %prefix%/share/xfce4-panel-profiles/xfce4-panel-profiles/xfce4-panel-profiles.py "$@" diff --git a/bin/xfpanel-switch.in.in b/bin/xfpanel-switch.in.in deleted file mode 100644 index 06514d4..0000000 --- a/bin/xfpanel-switch.in.in +++ /dev/null @@ -1,2 +0,0 @@ -#!/bin/sh -%python% %prefix%/share/xfpanel-switch/xfpanel-switch/xfpanel-switch.py "$@" diff --git a/configure b/configure index 3743e5c..fac6a88 100755 --- a/configure +++ b/configure @@ -1,6 +1,6 @@ #!/bin/sh -APPNAME=xfpanel-switch +APPNAME=xfce4-panel-profiles VERSION=1.0.7 PYTHON=python3 diff --git a/data/metainfo/org.xubuntu.XfpanelSwitch.appdata.xml.in b/data/metainfo/org.xfce.PanelProfiles.appdata.xml.in similarity index 63% rename from data/metainfo/org.xubuntu.XfpanelSwitch.appdata.xml.in rename to data/metainfo/org.xfce.PanelProfiles.appdata.xml.in index 36dbf88..1a9704f 100644 --- a/data/metainfo/org.xubuntu.XfpanelSwitch.appdata.xml.in +++ b/data/metainfo/org.xfce.PanelProfiles.appdata.xml.in @@ -1,9 +1,9 @@ <?xml version="1.0" encoding="UTF-8"?> <component type="desktop"> - <id>xfpanel-switch.desktop</id> + <id>xfce4-panel-profiles.desktop</id> <metadata_license>CC-BY-3.0</metadata_license> <project_license>GPL-3.0</project_license> - <name>Xfpanel Switch</name> + <name>Xfce Panel Profiles</name> <_summary>Application to manage different panel layouts in Xfce</_summary> <description> @@ -14,21 +14,21 @@ <screenshots> <screenshot type="default"> - <image width="960" height="540">https://screenshots.bluesabre.org/xfpanel-switch/xfpanel-switch.png</image> + <image width="960" height="540">https://screenshots.bluesabre.org/xfce4-panel-profiles/xfce4-panel-profiles.png</image> </screenshot> </screenshots> - <translation type="gettext">xfpanel-switch</translation> + <translation type="gettext">xfce4-panel-profiles</translation> - <url type="homepage">https://launchpad.net/xfpanel-switch</url> - <url type="bugtracker">https://bugs.launchpad.net/xfpanel-switch</url> + <url type="homepage">https://git.xfce.org/apps/xfce4-panel-profiles</url> + <url type="bugtracker">https://bugzilla.xfce.org/</url> - <updatecontact>[email protected]</updatecontact> + <updatecontact>[email protected]</updatecontact> <project_group>XFCE</project_group> <provides> - <binary>xfpanel-switch</binary> + <binary>xfce4-panel-profiles</binary> </provides> </component> diff --git a/po/POTFILES.in b/po/POTFILES.in index 49851f1..59df211 100644 --- a/po/POTFILES.in +++ b/po/POTFILES.in @@ -14,14 +14,14 @@ ### END LICENSE # Desktop File -xfpanel-switch.desktop.in +xfce4-panel-profiles.desktop.in # Glade Files -[type: gettext/glade]xfpanel-switch/xfpanel-switch.glade +[type: gettext/glade]xfce4-panel-profiles/xfce4-panel-profiles.glade # Python Files -xfpanel-switch/panelconfig.py -xfpanel-switch/xfpanel-switch.py +xfce4-panel-profiles/panelconfig.py +xfce4-panel-profiles/xfce4-panel-profiles.py # XML -data/metainfo/org.xubuntu.XfpanelSwitch.appdata.xml.in +data/metainfo/org.xfce.PanelProfiles.appdata.xml.in diff --git a/po/da.po b/po/da.po index fe5e4b5..bdc3afa 100644 --- a/po/da.po +++ b/po/da.po @@ -13,7 +13,7 @@ msgstr "" "Last-Translator: scootergrisen, 2018\n" "Language-Team: Danish (https://www.transifex.com/xfce/teams/16840/da/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: da\n" "Plural-Forms: nplurals=2; plural=(n != 1);\n" diff --git a/po/lt.po b/po/lt.po index 5acc925..fa0fc1f 100644 --- a/po/lt.po +++ b/po/lt.po @@ -13,7 +13,7 @@ msgstr "" "Last-Translator: Moo, 2018\n" "Language-Team: Lithuanian (https://www.transifex.com/xfce/teams/16840/lt/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: lt\n" "Plural-Forms: nplurals=4; plural=(n % 10 == 1 && (n % 100 > 19 || n % 100 < 11) ? 0 : (n % 10 >= 2 && n % 10 <=9) && (n % 100 > 19 || n % 100 < 11) ? 1 : n % 1 != 0 ? 2: 3);\n" diff --git a/po/pt_BR.po b/po/pt_BR.po index 20dd5c4..dd56a3b 100644 --- a/po/pt_BR.po +++ b/po/pt_BR.po @@ -13,7 +13,7 @@ msgstr "" "Last-Translator: Marcelo Tobias <[email protected]>, 2018\n" "Language-Team: Portuguese (Brazil) (https://www.transifex.com/xfce/teams/16840/pt_BR/)\n" "MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" +"Content-Type: text/plain; charset=UTF-8\n" "Content-Transfer-Encoding: 8bit\n" "Language: pt_BR\n" "Plural-Forms: nplurals=2; plural=(n > 1);\n" diff --git a/po/xfce4-panel-profiles.pot b/po/xfce4-panel-profiles.pot new file mode 100644 index 0000000..d51b1ae --- /dev/null +++ b/po/xfce4-panel-profiles.pot @@ -0,0 +1,132 @@ +# SOME DESCRIPTIVE TITLE. +# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER +# This file is distributed under the same license as the PACKAGE package. +# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. +# +#, fuzzy +msgid "" +msgstr "" +"Project-Id-Version: PACKAGE VERSION\n" +"Report-Msgid-Bugs-To: \n" +"POT-Creation-Date: 2018-03-23 06:37-0400\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" +"MIME-Version: 1.0\n" +"Content-Type: text/plain; charset=UTF-8\n" +"Content-Transfer-Encoding: 8bit\n" + +#: ../xfce4-panel-profiles.desktop.in.h:1 ../xfce4-panel-profiles/xfce4-panel-profiles.py:51 +msgid "Panel Profiles" +msgstr "" + +#: ../xfce4-panel-profiles.desktop.in.h:2 +msgid "Backup and restore your panel configuration" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.glade.h:1 +msgid "" +"<b><big>Panel Profiles</big></b>\n" +"Backup and restore your panel configuration" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.glade.h:3 +msgid "Filename" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.glade.h:4 +msgid "Date Modified" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.glade.h:5 +msgid "Apply Configuration" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.glade.h:6 +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:293 +msgid "Save Configuration" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.glade.h:7 +msgid "Remove Configuration" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.glade.h:8 +msgid "Export" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.glade.h:9 +msgid "Import" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.glade.h:10 +msgid "Save panel configuration as..." +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.glade.h:11 +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:85 +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:292 +msgid "Cancel" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.glade.h:12 +msgid "<b>Name the new panel configuration</b>" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:80 +msgid "Save" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:82 +msgid "Open" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:140 +msgid "Current Configuration" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:160 +msgid "Today" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:162 +msgid "Yesterday" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:187 +#, python-format +msgid "%s (Copy of %s)" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:211 +msgid "Export configuration as..." +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:212 +msgid "Untitled" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:224 +msgid "Import configuration file..." +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:285 +msgid "Name the new panel configuration" +msgstr "" + +#: ../xfce4-panel-profiles/xfce4-panel-profiles.py:309 +#, python-format +msgid "Backup_%s" +msgstr "" + +#: ../data/metainfo/org.xfce.PanelProfiles.appdata.xml.in.h:1 +msgid "Application to manage different panel layouts in Xfce" +msgstr "" + +#: ../data/metainfo/org.xfce.PanelProfiles.appdata.xml.in.h:2 +msgid "" +"Multitude of panel layouts can be created using Xfce panel. This tool " +"enables managing different layouts with little effort. Xfpanel-switch makes " +"it possible to backup, restore, import and export panel layouts." +msgstr "" diff --git a/po/xfpanel-switch.pot b/po/xfpanel-switch.pot deleted file mode 100644 index 2ac8cb6..0000000 --- a/po/xfpanel-switch.pot +++ /dev/null @@ -1,132 +0,0 @@ -# SOME DESCRIPTIVE TITLE. -# Copyright (C) YEAR THE PACKAGE'S COPYRIGHT HOLDER -# This file is distributed under the same license as the PACKAGE package. -# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR. -# -#, fuzzy -msgid "" -msgstr "" -"Project-Id-Version: PACKAGE VERSION\n" -"Report-Msgid-Bugs-To: \n" -"POT-Creation-Date: 2018-03-23 06:37-0400\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" -"MIME-Version: 1.0\n" -"Content-Type: text/plain; charset=CHARSET\n" -"Content-Transfer-Encoding: 8bit\n" - -#: ../xfpanel-switch.desktop.in.h:1 ../xfpanel-switch/xfpanel-switch.py:51 -msgid "Xfce Panel Switch" -msgstr "" - -#: ../xfpanel-switch.desktop.in.h:2 -msgid "Backup and restore your panel configuration" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.glade.h:1 -msgid "" -"<b><big>Xfce Panel Switch</big></b>\n" -"Backup and restore your panel configuration" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.glade.h:3 -msgid "Filename" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.glade.h:4 -msgid "Date Modified" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.glade.h:5 -msgid "Apply Configuration" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.glade.h:6 -#: ../xfpanel-switch/xfpanel-switch.py:293 -msgid "Save Configuration" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.glade.h:7 -msgid "Remove Configuration" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.glade.h:8 -msgid "Export" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.glade.h:9 -msgid "Import" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.glade.h:10 -msgid "Save panel configuration as..." -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.glade.h:11 -#: ../xfpanel-switch/xfpanel-switch.py:85 -#: ../xfpanel-switch/xfpanel-switch.py:292 -msgid "Cancel" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.glade.h:12 -msgid "<b>Name the new panel configuration</b>" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.py:80 -msgid "Save" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.py:82 -msgid "Open" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.py:140 -msgid "Current Configuration" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.py:160 -msgid "Today" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.py:162 -msgid "Yesterday" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.py:187 -#, python-format -msgid "%s (Copy of %s)" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.py:211 -msgid "Export configuration as..." -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.py:212 -msgid "Untitled" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.py:224 -msgid "Import configuration file..." -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.py:285 -msgid "Name the new panel configuration" -msgstr "" - -#: ../xfpanel-switch/xfpanel-switch.py:309 -#, python-format -msgid "Backup_%s" -msgstr "" - -#: ../data/metainfo/org.xubuntu.XfpanelSwitch.appdata.xml.in.h:1 -msgid "Application to manage different panel layouts in Xfce" -msgstr "" - -#: ../data/metainfo/org.xubuntu.XfpanelSwitch.appdata.xml.in.h:2 -msgid "" -"Multitude of panel layouts can be created using Xfce panel. This tool " -"enables managing different layouts with little effort. Xfpanel-switch makes " -"it possible to backup, restore, import and export panel layouts." -msgstr "" diff --git a/xfpanel-switch.desktop.in b/xfce4-panel-profiles.desktop.in similarity index 85% rename from xfpanel-switch.desktop.in rename to xfce4-panel-profiles.desktop.in index a23a938..883171b 100644 --- a/xfpanel-switch.desktop.in +++ b/xfce4-panel-profiles.desktop.in @@ -1,7 +1,7 @@ [Desktop Entry] -_Name=Xfce Panel Switch +_Name=Panel Profiles _Comment=Backup and restore your panel configuration -Exec=xfpanel-switch +Exec=xfce4-panel-profiles Terminal=false Type=Application StartupNotify=true diff --git a/xfpanel-switch/panelconfig.py b/xfce4-panel-profiles/panelconfig.py similarity index 100% rename from xfpanel-switch/panelconfig.py rename to xfce4-panel-profiles/panelconfig.py diff --git a/xfpanel-switch/xfpanel-switch.glade b/xfce4-panel-profiles/xfce4-panel-profiles.glade similarity index 99% rename from xfpanel-switch/xfpanel-switch.glade rename to xfce4-panel-profiles/xfce4-panel-profiles.glade index a05771f..74966fe 100644 --- a/xfpanel-switch/xfpanel-switch.glade +++ b/xfce4-panel-profiles/xfce4-panel-profiles.glade @@ -64,7 +64,7 @@ <property name="visible">True</property> <property name="can_focus">False</property> <property name="margin_start">12</property> - <property name="label" translatable="yes"><b><big>Xfce Panel Switch</big></b> + <property name="label" translatable="yes"><b><big>Panel Profiles</big></b> Backup and restore your panel configuration</property> <property name="use_markup">True</property> <property name="ellipsize">end</property> diff --git a/xfpanel-switch/xfpanel-switch.py b/xfce4-panel-profiles/xfce4-panel-profiles.py similarity index 95% rename from xfpanel-switch/xfpanel-switch.py rename to xfce4-panel-profiles/xfce4-panel-profiles.py index bcf3981..fb0a068 100644 --- a/xfpanel-switch/xfpanel-switch.py +++ b/xfce4-panel-profiles/xfce4-panel-profiles.py @@ -1,6 +1,6 @@ #!/usr/bin/env python3 # -*- Mode: Python; coding: utf-8; indent-tabs-mode: nil; tab-width: 4 -*- -# Xfce Panel Switch +# Panel Profiles # Copyright (C) 2013 Alistair Buxton <[email protected]> # Copyright (C) 2015 Sean Davis <[email protected]> # @@ -17,7 +17,7 @@ # with this program. If not, see <http://www.gnu.org/licenses/>. import gettext -gettext.textdomain('xfpanel-switch') +gettext.textdomain('xfce4-panel-profiles') from gettext import gettext as _ from gettext import ngettext @@ -35,7 +35,7 @@ from panelconfig import PanelConfig homedir = GLib.get_home_dir() cachedir = GLib.get_user_cache_dir() -cachefile = os.path.join(cachedir, "xfpanel-switch.tar.gz") +cachefile = os.path.join(cachedir, "xfce4-panel-profiles.tar.gz") try: if not os.path.exists(cachedir): @@ -43,25 +43,25 @@ try: except: pass -class XfpanelSwitch: +class XfcePanelProfiles: - '''XfpanelSwitch application class.''' + '''XfcePanelProfiles application class.''' - data_dir = "xfpanel-switch" + data_dir = "xfce4-panel-profiles" save_location = os.path.join(GLib.get_user_data_dir(), data_dir) def __init__(self): - '''Initialize the Xfce Panel Switch application.''' + '''Initialize the Panel Profiles application.''' self.builder = Gtk.Builder() - self.builder.set_translation_domain('xfpanel-switch') + self.builder.set_translation_domain('xfce4-panel-profiles') script_dir = os.path.dirname(os.path.abspath(__file__)) - glade_file = os.path.join(script_dir, "xfpanel-switch.glade") + glade_file = os.path.join(script_dir, "xfce4-panel-profiles.glade") self.builder.add_from_file(glade_file) self.builder.connect_signals(self) self.window = self.builder.get_object("xfpanel_switch_window") - self.window.set_title(_("Xfce Panel Switch")) + self.window.set_title(_("Panel Profiles")) self.fix_xfce_header() self.load_xfconf() @@ -291,7 +291,7 @@ class XfpanelSwitch: def on_help_clicked(self, *args): '''Navigate to the application documentation on Help click.''' screen = self.window.get_screen() - link = "https://wiki.smdavis.us/doku.php?id=xfpanel-switch-docs" + link = "https://docs.xfce.org/apps/xfce4-panel-profiles/start" Gtk.show_uri(screen, link, Gtk.get_current_event_time()) @@ -365,7 +365,7 @@ if __name__ == "__main__": exit(1) exit(0) else: - print('Xfce Panel Switch - Usage:') + print('Xfce Panel Profiles - Usage:') print(sys.argv[0] + ' : load graphical user interface.') print(sys.argv[0] + ' save <filename> : save current configuration.') print(sys.argv[0] + ' load <filename> : load configuration from file.') @@ -377,5 +377,5 @@ if __name__ == "__main__": except: pass - main = XfpanelSwitch() + main = XfcePanelProfiles() Gtk.main() -- To stop receiving notification emails like this one, please contact the administrator of this repository. _______________________________________________ Xfce4-commits mailing list [email protected] https://mail.xfce.org/mailman/listinfo/xfce4-commits
