Added Finnish translation Added screenshots Added translated screenshot

2008-09-18  Tommi Vainikainen  <thv@iki.fi>

	* Makefile.am, fi/fi.po: Added Finnish translation
	* fi/figures/*.png: Added screenshots
	* fi/l10n_scripts/*: Added translated screenshot scripts

svn path=/trunk/; revision=1442
This commit is contained in:
Tommi Vainikainen 2008-09-18 19:35:06 +00:00 committed by Tommi Vainikainen
parent 017e426bca
commit 7a4b17df76
27 changed files with 1700 additions and 1 deletions

77
.bzrignore Normal file
View File

@ -0,0 +1,77 @@
aclocal.m4
autom4te.cache
*.bz2
compile
config.h
config.h.in
config.log
config.status
configure
depcomp
gnome-doc-utils.make
*.gz
INSTALL
install-sh
intltool-extract
intltool-extract.in
intltool-merge
intltool-merge.in
intltool-modules
intltool-update
intltool-update.in
Makefile
Makefile.in
missing
mkinstalldirs
stamp-h
stamp-h1
stamp-h.in
zenity.spec
data/Makefile
data/Makefile.in
help/C/Makefile
help/C/Makefile.in
help/C/omf_timestamp
help/C/zenity-C.omf.out
help/es/.xml2po.mo
help/es/zenity.xml
help/fr/.xml2po.mo
help/fr/zenity.xml
help/sr/*.in
help/sr/Makefile
help/sr/*.out
help/sr/omf_timestamp
help/uk/.xml2po.mo
help/uk/zenity.xml
help/Makefile
help/Makefile.in
help/zenity-*.omf
po/*.gmo
po/*.mo
po/*.pot
po/Makefile
po/Makefile.in
po/Makefile.in.in
po/POTFILES
po/cat-id-tbl.c
po/stamp-cat-id
po/po2tbl.sed
po/po2tbl.sed.in
po/messages
po/missing
po/stamp-it
src/zenity.gladep
src/zenity
src/Makefile.in
src/Makefile
src/gdialog
help/zenity.pot
src/.deps
help/*/.xml2po.mo
help/bg/zenity.xml
help/de/zenity.xml
help/en_GB/zenity.xml
help/fi/zenity.xml
help/oc/zenity.xml
help/ru/zenity.xml
help/sv/zenity.xml

View File

