Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
GIMP
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
2,771
Issues
2,771
List
Boards
Labels
Service Desk
Milestones
Merge Requests
39
Merge Requests
39
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Incidents
Environments
Packages & Registries
Packages & Registries
Container Registry
Analytics
Analytics
CI / CD
Repository
Value Stream
External Wiki
External Wiki
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
GNOME
GIMP
Commits
dcb5c1f6
Commit
dcb5c1f6
authored
Mar 08, 2000
by
Sven Neumann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ooops, my latest commit broke LANG=C
--Sven
parent
7a263f3f
Changes
11
Hide whitespace changes
Inline
Side-by-side
Showing
11 changed files
with
75 additions
and
83 deletions
+75
-83
ChangeLog
ChangeLog
+5
-0
app/gui/menus.c
app/gui/menus.c
+7
-14
app/menus.c
app/menus.c
+7
-14
app/menus/menus.c
app/menus/menus.c
+7
-14
app/widgets/gimpitemfactory.c
app/widgets/gimpitemfactory.c
+7
-14
plug-ins/perl/po/ChangeLog
plug-ins/perl/po/ChangeLog
+5
-0
plug-ins/perl/po/fr.po
plug-ins/perl/po/fr.po
+1
-1
po-plug-ins/ChangeLog
po-plug-ins/ChangeLog
+5
-0
po-plug-ins/fr.po
po-plug-ins/fr.po
+24
-24
po-script-fu/ChangeLog
po-script-fu/ChangeLog
+5
-0
po-script-fu/fr.po
po-script-fu/fr.po
+2
-2
No files found.
ChangeLog
View file @
dcb5c1f6
Wed Mar 8 23:37:38 CET 2000 Sven Neumann <sven@gimp.org>
* app/menus.c: ooops, my last commit broke LANG=C
This is a quick fix and leaks memory. I'm working on a proper fix.
Wed Mar 8 21:52:51 CET 2000 Sven Neumann <sven@gimp.org>
* app/menus.c: applied and heavily modified a patch from Daniel Egger.
...
...
app/gui/menus.c
View file @
dcb5c1f6
...
...
@@ -1684,6 +1684,7 @@ menu_translate (const gchar *path,
static
gchar
*
menupath
=
NULL
;
GtkItemFactory
*
item_factory
=
NULL
;
gchar
*
retval
;
gchar
*
factory
;
gchar
*
fullpath
;
gchar
*
translation
;
...
...
@@ -1696,12 +1697,12 @@ menu_translate (const gchar *path,
if
(
menupath
)
g_free
(
menupath
);
menupath
=
g_strdup
(
path
);
retval
=
menupath
=
g_strdup
(
path
);
if
((
strstr
(
path
,
"/tearoff1"
)
!=
NULL
)
||
(
strstr
(
path
,
"/---"
)
!=
NULL
)
||
(
strstr
(
path
,
"/MRU"
)
!=
NULL
))
return
menupath
;
return
retval
;
if
(
factory
)
item_factory
=
gtk_item_factory_from_path
(
factory
);
...
...
@@ -1734,7 +1735,6 @@ menu_translate (const gchar *path,
else
break
;
}
g_free
(
complete
);
}
else
{
...
...
@@ -1746,10 +1746,7 @@ menu_translate (const gchar *path,
*/
if
(
strncmp
(
factory
,
translation
,
strlen
(
factory
))
==
0
)
{
g_free
(
menupath
);
menupath
=
g_strdup
(
translation
+
strlen
(
factory
));
if
(
complete
)
g_free
(
translation
);
retval
=
translation
+
strlen
(
factory
);
}
else
{
...
...
@@ -1757,22 +1754,18 @@ menu_translate (const gchar *path,
if
(
complete
)
g_free
(
translation
);
}
g_free
(
fullpath
);
}
else
{
translation
=
gettext
(
menupath
);
if
(
*
translation
==
'/'
)
{
g_free
(
menupath
);
menupath
=
g_strdup
(
translation
);
}
retval
=
translation
;
else
g_warning
(
"bad translation for menupath: %s"
,
menupath
);
}
return
menupath
;
return
retval
;
}
#endif
/* ENABLE_NLS */
...
...
app/menus.c
View file @
dcb5c1f6
...
...
@@ -1684,6 +1684,7 @@ menu_translate (const gchar *path,
static
gchar
*
menupath
=
NULL
;
GtkItemFactory
*
item_factory
=
NULL
;
gchar
*
retval
;
gchar
*
factory
;
gchar
*
fullpath
;
gchar
*
translation
;
...
...
@@ -1696,12 +1697,12 @@ menu_translate (const gchar *path,
if
(
menupath
)
g_free
(
menupath
);
menupath
=
g_strdup
(
path
);
retval
=
menupath
=
g_strdup
(
path
);
if
((
strstr
(
path
,
"/tearoff1"
)
!=
NULL
)
||
(
strstr
(
path
,
"/---"
)
!=
NULL
)
||
(
strstr
(
path
,
"/MRU"
)
!=
NULL
))
return
menupath
;
return
retval
;
if
(
factory
)
item_factory
=
gtk_item_factory_from_path
(
factory
);
...
...
@@ -1734,7 +1735,6 @@ menu_translate (const gchar *path,
else
break
;
}
g_free
(
complete
);
}
else
{
...
...
@@ -1746,10 +1746,7 @@ menu_translate (const gchar *path,
*/
if
(
strncmp
(
factory
,
translation
,
strlen
(
factory
))
==
0
)
{
g_free
(
menupath
);
menupath
=
g_strdup
(
translation
+
strlen
(
factory
));
if
(
complete
)
g_free
(
translation
);
retval
=
translation
+
strlen
(
factory
);
}
else
{
...
...
@@ -1757,22 +1754,18 @@ menu_translate (const gchar *path,
if
(
complete
)
g_free
(
translation
);
}
g_free
(
fullpath
);
}
else
{
translation
=
gettext
(
menupath
);
if
(
*
translation
==
'/'
)
{
g_free
(
menupath
);
menupath
=
g_strdup
(
translation
);
}
retval
=
translation
;
else
g_warning
(
"bad translation for menupath: %s"
,
menupath
);
}
return
menupath
;
return
retval
;
}
#endif
/* ENABLE_NLS */
...
...
app/menus/menus.c
View file @
dcb5c1f6
...
...
@@ -1684,6 +1684,7 @@ menu_translate (const gchar *path,
static
gchar
*
menupath
=
NULL
;
GtkItemFactory
*
item_factory
=
NULL
;
gchar
*
retval
;
gchar
*
factory
;
gchar
*
fullpath
;
gchar
*
translation
;
...
...
@@ -1696,12 +1697,12 @@ menu_translate (const gchar *path,
if
(
menupath
)
g_free
(
menupath
);
menupath
=
g_strdup
(
path
);
retval
=
menupath
=
g_strdup
(
path
);
if
((
strstr
(
path
,
"/tearoff1"
)
!=
NULL
)
||
(
strstr
(
path
,
"/---"
)
!=
NULL
)
||
(
strstr
(
path
,
"/MRU"
)
!=
NULL
))
return
menupath
;
return
retval
;
if
(
factory
)
item_factory
=
gtk_item_factory_from_path
(
factory
);
...
...
@@ -1734,7 +1735,6 @@ menu_translate (const gchar *path,
else
break
;
}
g_free
(
complete
);
}
else
{
...
...
@@ -1746,10 +1746,7 @@ menu_translate (const gchar *path,
*/
if
(
strncmp
(
factory
,
translation
,
strlen
(
factory
))
==
0
)
{
g_free
(
menupath
);
menupath
=
g_strdup
(
translation
+
strlen
(
factory
));
if
(
complete
)
g_free
(
translation
);
retval
=
translation
+
strlen
(
factory
);
}
else
{
...
...
@@ -1757,22 +1754,18 @@ menu_translate (const gchar *path,
if
(
complete
)
g_free
(
translation
);
}
g_free
(
fullpath
);
}
else
{
translation
=
gettext
(
menupath
);
if
(
*
translation
==
'/'
)
{
g_free
(
menupath
);
menupath
=
g_strdup
(
translation
);
}
retval
=
translation
;
else
g_warning
(
"bad translation for menupath: %s"
,
menupath
);
}
return
menupath
;
return
retval
;
}
#endif
/* ENABLE_NLS */
...
...
app/widgets/gimpitemfactory.c
View file @
dcb5c1f6
...
...
@@ -1684,6 +1684,7 @@ menu_translate (const gchar *path,
static
gchar
*
menupath
=
NULL
;
GtkItemFactory
*
item_factory
=
NULL
;
gchar
*
retval
;
gchar
*
factory
;
gchar
*
fullpath
;
gchar
*
translation
;
...
...
@@ -1696,12 +1697,12 @@ menu_translate (const gchar *path,
if
(
menupath
)
g_free
(
menupath
);
menupath
=
g_strdup
(
path
);
retval
=
menupath
=
g_strdup
(
path
);
if
((
strstr
(
path
,
"/tearoff1"
)
!=
NULL
)
||
(
strstr
(
path
,
"/---"
)
!=
NULL
)
||
(
strstr
(
path
,
"/MRU"
)
!=
NULL
))
return
menupath
;
return
retval
;
if
(
factory
)
item_factory
=
gtk_item_factory_from_path
(
factory
);
...
...
@@ -1734,7 +1735,6 @@ menu_translate (const gchar *path,
else
break
;
}
g_free
(
complete
);
}
else
{
...
...
@@ -1746,10 +1746,7 @@ menu_translate (const gchar *path,
*/
if
(
strncmp
(
factory
,
translation
,
strlen
(
factory
))
==
0
)
{
g_free
(
menupath
);
menupath
=
g_strdup
(
translation
+
strlen
(
factory
));
if
(
complete
)
g_free
(
translation
);
retval
=
translation
+
strlen
(
factory
);
}
else
{
...
...
@@ -1757,22 +1754,18 @@ menu_translate (const gchar *path,
if
(
complete
)
g_free
(
translation
);
}
g_free
(
fullpath
);
}
else
{
translation
=
gettext
(
menupath
);
if
(
*
translation
==
'/'
)
{
g_free
(
menupath
);
menupath
=
g_strdup
(
translation
);
}
retval
=
translation
;
else
g_warning
(
"bad translation for menupath: %s"
,
menupath
);
}
return
menupath
;
return
retval
;
}
#endif
/* ENABLE_NLS */
...
...
plug-ins/perl/po/ChangeLog
View file @
dcb5c1f6
Wed Mar 8 22:51:30 CET 2000 Sven Neumann <sven@gimp.org>
* fr.po: s/<Images>/<Image>/
s/<Boite a utils>/<Toolbox>/
2000-03-09 Shirasaki Yasuhiro <yasuhiro@gnome.gr.jp>
* ja.po: added japanese translation.
...
...
plug-ins/perl/po/fr.po
View file @
dcb5c1f6
...
...
@@ -98,7 +98,7 @@ msgid "Load"
msgstr "Charger"
msgid "<Image>/Filters/Logulator/Basic II"
msgstr "<Image
s
>/Filtres/Logomatic/Basique II"
msgstr "<Image>/Filtres/Logomatic/Basique II"
msgid "illegal parasite specification, reference expected"
msgstr ""
...
...
po-plug-ins/ChangeLog
View file @
dcb5c1f6
Wed Mar 8 22:51:30 CET 2000 Sven Neumann <sven@gimp.org>
* fr.po: s/<Images>/<Image>/
s/<Boite a utils>/<Toolbox>/
2000-03-09 Shirasaki Yasuhiro <yasuhiro@gnome.gr.jp>
* ja.po: Updated Japanese translation.
...
...
po-plug-ins/fr.po
View file @
dcb5c1f6
...
...
@@ -2380,7 +2380,7 @@ msgstr "Nombre de segments"
#: plug-ins/common/blur.c:204
msgid "
<Image>
/Filters/Blur/Blur..."
msgstr "
<Image
s
>
/Filtres/Flou/Flou..."
msgstr "
<Image>
/Filtres/Flou/Flou..."
#: plug-ins/common/blur.c:657 plug-ins/common/plasma.c:324
#: plug-ins/common/randomize.c:745 plug-ins/common/snoise.c:556
...
...
@@ -2406,7 +2406,7 @@ msgstr "Nombre de fois o
#: plug-ins/common/bumpmap.c:339
msgid "
<Image>
/Filters/Map/Bump Map..."
msgstr "
<Image
s
>
/Filtres/Cartes/Carte en relief..."
msgstr "
<Image>
/Filtres/Cartes/Carte en relief..."
#: plug-ins/common/bumpmap.c:474
msgid "Bump-mapping..."
...
...
@@ -3513,7 +3513,7 @@ msgstr "Centre de l'effet"
#: plug-ins/common/fractaltrace.c:126
msgid "
<Image>
/Filters/Map/Fractal Trace..."
msgstr "
<Image
s
>
/Filtres/Cartes/Trac de fractale..."
msgstr "
<Image>
/Filtres/Cartes/Trac de fractale..."
#: plug-ins/common/fractaltrace.c:451 plug-ins/common/fractaltrace.c:733
msgid "Fractal Trace"
...
...
@@ -3539,7 +3539,7 @@ msgstr "Param
#: plug-ins/common/gauss_iir.c:163
msgid "
<Image>
/Filters/Blur/Gaussian Blur (IIR)..."
msgstr "
<Image
s
>
/Filtres/Flou/Flou gaussien (IIR)..."
msgstr "
<Image>
/Filtres/Flou/Flou gaussien (IIR)..."
#: plug-ins/common/gauss_iir.c:236
msgid "gauss_iir: you must specify either horizontal or vertical (or both)"
...
...
@@ -3581,7 +3581,7 @@ msgstr "Verticalement :"
#: plug-ins/common/gauss_rle.c:160
msgid "
<Image>
/Filters/Blur/Gaussian Blur (RLE)..."
msgstr "
<Image
s
>
/Filtres/Flou/Flou gaussien (RLE)..."
msgstr "
<Image>
/Filtres/Flou/Flou gaussien (RLE)..."
#: plug-ins/common/gauss_rle.c:232
msgid "gauss_rle: you must specify either horizontal or vertical (or both)"
...
...
@@ -4089,7 +4089,7 @@ msgstr "produire illusion"
#: plug-ins/common/illusion.c:115
msgid "
<Image>
/Filters/Map/Illusion..."
msgstr "
<Image
s
>
/Filtres/Cartes/Illusion..."
msgstr "
<Image>
/Filtres/Cartes/Illusion..."
#. dialog window
#: plug-ins/common/illusion.c:313
...
...
@@ -4553,7 +4553,7 @@ msgstr ""
#: plug-ins/common/mblur.c:170
msgid "
<Image>
/Filters/Blur/Motion Blur..."
msgstr "
<Image
s
>
/Filtres/Flou/Flou de Dplacement..."
msgstr "
<Image>
/Filtres/Flou/Flou de Dplacement..."
#: plug-ins/common/mblur.c:632 plug-ins/common/unsharp.c:288
msgid "Blurring..."
...
...
@@ -4673,7 +4673,7 @@ msgstr "Sur-
#: plug-ins/common/nlfilt.c:157
msgid "
<Image>
/Filters/Enhance/NL Filter..."
msgstr "
<Image
s
>
/Filtres/Amliorer/Filtre NL..."
msgstr "
<Image>
/Filtres/Amliorer/Filtre NL..."
#: plug-ins/common/nlfilt.c:267 plug-ins/common/nlfilt.c:354
msgid "NL Filter"
...
...
@@ -4863,7 +4863,7 @@ msgstr "Sauver en tant que motif"
#: plug-ins/common/pixelize.c:166
msgid "
<Image>
/Filters/Blur/Pixelize..."
msgstr "
<Image
s
>
/Filtres/Flou/Pixeliser..."
msgstr "
<Image>
/Filtres/Flou/Pixeliser..."
#: plug-ins/common/pixelize.c:240
msgid "Pixelizing..."
...
...
@@ -4879,7 +4879,7 @@ msgstr "Largeur de pixel :"
#: plug-ins/common/plasma.c:170
msgid "
<Image>
/Filters/Render/Clouds/Plasma..."
msgstr "
<Image
s
>
/Filtres/Rendu/Nuages/Plasma..."
msgstr "
<Image>
/Filtres/Rendu/Nuages/Plasma..."
#: plug-ins/common/plasma.c:247
msgid "Plasma..."
...
...
@@ -4911,7 +4911,7 @@ msgstr "Proc
#: plug-ins/common/plugindetails.c:98
msgid "
<Toolbox>
/Xtns/Plugin Details..."
msgstr "
<
Bote
Outils
>
/Extensions/Dtails des Modules..."
msgstr "
<
Toolbox
>
/Extensions/Dtails des Modules..."
#: plug-ins/common/plugindetails.c:213
msgid "Details
<
<"
...
...
@@ -5315,7 +5315,7 @@ msgstr "Glissement al
#: plug-ins/common/randomize.c:241
msgid "
<Image>
/Filters/Noise/Hurl..."
msgstr "
<Image
s
>
/Filtres/Perturbations/Lancer..."
msgstr "
<Image>
/Filtres/Perturbations/Lancer..."
#: plug-ins/common/randomize.c:253
msgid "
<Image>
/Filters/Noise/Pick..."
...
...
@@ -5323,7 +5323,7 @@ msgstr "<Image>/Filtres/Perturbations/Choisir..."
#: plug-ins/common/randomize.c:265
msgid "
<Image>
/Filters/Noise/Slur..."
msgstr "
<Image
s
>
/Filtres/Perturbations/Mlanger..."
msgstr "
<Image>
/Filtres/Perturbations/Mlanger..."
#: plug-ins/common/randomize.c:752
msgid "Randomization (%):"
...
...
@@ -5551,7 +5551,7 @@ msgstr ""
#: plug-ins/common/screenshot.c:146 plug-ins/winsnap/winsnap.c:1042
msgid "
<Toolbox>
/File/Acquire/Screen Shot..."
msgstr "
<
Bote
Outils
>
/Fichier/Acquisition/Screen Shot..."
msgstr "
<
Toolbox
>
/Fichier/Acquisition/Screen Shot..."
#. Main Dialog
#: plug-ins/common/screenshot.c:393
...
...
@@ -5585,7 +5585,7 @@ msgstr "Secondes de d
#: plug-ins/common/sel_gauss.c:122
msgid "
<Image>
/Filters/Blur/Selective Gaussian Blur..."
msgstr "
<Image
s
>
/Filtres/Flou/Flou Gaussien Slectif..."
msgstr "
<Image>
/Filtres/Flou/Flou Gaussien Slectif..."
#: plug-ins/common/sel_gauss.c:198 plug-ins/common/sel_gauss.c:241
msgid "Selective Gaussian Blur"
...
...
@@ -5620,7 +5620,7 @@ msgstr "Ce filtre effectue une convolution sur l'image de fa
# affiler ?
#: plug-ins/common/sharpen.c:168
msgid "
<Image>
/Filters/Enhance/Sharpen..."
msgstr "
<Image
s
>
/Filtres/Appliquer/Augmenter les contrastes..."
msgstr "
<Image>
/Filtres/Appliquer/Augmenter les contrastes..."
#.
#. * Let the user know what we're doing...
...
...
@@ -6149,7 +6149,7 @@ msgstr "Pack Bits"
#: plug-ins/common/tile.c:121
msgid "
<Image>
/Filters/Map/Tile..."
msgstr "
<Image
s
>
/Filtres/Carte/Morceler..."
msgstr "
<Image>
/Filtres/Carte/Morceler..."
#: plug-ins/common/tile.c:198 plug-ins/common/tileit.c:334
msgid "Tiling..."
...
...
@@ -6166,7 +6166,7 @@ msgstr "Morcelle avec une Nouvelle Taille"
#: plug-ins/common/tileit.c:236
msgid "
<Image>
/Filters/Map/Small Tiles..."
msgstr "
<Image
s
>
/Filtres/Carte/Petit Morceaux..."
msgstr "
<Image>
/Filtres/Carte/Petit Morceaux..."
#. Get the preview image and store it also set has_alpha
#. Start buildng the dialog up
...
...
@@ -6210,7 +6210,7 @@ msgstr "Param
#: plug-ins/common/tiler.c:65
msgid "
<Image>
/Filters/Map/Make Seamless"
msgstr "
<Image
s
>
/Filtres/Carte/Homogniser"
msgstr "
<Image>
/Filtres/Carte/Homogniser"
#: plug-ins/common/tiler.c:170
msgid "Tiler..."
...
...
@@ -6330,7 +6330,7 @@ msgstr "Enregistrer l'unit
#: plug-ins/common/unsharp.c:184
msgid "
<Image>
/Filters/Enhance/Unsharp Mask..."
msgstr "
<Image
s
>
/Filtres/Amliorer/Enlever le Relief..."
msgstr "
<Image>
/Filtres/Amliorer/Enlever le Relief..."
#: plug-ins/common/unsharp.c:394
msgid "Merging..."
...
...
@@ -6646,7 +6646,7 @@ msgstr "<Image>/
#: plug-ins/common/winclipboard.c:132
msgid "
<Toolbox>
/File/Acquire/From Clipboard"
msgstr "
<
Bote
Outils
>
/Fichier/Acqurir/ partir du Presse-Papier"
msgstr "
<
Toolbox
>
/Fichier/Acqurir/ partir du Presse-Papier"
#: plug-ins/common/winclipboard.c:307
msgid "Copying ..."
...
...
@@ -12843,7 +12843,7 @@ msgstr "Transfert des don
#: plug-ins/webbrowser/webbrowser.c:124
msgid "
<Toolbox>
/Xtns/Web Browser/Open URL..."
msgstr "
<
Bote
Outils
>
/Extensions/Navigateur Web/Ouvrir l'URL..."
msgstr "
<
Toolbox
>
/Extensions/Navigateur Web/Ouvrir l'URL..."
#: plug-ins/webbrowser/webbrowser.c:260
msgid "Open URL"
...
...
@@ -13189,10 +13189,10 @@ msgstr "Erreur, le fichier de propri
#~ msgstr "Fichier de log du serveur :"
#~ msgid "
<Toolbox>
/Xtns/Script-Fu/Console..."
#~ msgstr "
<
Bote
Outils
>
/Extensions/Script-Fu/Console..."
#~ msgstr "
<
Toolbox
>
/Extensions/Script-Fu/Console..."
#~ msgid "
<Toolbox>
/Xtns/Script-Fu/Server..."
#~ msgstr "
<
Bote
Outils
>
/Extensions/Script-Fu/Serveur..."
#~ msgstr "
<
Toolbox
>
/Extensions/Script-Fu/Serveur..."
#~ msgid "Re-read all available scripts"
#~ msgstr "Relire tous les scripts disponibles"
...
...
po-script-fu/ChangeLog
View file @
dcb5c1f6
Wed Mar 8 22:51:30 CET 2000 Sven Neumann <sven@gimp.org>
* fr.po: s/<Images>/<Image>/
s/<Boite a utils>/<Toolbox>/
2000-03-08 Kjartan Maraas <kmaraas@online.no>
* no.po: Updated Norwegian translation.
...
...
po-script-fu/fr.po
View file @
dcb5c1f6
...
...
@@ -162,11 +162,11 @@ msgstr "Fichier de log du serveur :"
#: plug-ins/script-fu/script-fu.c:165
msgid "<Toolbox>/Xtns/Script-Fu/Console..."
msgstr "<
Bote Outils
>/Extensions/Script-Fu/Console..."
msgstr "<
Toolbox
>/Extensions/Script-Fu/Console..."
#: plug-ins/script-fu/script-fu.c:177
msgid "<Toolbox>/Xtns/Script-Fu/Server..."
msgstr "<
Bote Outils
>/Extensions/Script-Fu/Serveur..."
msgstr "<
Toolbox
>/Extensions/Script-Fu/Serveur..."
#: plug-ins/script-fu/script-fu.c:1007 plug-ins/script-fu/script-fu.c:1008
msgid "Re-read all available scripts"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment