[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

CVS webwml/dutch/international/dutch



Update of /cvs/webwml/webwml/dutch/international/dutch
In directory gluck:/tmp/cvs-serv7547

Added Files:
	mail_obsolete.txt mail_unmaintained.txt mail_user.txt 
	translator.db.pl 
Log Message:
Set up translator email stuff.



--- /cvs/webwml/webwml/dutch/international/dutch/mail_obsolete.txt	2006/03/30 17:27:30	NONE
+++ /cvs/webwml/webwml/dutch/international/dutch/mail_obsolete.txt	2006/03/30 17:27:30	1.1
Hallo,

De pagina's hieronder zijn verouderd in vergelijking met de originele
versie. Hoewel in de pagina een beheerder aangegeven staat, is de pagina
toch al vijf versies achterop geraakt.

Het zou interessant zijn als iemand deze pagina's zou updaten.
--- /cvs/webwml/webwml/dutch/international/dutch/mail_unmaintained.txt	2006/03/30 17:27:30	NONE
+++ /cvs/webwml/webwml/dutch/international/dutch/mail_unmaintained.txt	2006/03/30 17:27:30	1.1
Hallo,

De pagina's hieronder zijn verouderd ten opzichte van hun originele
versie. Vermits er geen beheerder opgegeven is in de pagina, wordt de
tekst naar hier gestuurd.

Als u vragen heeft bij dit bericht, gelieve het dan naar de
lijst debian-l10n-dutch@lists.debian.org te sturen.

--- /cvs/webwml/webwml/dutch/international/dutch/mail_user.txt	2006/03/30 17:27:30	NONE
+++ /cvs/webwml/webwml/dutch/international/dutch/mail_user.txt	2006/03/30 17:27:30	1.1
Hallo,

Dit automatisch bericht werd u opgestuurt omdat u de verantwoordelijke
bent van bepaalde webpagina's uit de Debian website die naar het
Nederlands vertaald zijn. U heeft gevraagd om de volgende informatie te
krijgen:

  summary: #$translators{default}{frequency}[$translators{$name}{summary}]#
  logs: #$translators{default}{frequency}[$translators{$name}{logs}]#
  diff: #$translators{default}{frequency}[$translators{$name}{diff}]#
  tdiff: #$translators{default}{frequency}[$translators{$name}{tdiff}]#
  file: #$translators{default}{frequency}[$translators{$name}{file}]#

U kan vragen om wijzigingen in:
  - De frequentie van de berichten (nooit, dagelijks, wekelijks,
    maandelijks);
  - De informatie die u wenst te verkrijgen:
    * Een samenvatting van de bestanden die geupdated moeten worden
    * De logberichten tussen de laatst vertaalde versie en de meest
      recente
    * De verschillen tussen de laatst vertaalde versie en de meest
      recente
    * Eventueel ook de bestanden die u moet updaten.
  - Uw email-adres.

Als u vragen heeft bij dit bericht, gelieve ze dan te versturen naar de
lijst debian-l10n-dutch@lists.debian.org

--- /cvs/webwml/webwml/dutch/international/dutch/translator.db.pl	2006/03/30 17:27:30	NONE
+++ /cvs/webwml/webwml/dutch/international/dutch/translator.db.pl	2006/03/30 17:27:30	1.1
#!/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 = {
                'Wouter Verhelst' => {
			email		=> 'wouter@debian.org',
			summary		=> 3,
			logs		=> 3,
			diff		=> 3,
			tdiff		=> 0,
			file		=> 0,
			compress	=> 'none'
		},
                # Below are special users, used to handle special cases
                #     default:      default values
                #     untranslated: pages not translated
                #     unmaintained: pages without maintainer
                #     maxdelta:     outdated pages

                untranslated        => {
                        email       => '',
                        mailsubject => '',
                        mailbody    => '',
                },
                unmaintained        => {
                        email       => 'debian-l10n-dutch@lists.debian.org',
                        summary     => 2,
                        mailsubject => 'Verouderde webpagina\'s die geupdated moeten worden',
                        mailbody    => 'dutch/international/dutch/mail_unmaintained.txt',
                },
                maxdelta            => {
                        email       => 'debian-l10n-dutch@lists.debian.org',
                        summary     => 2,
                        maxdelta    => 5,
                        mailsubject => '[Important] Verouderde webpagina\'s',
                        mailbody    => 'dutch/international/dutch/mail_obsolete.txt',
                },
                # this is a special name containing the default values
                default   => {
                        email       => '',
                        missing     => 0,
                        summary     => 0,
                        logs        => 0,
                        diff        => 0,
                        tdiff       => 0,
                        file        => 0,
                        frequency   => ['nooit', 'maandelijks', 'wekelijks', 'dagelijks'],
                        mailsubject => 'Webpagina\'s die geupdated moeten worden',
                        mailbody    => 'dutch/international/dutch/mail_user.txt',
                        compress    => 'none'
                },
        };
        return $translators;
}

1;




Reply to: