extensions: Lua and Python 3 goat-exercise procedure name consistency.

All our plug-ins are named "plug-in-*", and in particular our goat
exercise plug-ins are all named "plug-in-goat-exercise-*". Only the
Python 3 and Lua were named differently. This fixes the inconsistency.
This commit is contained in:
Jehan 2020-10-17 21:48:12 +02:00
parent 228ad503ad
commit 22b516a1cc
2 changed files with 2 additions and 2 deletions

View File

@ -136,7 +136,7 @@ end
Goat:class('Exercise', Gimp.PlugIn)
function Goat.Exercise:do_query_procedures()
return { 'goat-exercise-lua' }
return { 'plug-in-goat-exercise-lua' }
end
function Goat.Exercise:do_create_procedure(name)

View File

@ -36,7 +36,7 @@ class Goat (Gimp.PlugIn):
self.set_translation_domain("gimp30-python",
Gio.file_new_for_path(Gimp.locale_directory()))
return [ "goat-exercise-python" ]
return [ "plug-in-goat-exercise-python" ]
def do_create_procedure(self, name):
procedure = Gimp.ImageProcedure.new(self, name,