Verified Kaydet (Commit) 3c568197 authored tarafından Erdem Ersoy's avatar Erdem Ersoy

Update project name and project descriptions

üst d401f788
# Roadmap for Flatpak GUI
# Roadmap for Pardus Flatpak GUI
## TODOs for 1.0:
* Fix pycodestyle linting errors left
......@@ -8,4 +8,4 @@
* Add screenshot for README.md
* Implement setup.py
* Implement Pardus (Debian) packaging
* Test Flatpak GUI on clean English and Turkish latest Pardus 19.x installations
* Test Pardus Flatpak GUI on clean English and Turkish latest Pardus 19.x installations
#!/usr/bin/env python3
#
# Flatpak GUI main exectuable script (new)
# Pardus Flatpak GUI main exectuable script (new)
# Copyright (C) 2020 Erdem Ersoy
#
# This program is free software: you can redistribute it and/or modify
......@@ -16,7 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from flatpakgui.flatpakguiapp import FlatpakGUIApp
from pardusflatpakgui.flatpakguiapp import FlatpakGUIApp
import gi
gi.require_version('Gio', '2.0')
......@@ -24,7 +24,7 @@ from gi.repository import Gio
def main():
app = FlatpakGUIApp("tr.org.pardus.flatpak-gui",
app = FlatpakGUIApp("tr.org.pardus.pardus-flatpak-gui",
Gio.ApplicationFlags.FLAGS_NONE)
app.run()
......
#!/usr/bin/env python3
#
# Flatpak GUI Application module
# Pardus Flatpak GUI Application module
# Copyright (C) 2020 Erdem Ersoy
#
# This program is free software: you can redistribute it and/or modify
......@@ -16,8 +16,8 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from flatpakgui.mainwindow import MainWindow
from flatpakgui.installwindow import InstallWindow
from pardusflatpakgui.mainwindow import MainWindow
from pardusflatpakgui.installwindow import InstallWindow
import gettext
import locale
......@@ -30,10 +30,10 @@ gi.require_version('Gio', '2.0')
from gi.repository import Gtk, GLib, Flatpak, Gio
locale.setlocale(locale.LC_ALL, "")
gettext.bindtextdomain("flatpak-gui", "po/")
gettext.textdomain("flatpak-gui")
gettext.bindtextdomain("pardus-flatpak-gui", "po/")
gettext.textdomain("pardus-flatpak-gui")
_ = gettext.gettext
gettext.install("flatpak-gui", "po/")
gettext.install("pardus-flatpak-gui", "po/")
class FlatpakGUIApp(Gtk.Application):
......
#!/usr/bin/env python3
#
# Flatpak GUI info window module
# Pardus Flatpak GUI info window module
# Copyright (C) 2020 Erdem Ersoy
#
# This program is free software: you can redistribute it and/or modify
......@@ -25,10 +25,10 @@ gi.require_version('GLib', '2.0')
from gi.repository import Gtk, Gdk, GLib
locale.setlocale(locale.LC_ALL, "")
gettext.bindtextdomain("flatpak-gui", "po/")
gettext.textdomain("flatpak-gui")
gettext.bindtextdomain("pardus-flatpak-gui", "po/")
gettext.textdomain("pardus-flatpak-gui")
_ = gettext.gettext
gettext.install("flatpak-gui", "po/")
gettext.install("pardus-flatpak-gui", "po/")
class InfoWindow(object):
......
#!/usr/bin/env python3
#
# Flatpak GUI direct install window module
# Pardus Flatpak GUI direct install window module
# Copyright (C) 2020 Erdem Ersoy
#
# This program is free software: you can redistribute it and/or modify
......
#!/usr/bin/env python3
#
# Flatpak GUI install from file input window module
# Pardus Flatpak GUI install from file input window module
# Copyright (C) 2020 Erdem Ersoy
#
# This program is free software: you can redistribute it and/or modify
......@@ -16,7 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from .installfromfilewindow import InstallFromFileWindow
from pardusflatpakgui.installfromfilewindow import InstallFromFileWindow
import gettext
import locale
......@@ -27,10 +27,10 @@ gi.require_version('GLib', '2.0')
from gi.repository import Gtk, Flatpak, GLib
locale.setlocale(locale.LC_ALL, "")
gettext.bindtextdomain("flatpak-gui", "po/")
gettext.textdomain("flatpak-gui")
gettext.bindtextdomain("pardus-flatpak-gui", "po/")
gettext.textdomain("pardus-flatpak-gui")
_ = gettext.gettext
gettext.install("flatpak-gui", "po/")
gettext.install("pardus-flatpak-gui", "po/")
class InstallFromFileInputWindow(object):
......
#!/usr/bin/env python3
#
# Flatpak GUI install from file window module
# Pardus Flatpak GUI install from file window module
# Copyright (C) 2020 Erdem Ersoy
#
# This program is free software: you can redistribute it and/or modify
......@@ -29,10 +29,10 @@ gi.require_version('Gio', '2.0')
from gi.repository import Gtk, Flatpak, GLib, Gio
locale.setlocale(locale.LC_ALL, "")
gettext.bindtextdomain("flatpak-gui", "po/")
gettext.textdomain("flatpak-gui")
gettext.bindtextdomain("pardus-flatpak-gui", "po/")
gettext.textdomain("pardus-flatpak-gui")
_ = gettext.gettext
gettext.install("flatpak-gui", "po/")
gettext.install("pardus-flatpak-gui", "po/")
class InstallFromFileWindow(object):
......
#!/usr/bin/env python3
#
# Flatpak GUI install input window module
# Pardus Flatpak GUI install input window module
# Copyright (C) 2020 Erdem Ersoy
#
# This program is free software: you can redistribute it and/or modify
......@@ -16,7 +16,7 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from .installwindow import InstallWindow
from pardusflatpakgui.installwindow import InstallWindow
import gettext
import locale
......@@ -28,10 +28,10 @@ gi.require_version('Gio', '2.0')
from gi.repository import Gtk, Flatpak, GLib, Gio
locale.setlocale(locale.LC_ALL, "")
gettext.bindtextdomain("flatpak-gui", "po/")
gettext.textdomain("flatpak-gui")
gettext.bindtextdomain("pardus-flatpak-gui", "po/")
gettext.textdomain("pardus-flatpak-gui")
_ = gettext.gettext
gettext.install("flatpak-gui", "po/")
gettext.install("pardus-flatpak-gui", "po/")
class InstallInputWindow(object):
......
#!/usr/bin/env python3
#
# Flatpak GUI install window module
# Pardus Flatpak GUI install window module
# Copyright (C) 2020 Erdem Ersoy
#
# This program is free software: you can redistribute it and/or modify
......@@ -29,10 +29,10 @@ gi.require_version('Gio', '2.0')
from gi.repository import Gtk, Flatpak, GLib, Gio
locale.setlocale(locale.LC_ALL, "")
gettext.bindtextdomain("flatpak-gui", "po/")
gettext.textdomain("flatpak-gui")
gettext.bindtextdomain("pardus-flatpak-gui", "po/")
gettext.textdomain("pardus-flatpak-gui")
_ = gettext.gettext
gettext.install("flatpak-gui", "po/")
gettext.install("pardus-flatpak-gui", "po/")
class InstallWindow(object):
......
#!/usr/bin/env python3
#
# Flatpak GUI main window module
# Pardus Flatpak GUI main window module
# Copyright (C) 2020 Erdem Ersoy
#
# This program is free software: you can redistribute it and/or modify
......@@ -16,12 +16,12 @@
# You should have received a copy of the GNU General Public License
# along with this program. If not, see <http://www.gnu.org/licenses/>.
from flatpakgui.infowindow import InfoWindow
from flatpakgui.installdirectwindow import InstallDirectWindow
from flatpakgui.installinputwindow import InstallInputWindow
from flatpakgui.installfromfileinputwindow import InstallFromFileInputWindow
from flatpakgui.uninstallwindow import UninstallWindow
from flatpakgui.updateallwindow import UpdateAllWindow
from pardusflatpakgui.infowindow import InfoWindow
from pardusflatpakgui.installdirectwindow import InstallDirectWindow
from pardusflatpakgui.installinputwindow import InstallInputWindow
from pardusflatpakgui.installfromfileinputwindow import InstallFromFileInputWindow
from pardusflatpakgui.uninstallwindow import UninstallWindow
from pardusflatpakgui.updateallwindow import UpdateAllWindow
import gettext
import locale
......@@ -33,10 +33,10 @@ gi.require_version('Gio', '2.0')
from gi.repository import Gtk, GLib, Flatpak, Gio
locale.setlocale(locale.LC_ALL, "")
gettext.bindtextdomain("flatpak-gui", "po/")
gettext.textdomain("flatpak-gui")
gettext.bindtextdomain("pardus-flatpak-gui", "po/")
gettext.textdomain("pardus-flatpak-gui")
_ = gettext.gettext
gettext.install("flatpak-gui", "po/")
gettext.install("pardus-flatpak-gui", "po/")
class MainWindow(object):
......@@ -74,8 +74,8 @@ class MainWindow(object):
self.MainWindow.set_application(application)
self.HeaderBarMain = MainBuilder.get_object("HeaderBarMain")
self.HeaderBarMain.set_title(_("Flatpak GUI"))
self.HeaderBarMain.set_subtitle(_("Manage Flatpak softwares via GUI"))
self.HeaderBarMain.set_title(_("Pardus Flatpak GUI"))
self.HeaderBarMain.set_subtitle(_("Manage Flatpak softwares via GUI on Pardus"))
self.RunMenuItem = MainBuilder.get_object("RunMenuItem")
self.RunMenuItem.set_label(_("_Run"))
......@@ -180,10 +180,10 @@ class MainWindow(object):
self.TreeViewMain = MainBuilder.get_object("TreeViewMain")
self.AboutDialog = AboutBuilder.get_object("AboutDialog")
self.AboutDialog.set_comments(_("A GUI for Flatpak"))
self.AboutDialog.set_comments(_("Flatpak GUI for Pardus"))
self.AboutDialog.set_copyright(_("Copyright (C) 2020 Erdem Ersoy"))
self.AboutDialog.set_program_name(_("Flatpak GUI"))
self.AboutDialog.set_website_label(_("Flatpak GUI Web Site"))
self.AboutDialog.set_program_name(_("Pardus Flatpak GUI"))
self.AboutDialog.set_website_label(_("Pardus Flatpak GUI Web Site"))
self.MessageDialogError = MessagesBuilder.get_object(
"MessageDialogError")
......
#!/usr/bin/env python3
#
# Flatpak GUI uninstall from file window module
# Pardus Flatpak GUI uninstall from file window module
# Copyright (C) 2020 Erdem Ersoy
#
# This program is free software: you can redistribute it and/or modify
......@@ -28,10 +28,10 @@ gi.require_version('Gio', '2.0')
from gi.repository import Gtk, GLib, Flatpak, Gio
locale.setlocale(locale.LC_ALL, "")
gettext.bindtextdomain("flatpak-gui", "po/")
gettext.textdomain("flatpak-gui")
gettext.bindtextdomain("pardus-flatpak-gui", "po/")
gettext.textdomain("pardus-flatpak-gui")
_ = gettext.gettext
gettext.install("flatpak-gui", "po/")
gettext.install("pardus-flatpak-gui", "po/")
class UninstallWindow(object):
......
#!/usr/bin/env python3
#
# Flatpak GUI update all window module
# Pardus Flatpak GUI update all window module
# Copyright (C) 2020 Erdem Ersoy
#
# This program is free software: you can redistribute it and/or modify
......@@ -28,10 +28,10 @@ gi.require_version('Gio', '2.0')
from gi.repository import Gtk, GLib, Flatpak, Gio
locale.setlocale(locale.LC_ALL, "")
gettext.bindtextdomain("flatpak-gui", "po/")
gettext.textdomain("flatpak-gui")
gettext.bindtextdomain("pardus-flatpak-gui", "po/")
gettext.textdomain("pardus-flatpak-gui")
_ = gettext.gettext
gettext.install("flatpak-gui", "po/")
gettext.install("pardus-flatpak-gui", "po/")
class UpdateAllWindow(object):
......
[Desktop Entry]
Version=1.1
Type=Application
Name=Flatpak GUI
Name[tr]=Flatpak GUI
GenericName=GUI for Flatpak
GenericName[tr]=Flatpak için GUI
Comment=Manage Flatpak softwares via GUI
Comment[tr]=GUI ile Flatpak yazılımlarını yönet
TryExec=flatpak-gui
Exec=flatpak-gui %f
Name=Pardus Flatpak GUI
Name[tr]=Pardus Flatpak GUI
GenericName=Flatpak GUI for Pardus
GenericName[tr]=Pardus için Flatpak GUI
Comment=Manage Flatpak softwares via GUI on Pardus
Comment[tr]=Pardus'ta GUI ile Flatpak yazılımlarını yönet
TryExec=pardus-flatpak-gui
Exec=pardus-flatpak-gui %f
Icon=applications-system
MimeType=application/vnd.flatpak.ref
Terminal=false
......
......@@ -33,12 +33,12 @@ Author: Erdem Ersoy
<property name="resizable">False</property>
<property name="modal">True</property>
<property name="type_hint">dialog</property>
<property name="program_name">Flatpak GUI</property>
<property name="program_name">Pardus Flatpak GUI</property>
<property name="version">1.0-rc1</property>
<property name="copyright" translatable="yes">Copyright (C) 2020 Erdem Ersoy</property>
<property name="comments" translatable="yes">A GUI for Flatpak</property>
<property name="comments" translatable="yes">Flatpak GUI for Pardus</property>
<property name="website">https://www.pardus.org.tr/</property>
<property name="website_label" translatable="yes">Flatpak GUI Web Site</property>
<property name="website_label" translatable="yes">Pardus Flatpak GUI Web Site</property>
<property name="authors">Erdem Ersoy</property>
<property name="documenters">Erdem Ersoy</property>
<property name="translator_credits" translatable="yes">Erdem Ersoy</property>
......
......@@ -207,8 +207,8 @@ Author: Erdem Ersoy
<object class="GtkHeaderBar" id="HeaderBarMain">
<property name="visible">True</property>
<property name="can_focus">False</property>
<property name="title" translatable="yes">Flatpak GUI</property>
<property name="subtitle" translatable="yes">Manage Flatpak softwares via GUI</property>
<property name="title" translatable="yes">Pardus Flatpak GUI</property>
<property name="subtitle" translatable="yes">Manage Flatpak softwares via GUI on Pardus</property>
<property name="show_close_button">True</property>
<child>
<object class="GtkMenuButton" id="HeaderBarMenuButton">
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment