Skip to content

Commit

Permalink
Standardized plugins ...
Browse files Browse the repository at this point in the history
  • Loading branch information
KeithDHedger committed Oct 10, 2020
1 parent cc09cb4 commit f0e5559
Show file tree
Hide file tree
Showing 18 changed files with 1,820 additions and 0 deletions.
67 changes: 67 additions & 0 deletions KKEdit/plugins/Clipboard/ClipboardPlugin.pot
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
# 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: ClipboardPlugin 1.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2017-03-30 16:58+0100\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"

#: clipboardplugin.cpp:166
msgid "C_lipboard"
msgstr ""

#: clipboardplugin.cpp:173
#, c-format
msgid "Clip Number. %i"
msgstr ""

#: clipboardplugin.cpp:200
msgid "Clipboard Plugin - Add's multiple clips"
msgstr ""

#: clipboardplugin.cpp:201
msgid "French Translation"
msgstr ""

#: clipboardplugin.cpp:206
msgid "Clipboard Plugin"
msgstr ""

#: ../common.h:29
msgid "Apply"
msgstr ""

#: ../common.h:30
msgid "Cancel"
msgstr ""

#: ../common.h:31
msgid "New"
msgstr ""

#: ../common.h:32
msgid "Help"
msgstr ""

#: ../common.h:33
msgid "Open"
msgstr ""

#: ../common.h:34
msgid "Connect"
msgstr ""

#: ../common.h:35
msgid "OK"
msgstr ""
74 changes: 74 additions & 0 deletions KKEdit/plugins/Clipboard/ClipboardPlugin_fr_FR.po
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
# French translations for ClipboardPlugin package
# Traductions françaises du paquet ClipboardPlugin.
# Copyright (C) 2014 THE ClipboardPlugin'S COPYRIGHT HOLDER
# This file is distributed under the same license as the ClipboardPlugin package.
# Automatically generated, 2014.
#
msgid ""
msgstr ""
"Project-Id-Version: ClipboardPlugin 1.2\n"
"Report-Msgid-Bugs-To: \n"
"POT-Creation-Date: 2016-08-23 12:44+0100\n"
"PO-Revision-Date: 2016-08-23 12:46-0000\n"
"Last-Translator: K. D. Hedger <[email protected]>\n"
"Language-Team: none\n"
"Language: fr\n"
"MIME-Version: 1.0\n"
"Content-Type: text/plain; charset=ISO-8859-1\n"
"Content-Transfer-Encoding: 8bit\n"
"Plural-Forms: nplurals=2; plural=(n > 1);\n"
"X-Generator: Poedit 1.6.11\n"

#: clipboardplugin.cpp:166
msgid "C_lipboard"
msgstr "P_resse-papier"

#: clipboardplugin.cpp:173
#, c-format
msgid "Clip Number. %i"
msgstr "Emplacement %i"

#: clipboardplugin.cpp:200
msgid "Clipboard Plugin - Add's multiple clips"
msgstr ""
"Greffon presse-papier - Un presse-papier pour KKEdit avec 10 emplacements"

#: clipboardplugin.cpp:201
msgid "French Translation"
msgstr "Traduction française"

#: ../common.h:28
msgid "Apply"
msgstr "_Appliquer"

#: ../common.h:29
msgid "Cancel"
msgstr "_Annuler"

#: ../common.h:30
msgid "New"
msgstr "Nouveau"

#: ../common.h:31
msgid "Help"
msgstr "Aide"

#: ../common.h:32
msgid "Open"
msgstr "Ouvrir"

#: ../common.h:33
msgid "Connect"
msgstr "Relier"

#: ../common.h:34
msgid "OK"
msgstr "OK"

#: ../common.h:43
msgid ""
"\n"
"More by the same author\n"
msgstr ""
"\n"
"Plus du même auteur\n"
21 changes: 21 additions & 0 deletions KKEdit/plugins/Clipboard/Makefile.am
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
PLUGNAME = clipboard
SONAME = lib$(PLUGNAME)
SRCFILES = $(PLUGNAME).cpp

AUTOMAKE_OPTIONS = subdir-objects

all:
gcc ${EXTRAMAKEFLAGS} $(CONFCXXFLAGS) $(CONFCPPFLAGS) $(CONFLDFLAGS) -fPIC -Wall -g -c $(SRCFILES) $(GLIB_CFLAGS) $(GLIB_LIBS) $(GTK_CFLAGS) $(GTK_LIBS) $(GTKSRC_CFLAGS) $(GTKSRC_LIBS) -DLOCALEDIR=\"${localedir}\" -DDATADIR=\"${pkgdatadir}\" $(DEVMODE) $(USEGTK3) -DGTK_DISABLE_SINGLE_INCLUDES -DGDK_DISABLE_DEPRECATED -DGTK_DISABLE_DEPRECATED -DGSEAL_ENABLE -o $(PLUGNAME).o

gcc -nodefaultlibs -shared -Wl,--version-script=exportmap,-soname,$(SONAME).so -o $(SONAME).so $(PLUGNAME).o -lc

clean:
rm -f *.o *.so||true

distclean:
rm -f *.o *.so Makefile||true

install: all
mkdir -vp $(DESTDIR)$(pkgdatadir)$(GTK3SUFFIX)/plugins-gtk $(DESTDIR)${localedir}/fr_FR/LC_MESSAGES
cp $(SONAME).so $(DESTDIR)$(pkgdatadir)$(GTK3SUFFIX)/plugins-gtk
cp po/fr_FR/LC_MESSAGES/ClipboardPlugin.mo $(DESTDIR)${localedir}/fr_FR/LC_MESSAGES/ClipboardPlugin$(GTK3SUFFIX).mo
Loading

0 comments on commit f0e5559

Please sign in to comment.