@ -1,3 +1,9 @@
2008-09-18 Tommi Vainikainen <thv@iki.fi>
* Makefile.am, fi/fi.po: Added Finnish translation
* fi/figures/*.png: Added screenshots
* fi/l10n_scripts/*: Added translated screenshot scripts
2008-09-12 Mario Blättermann <mariobl@svn.gnome.org>
* de/de.po: Deleted unneeded fuzzies in German translation

View File

@ -6,4 +6,4 @@ DOC_ENTITIES = legal.xml
DOC_INCLUDES =
DOC_FIGURES = figures/zenity-calendar-screenshot.png figures/zenity-entry-screenshot.png figures/zenity-error-screenshot.png figures/zenity-fileselection-screenshot.png figures/zenity-information-screenshot.png figures/zenity-list-screenshot.png figures/zenity-notification-screenshot.png figures/zenity-progress-screenshot.png figures/zenity-question-screenshot.png figures/zenity-text-screenshot.png figures/zenity-warning-screenshot.png
DOC_LINGUAS = bg de en_GB es fr oc ru sv uk
DOC_LINGUAS = bg de en_GB es fi fr oc ru sv uk

1505
help/fi/fi.po Normal file

File diff suppressed because it is too large Load Diff

Binary file not shown.

After

Width:  |  Height:  |  Size: 24 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 7.8 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.3 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 65 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 11 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 22 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 3.4 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 8.2 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 10 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 31 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 9.2 KiB

View File

@ -0,0 +1,11 @@
Bazaar GNOME-kehittäjille
=========================
Kehittäjille, jotka haluavat tehostaa GNOME-työskentelyään,
suositellaan Bazaar-versionhallinan käyttöä. Tätä varten on pystytetty
palvelin (bzr-playground.gnome.org), jossa voidaan julkaista omia
kehityshaaroja. Kuka tahansa hakkeri, jolle on myönnetty
Subversion-oikeudet, voi kirjautua palvelimelle samalla SSH-avaimella.
Tämä palvelin tarjoaa täyttä peiliä GNOME:n svn-varastoista
bzr-muodossa. Loki peilausprosessista on saatavilla osoitteessa
http://bzr-playground.gnome.org/.mirror-log.

View File

@ -0,0 +1,10 @@
#!/bin/sh
if zenity --calendar \
--title="Valitse päivä" \
--text="Napsauta päivämäärää valitsemaan päivä." \
--day=10 --month=8 --year=2004
then echo $?
else echo "Päivää ei valittu"
fi

4
help/fi/l10n_scripts/error.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
zenity --error \
--text="Tiedostoa /var/log/syslog ei löytynyt."

13
help/fi/l10n_scripts/filesel.sh Executable file
View File

@ -0,0 +1,13 @@
#!/bin/sh
FILE=`zenity --file-selection --title="Valitse tiedosto"`
case $? in
0)
echo "\"$FILE\" valittu.";;
1)
echo "Tiedostoa ei valittu.";;
-1)
echo "Tiedostoa ei valittu.";;
esac

4
help/fi/l10n_scripts/info.sh Executable file
View File

@ -0,0 +1,4 @@
#!/bin/bash
zenity --info \
--text="Yhdistäminen valmis. Päivitetty 3/10 tiedostoa."

8
help/fi/l10n_scripts/list.sh Executable file
View File

@ -0,0 +1,8 @@
#!/bin/sh
zenity --list \
--title="Valitse viat joita haluat katsoa" \
--column="Vikanumero" --column="Vakavuus" --column="Kuvaus" \
992383 normaali "GtkTreeView kaatuu monivalinnoissa" \
293823 korkea "GNOME-sanakirja ei osaa käyttää välipalvelinta" \
393823 kriittinen "Valikkojen muokaus ei toimi GNOME 2.0:ssa"

View File

@ -0,0 +1,5 @@
#!/bin/sh
zenity --notification\
--window-icon="info" \
--text="Järjestelmän päivitys on välttämätön!"

View File

@ -0,0 +1,21 @@
#!/bin/sh
(
echo "10" ; sleep 1
echo "# Päivitetään postilokeja" ; sleep 1
echo "20" ; sleep 1
echo "# Nollataan cron-töitä" ; sleep 1
echo "50" ; sleep 1
echo "Tämä rivi vain ohitetaan" ; sleep 1
echo "75" ; sleep 1
echo "# Uudelleenkäynnistetään järjestelmä" ; sleep 1
echo "100" ; sleep 1
) |
zenity --progress \
--title="Päivitetään järjestelmälokeja" \
--text="Tutkitaan postilokeja..." \
--percentage=0
if [ "$?" = -1 ] ; then
zenity --error \
--text="Päivitys keskeytetty."
fi

View File

@ -0,0 +1,4 @@
#!/bin/bash
zenity --question \
--text="Haluatko varmasti jatkaa?"

View File

@ -0,0 +1,11 @@
#!/bin/sh
if zenity --entry \
--title="Lisää syöte" \
--text="Syötä _salasanasi:" \
--entry-text "salasana" \
--hide-text; then
echo $?
else
echo "Salasanaa ei syötetty"
fi

View File

@ -0,0 +1,16 @@
#!/bin/sh
FILE=`zenity --file-selection \
--title="Valitse tiedosto"`
case $? in
0)
zenity --text-info \
--title=$FILE \
--filename=$FILE \
--editable 2&gt;/tmp/tmp.txt;;
1)
echo "Tiedostoa ei valittu.";;
-1)
echo "Tiedostoa ei valittu.";;
esac

View File

@ -0,0 +1,4 @@
#!/bin/bash
zenity --warning \
--text="Irrota virtajohto sähköiskujen välttämiseksi."