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,756
Issues
2,756
List
Boards
Labels
Service Desk
Milestones
Merge Requests
37
Merge Requests
37
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
d31c37cc
Commit
d31c37cc
authored
May 13, 2000
by
Sven Neumann
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
updated the update.sh scripts to the new version that was checked into
po a few days ago --Sven
parent
dc583d1b
Changes
6
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
131 additions
and
12 deletions
+131
-12
po-libgimp/ChangeLog
po-libgimp/ChangeLog
+4
-0
po-libgimp/update.sh
po-libgimp/update.sh
+38
-4
po-plug-ins/ChangeLog
po-plug-ins/ChangeLog
+4
-0
po-plug-ins/update.sh
po-plug-ins/update.sh
+38
-4
po-script-fu/ChangeLog
po-script-fu/ChangeLog
+4
-0
po-script-fu/update.sh
po-script-fu/update.sh
+43
-4
No files found.
po-libgimp/ChangeLog
View file @
d31c37cc
2000-05-13 Sven Neumann <sven@gimp.org>
* update.sh: updated update.sh
2000-05-13 Kjartan Maraas <kmaraas@online.no>
* no.po: Updated Norwegian translation.
...
...
po-libgimp/update.sh
View file @
d31c37cc
#!/bin/sh
xgettext
--default-domain
=
gimp-libgimp
--directory
=
..
\
PACKAGE
=
"gimp-libgimp"
if
[
"x
$1
"
=
"x--help"
]
;
then
echo
Usage: ./update.sh langcode
echo
--help
display this
help
and
exit
echo
echo
Examples of use:
echo
./update.sh
-----
just creates a new pot file from the
source
echo
./update.sh da
--
created new pot file and updated the da.po file
elif
[
"x
$1
"
=
"x"
]
;
then
echo
"Building the
$PACKAGE
.pot ..."
xgettext
--default-domain
=
$PACKAGE
--directory
=
..
\
--add-comments
--keyword
=
_
--keyword
=
N_
\
--files-from
=
./POTFILES.in
\
&&
test
!
-f
gimp-libgimp.po
\
||
(
rm
-f
./gimp-libgimp.pot
\
&&
mv
gimp-libgimp.po ./gimp-libgimp.pot
)
&&
test
!
-f
$PACKAGE
.po
\
||
(
rm
-f
./
$PACKAGE
.pot
\
&&
mv
$PACKAGE
.po ./
$PACKAGE
.pot
)
;
else
xgettext
--default-domain
=
$PACKAGE
--directory
=
..
\
--add-comments
--keyword
=
_
--keyword
=
N_
\
--files-from
=
./POTFILES.in
\
&&
test
!
-f
$PACKAGE
.po
\
||
(
rm
-f
./PACKAGE.pot
\
&&
mv
$PACKAGE
.po ./
$PACKAGE
.pot
)
;
echo
"Building the
$PACKAGE
.pot ..."
echo
"Now merging
$1
.po with
$PACKAGE
.pot, and creating an updated
$1
.po ..."
mv
$1
.po
$1
.po.old
&&
msgmerge
$1
.po.old
$PACKAGE
.pot
-o
$1
.po
\
&&
rm
$1
.po.old
;
msgfmt
--statistics
$1
.po
fi
;
po-plug-ins/ChangeLog
View file @
d31c37cc
2000-05-13 Sven Neumann <sven@gimp.org>
* update.sh: updated update.sh
2000-05-13 Kjartan Maraas <kmaraas@online.no>
* no.po: Updated Norwegian translation.
...
...
po-plug-ins/update.sh
View file @
d31c37cc
#!/bin/sh
xgettext
--default-domain
=
gimp-std-plugins
--directory
=
..
\
PACKAGE
=
"gimp-std-plugins"
if
[
"x
$1
"
=
"x--help"
]
;
then
echo
Usage: ./update.sh langcode
echo
--help
display this
help
and
exit
echo
echo
Examples of use:
echo
./update.sh
-----
just creates a new pot file from the
source
echo
./update.sh da
--
created new pot file and updated the da.po file
elif
[
"x
$1
"
=
"x"
]
;
then
echo
"Building the
$PACKAGE
.pot ..."
xgettext
--default-domain
=
$PACKAGE
--directory
=
..
\
--add-comments
--keyword
=
_
--keyword
=
N_
\
--files-from
=
./POTFILES.in
\
&&
test
!
-f
gimp-std-plugins.po
\
||
(
rm
-f
./gimp-std-plugins.pot
\
&&
mv
gimp-std-plugins.po ./gimp-std-plugins.pot
)
&&
test
!
-f
$PACKAGE
.po
\
||
(
rm
-f
./
$PACKAGE
.pot
\
&&
mv
$PACKAGE
.po ./
$PACKAGE
.pot
)
;
else
xgettext
--default-domain
=
$PACKAGE
--directory
=
..
\
--add-comments
--keyword
=
_
--keyword
=
N_
\
--files-from
=
./POTFILES.in
\
&&
test
!
-f
$PACKAGE
.po
\
||
(
rm
-f
./PACKAGE.pot
\
&&
mv
$PACKAGE
.po ./
$PACKAGE
.pot
)
;
echo
"Building the
$PACKAGE
.pot ..."
echo
"Now merging
$1
.po with
$PACKAGE
.pot, and creating an updated
$1
.po ..."
mv
$1
.po
$1
.po.old
&&
msgmerge
$1
.po.old
$PACKAGE
.pot
-o
$1
.po
\
&&
rm
$1
.po.old
;
msgfmt
--statistics
$1
.po
fi
;
po-script-fu/ChangeLog
View file @
d31c37cc
2000-05-13 Sven Neumann <sven@gimp.org>
* update.sh: updated update.sh
2000-05-13 Kjartan Maraas <kmaraas@online.no>
* no.po: Updated Norwegian translation.
...
...
po-script-fu/update.sh
View file @
d31c37cc
#!/bin/sh
xgettext
--default-domain
=
gimp-script-fu
--directory
=
..
\
PACKAGE
=
"gimp-script-fu"
if
[
"x
$1
"
=
"x--help"
]
;
then
echo
Usage: ./update.sh langcode
echo
--help
display this
help
and
exit
echo
echo
Examples of use:
echo
./update.sh
-----
just creates a new pot file from the
source
echo
./update.sh da
--
created new pot file and updated the da.po file
elif
[
"x
$1
"
=
"x"
]
;
then
echo
"Building the
$PACKAGE
.pot ..."
xgettext
--default-domain
=
$PACKAGE
--directory
=
..
\
--add-comments
--keyword
=
_
--keyword
=
N_
\
--files-from
=
./POTFILES.in
\
&&
./script-fu-xgettext
\
../plug-ins/script-fu/scripts/
*
.scm
\
../plug-ins/gap/sel-to-anim-img.scm
\
../plug-ins/webbrowser/web-browser.scm
\
>>
gimp-script-fu.po
\
&&
test
!
-f
$PACKAGE
.po
\
||
(
rm
-f
./
$PACKAGE
.pot
\
&&
mv
$PACKAGE
.po ./
$PACKAGE
.pot
)
;
else
xgettext
--default-domain
=
$PACKAGE
--directory
=
..
\
--add-comments
--keyword
=
_
--keyword
=
N_
\
--files-from
=
./POTFILES.in
\
&&
./script-fu-xgettext
\
...
...
@@ -8,6 +37,16 @@ xgettext --default-domain=gimp-script-fu --directory=.. \
../plug-ins/gap/sel-to-anim-img.scm
\
../plug-ins/webbrowser/web-browser.scm
\
>>
gimp-script-fu.po
\
&&
test
!
-f
gimp-script-fu.po
\
||
(
rm
-f
./gimp-script-fu.pot
\
&&
mv
gimp-script-fu.po ./gimp-script-fu.pot
)
&&
test
!
-f
$PACKAGE
.po
\
||
(
rm
-f
./
$PACKAGE
.pot
\
&&
mv
$PACKAGE
.po ./
$PACKAGE
.pot
)
;
echo
"Building the
$PACKAGE
.pot ..."
echo
"Now merging
$1
.po with
$PACKAGE
.pot, and creating an updated
$1
.po ..."
mv
$1
.po
$1
.po.old
&&
msgmerge
$1
.po.old
$PACKAGE
.pot
-o
$1
.po
\
&&
rm
$1
.po.old
;
msgfmt
--statistics
$1
.po
fi
;
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