aboutsummaryrefslogtreecommitdiffstats
path: root/czech/international
diff options
context:
space:
mode:
authorJuraj Kubelka <cesta>2004-09-07 09:31:04 +0000
committerJuraj Kubelka <cesta>2004-09-07 09:31:04 +0000
commit1930635d3bf7f53ae8a9e58c7d3d52af2d24090e (patch)
tree86a8c07bafa540aeffbfdcbfa43a43d81ed02a28 /czech/international
parentd9689d7799c97d5f4c46fc6bf8472e80dfa47081 (diff)
Translator Juraj Kubelka information in
international/czech/translator.db.pl. CVS version numbers czech/international/czech/translator.db.pl: INITIAL -> 1.1
Diffstat (limited to 'czech/international')
-rw-r--r--czech/international/czech/translator.db.pl44
1 files changed, 44 insertions, 0 deletions
diff --git a/czech/international/czech/translator.db.pl b/czech/international/czech/translator.db.pl
new file mode 100644
index 00000000000..949ae58c8a3
--- /dev/null
+++ b/czech/international/czech/translator.db.pl
@@ -0,0 +1,44 @@
+#!/usr/bin/perl
+
+# This is GPL'ed, copyright 2000 Martin Quinson <mquinson@ens-lyon.fr>
+
+# In this file, you can find a DB about the translators.
+# It should be hand maintained by the coordinator, it is not modified
+# automatically.
+# For now, it is only used by check-translation.pl (in a version not
+# commited to the cvs, but I can send it to you, if you want to)
+
+# Here is the syntax:
+# The data is in a hash table returned by init_translators().
+# Each key is the name of a translator (trimmed, without email adress)
+# For each one, you have a (sub)hash table containing:
+# * email: the current email of this guy
+# * compress: which type of compression you want to have (NOT YET IMPLEMENTED)
+# Remaining keys have numeric value, which tells when to send info:
+# * summary: a summary of which documents are outdated
+# * logs: the `cvs log' between the translated and current versions
+# * diff: idem with diff
+# * tdiff: try to find the part of the translated text modified by the
+# patch
+# * file: add current version of translated file
+
+# The possible frenquencies are:
+# 0 (never), 1 (monthly), 2 (weekly) or 3 (daily)
+
+
+sub init_translators {
+ my $translators = {
+ 'Juraj Kubelka' => {
+ email => 'Juraj.Kubelka@email.cz',
+ summary => 2,
+ logs => 2,
+ diff => 2,
+ tdiff => 2,
+ file => 2,
+ compress => 'none'
+ },
+ };
+ return $translators;
+}
+
+1;

© 2014-2024 Faster IT GmbH | imprint | privacy policy