Bug#948969: wnpp.pl fix

2020-04-01 Thread victory
in wnpp.pl,
L107
push @rfa_bypackage_html, " , ";
L122
push @rfa_bymaint_html, " , ";
L136
push @rfa_byage_html, " , ";
L148
push @orphaned_html, " , ";
L160
push @orphaned_byage_html, " ";
L174
 " , ";
L191
 " , ";
L207
 " , ";
L286
 " , ";
L302
 " , ";
L314
" , , ";

these  need to be 1 by 1 as pdo site does not accept multiple 
stanza;;
I suggest most clear way, adding a sub routine named "pdolinks"
and replace these  tags w/ a snippet refering this, like:
  ($pkg);
---
# this sub routine takes 1 arg, expects "pkg1, pkg2, ..." form
# and returns a scalar: "[, , ...]
# additional description for noob:
# 1st line: $packages takes the 1st arg
# 2nd line: @packages takes indivisual packages for each element
# 3rd-6th lines: cleanup and 'ifies every element in @packages
# 8th line: join concatenates array using specified separator as the 1st arg
# if it returns an array, the @..._html arrays will contain every links 1 by 1
sub pdolinks{
  my $packages = shift;
  my @packages = split(/[\s,]+/, $packages);
  for (my $i=0; $i<$#packages; $i++){
$packages[$i] =~ s/[\s,]//g;
$packages[$i] = "":
  }
  return join(", ", @packages);
}
---

note that I did no test;
additionally, popcon links may have the same issue

-- 
victory
no need to CC me :-)



Bug#921155: buildbot: [INTL:ja] New Japanese debconf translation

2019-02-02 Thread victory

Package:buildbot 
Version: 1.7.0-2
Severity: wishlist
Tags: patch l10n

Dear buildbot package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory


buildbot-1.7.0-2_ja.po.gz
Description: Binary data


Bug#612993: #612993 debian-faq: FAQ: Please convert SGML to DocBook XML

2017-11-30 Thread victory
On Thu, 30 Nov 2017 11:14:54 +0100
Joost van Baal-Ilić wrote:

> I just found out that running "debiandoc2dbk debian-faq.sgml" from within
> an SVN checkout produces pretty neat debian-faq.dbk/*.dbk files.  That
> seems to work :)
> victory: I guess that's what you did to produce faq-db5.tbz, right?

no, I have never used the debiandoc tool, just edited tags using text editor :)



-- 
victory
no need to CC me :-)



Bug#878105: release-notes: problems building the release-notes (jessie) for the Debian website

2017-10-09 Thread victory
On Mon, 09 Oct 2017 22:44:15 +0200
Laura Arjona Reina wrote:

> Those errors appear for any architecture except armel and any language, for 
> the
> jessie release notes.
> file jessie/en/whats-new.dbk
> 
>   
> Support for iop32x was dropped
> 
>   
> On armel, support for
> the iop32x subarchitecture was dropped. Other
> armel subarchitectures
> continue to be supported, including ixp4xx, kirkwood, orion
> and versatile.
>   
> 
>   
> 

> file jessie/en/installing.dbk
> 
...
> 
...
> 

instead of adding useless item for old distribution,
maybe 

works for jessie?

-- 
victory
no need to CC me :-)



Bug#612993: db5 version of faq

2017-02-11 Thread victory

some footnotes had raw text; revised files attached

-- 
victory
no need to CC me :-)


faq-db5.tbz
Description: Binary data


Bug#612993: db5 version of faq

2017-02-11 Thread victory

html:
http://debian.blog.bbiq.jp/2017/faq-db5.html

pdf:
http://debian.blog.bbiq.jp/2017/faq-db5.pdf

epub:
http://debian.blog.bbiq.jp/2017/faq-db5.epub

-- 
victory
no need to CC me :-)


faq-db5.tbz
Description: Binary data


Bug#612994: project-history converted to docbook/xml

2017-02-08 Thread victory

docbook v5 version attached
markup changes are:
ulink -> link
bookinfo -> info
header lines to declare 5.0

-- 
victory
no need to CC me :-)


project-history_dbv5.dbk.gz
Description: Binary data


Bug#612994: project-history converted to docbook/xml

2017-02-07 Thread victory

* perhaps  needs additional work, though;
  did not use debiandoc tools :p

* verbose/debug flags can be used to help debug work, such as:
  dblatex -d -V -T db2latex -b xetex -p [xsl stylesheet] -o [out.pdf]

* sample results:
  * pdf built using dblatex.xsl used in d-i/edu/etc.,
 w/ adjusting to use a bit bigger font:
http://debian.blog.bbiq.jp/2017/history-test.pdf

  * html built using xsltproc:
http://debian.blog.bbiq.jp/2017/history-test.html

  * epub built using dbtoepub:
http://debian.blog.bbiq.jp/2017/history-test.epub


* did no test for l10n, 
  but as most teams already use po4a, it should be very easy to adopt for those 
langs.
  (2 langs are heavily outdated; these are rev. 2570 or before)

* this will fix text version for ja.
* this will also be able to resolve #579955

-- 
victory
no need to CC me :-)


project-history.dbk.gz
Description: Binary data


Bug#853917: ttx and grep result for DroidSansFallback(Full)?.ttf

2017-02-02 Thread victory

added testing src apt line, apt update, apt-get source ..., tar zxf ...
$ ttx DroidSansFallback.ttf
$ ttx DroidSansFallbackFull.ttf
these 2 generate [filename].ttx

(just FYI, used letters (in ko) other than 7-bit are in 0xac00-0xd790 range)

$ grep Hangul DroidSansFallback.ttx prints 22344 lines
  
  
  
  
  
  
...
  
  
  
  
  
  

$ grep Hangul DroidSansFallbackFull.ttx prints only 6 lines:
  
  
  
  
  
  

so, the latter has only 1 Hangul glyph (0xac00, 가) to be used in d-i
(0xd7a2 and 0xd7a3 are not used in d-i)

-- 
victory
no need to CC me :-)



Bug#820119: restores original characters instead of taking care of every time numeric references coming up

2017-01-21 Thread victory
On Sat, 14 Jan 2017 13:55:16 +0100
Laura Arjona Reina wrote:

> Victory is right

no, i misinterpreted validate as tidy :p

what the patch does:
  if both of
   (charset is "utf-8")
  and
([the last 56 chars of a error] is
  "is not a character number in the document character set\n")
  are satisfied,
  then the current loop is terminated
(push(@errors, $_) will not be processed in this case)
  and continue next ones
patch for git:///debwww/cron: scripts/validate below:

@@ -392,10 +392,13 @@ foreach $file (@files) {
 if ($#error < 5) {
 
 next;
 
 } elsif ($error[4] eq 'E' || $error[4] eq 'X') {
+   next if($charset eq "utf-8" &&
+   substr($error[5],-56) eq
+   "is not a character number in the document character 
set\n");
 
 push(@errors, $_);
 
 # If the DOCTYPE is bad, bail out
 last if ($error[5] eq " unrecognized {{DOCTYPE}}; unable to check 
document\n");


-- 
victory
no need to CC me :-)



Bug#851458: not-enough-i18n'ed string on devel/website/stats/ pages

2017-01-15 Thread victory
it lacked define-tag for index; revised patch below:

Index: stattrans.pl
===
--- stattrans.pl(revision 240)
+++ stattrans.pl(working copy)
@@ -535,6 +535,11 @@
 if (open (HTML, ">$config{'htmldir'}/$l.wml")) {
printf HTML "#use wml::debian::template 
title=\"<:=\$trans{\$CUR_ISO_LANG}{%s}:>\"\n", $lang;
print HTML "#use wml::debian::toc\n";
+   printf HTML qq|webwml-stattrans\n|,
+   alioth_cvs_view_url('stattrans.pl');
+   print HTML "\n";
+   print HTML "Created with 
\n"
+   print HTML "\n";
 print HTML "\n\n";
 $color = get_color ($percent_a{$lang});
 
@@ -655,10 +660,7 @@
 print HTML "\n";
 }
 
-print HTML
-'Created with webwml-stattrans' . "\n";
+print HTML "\n";
 close (HTML);
 } else {
 print "Can't open $config{'htmldir'}/$l.wml\n";
@@ -675,6 +677,11 @@
 
 print HTMLI "#use wml::debian::stats_tags\n";
 printf HTMLI "#use wml::debian::template title=\"%s\"\n\n", $config{'title'};
+printf HTMLI qq|webwml-stattrans\n|,
+   alioth_cvs_view_url('stattrans.pl');
+print HTMLI "\n";
+print HTMLI "Created with 
\n"
+print HTMLI "\n";
 print HTMLI 'Translated web 
pages'."\n";
 printf HTMLI "\n",($wml{'english'}+$untranslated{'english'});
 
@@ -809,10 +816,7 @@
 print HTMLI "";
 print HTMLI "\n";
 
-print HTMLI
-'Created with webwml-stattrans' . "\n";
+print HTMLI "\n";
 close (HTMLI);
 
 print "done.\n" if ($config{'verbose'});


-- 
victory
no need to CC me :-)



Bug#827334: (no subject)

2017-01-15 Thread victory

converted doc directory and diff attached

-- 
victory
no need to CC me :-)


man-utf8.gz
Description: Binary data


doc-utf8.tbz
Description: Binary data


Bug#851458: not-enough-i18n'ed string on devel/website/stats/ pages

2017-01-14 Thread victory

Package: www.debian.org
Severity: wishlist
Tags: patch l10n

I-have-known-since-5-years-ago bug, though, 
on current devel/website/stats/ pages,
a gettext string is not enough i18n'ed as it does not include its object;

w/ the patch applied, the string will become like
 "Created with "
instead of
 "Created with"
so we can translate it as
 " により生成しました"

patch below

Index: stattrans.pl
===
--- stattrans.pl(revision 240)
+++ stattrans.pl(working copy)
@@ -535,6 +535,11 @@
 if (open (HTML, ">$config{'htmldir'}/$l.wml")) {
printf HTML "#use wml::debian::template 
title=\"<:=\$trans{\$CUR_ISO_LANG}{%s}:>\"\n", $lang;
print HTML "#use wml::debian::toc\n";
+printf HTML qq|webwml-stattrans\n|,
+   alioth_cvs_view_url('stattrans.pl');
+printf HTML "\n";
+printf HTML "Created with 
\n"
+printf HTML "\n";
 print HTML "\n\n";
 $color = get_color ($percent_a{$lang});
 
@@ -655,10 +660,7 @@
 print HTML "\n";
 }
 
-print HTML
-'Created with webwml-stattrans' . "\n";
+print HTML "\n";
 close (HTML);
 } else {
 print "Can't open $config{'htmldir'}/$l.wml\n";
@@ -809,10 +811,7 @@
 print HTMLI "";
 print HTMLI "\n";
 
-print HTMLI
-'Created with webwml-stattrans' . "\n";
+print HTMLI "\n";
 close (HTMLI);
 
 print "done.\n" if ($config{'verbose'});


-- 
victory
no need to CC me :-)



Bug#820119: restores original characters instead of taking care of every time numeric references coming up

2017-01-13 Thread victory

first, it is stupid to blame about names which are valid.
it is also stupid that taking care of each occurrences coming up.
as pages are all utf-8 now, no need to keep such references,
this patch restores original characters instead of numeric references

patch below:
Index: english/international/l10n/scripts/gen-files.pl
===
--- english/international/l10n/scripts/gen-files.pl (revision 232)
+++ english/international/l10n/scripts/gen-files.pl (working copy)
@@ -3,6 +3,7 @@
 use strict;
 use File::Path;
 use Getopt::Long;
+use Encode qw(encode);
 
 use lib ($0 =~ m|(.*)/|, $1 or ".") ."/../../../../Perl";
 
@@ -117,8 +118,7 @@
 $name =~ s/\s*<.*//;
 $name =~ s/&(?!#)//g;
 $name =~ s/=\?.*?\?=//g;
-# BREAK PERMITTED HERE (U+0082) is not allowed in HTML 4.01.
-$name =~ s/(?:*130;|*82;|\N{U+0082})//ig;
+$name =~ s/

Bug#851145: dblatex?: wrong arrangement of an image when the para is just after title

2017-01-12 Thread victory

Package: dblatex
Version: 0.3.5-2

not sure if this is an issue in dblatex or not

wrong arrangement of an image when the para is just after title:
it renders such as:
A warning about removable media on LTSP servers Warning: When inserted into an 

"Warning: ..." needs to be a new line instead of same line as the heading


pdf version:
https://jenkins.debian.net/userContent/debian-edu-doc/debian-edu-doc-en/debian-edu-stretch-manual.pdf
15.2.2 (page 51 or around)

wiki version:
https://wiki.debian.org/DebianEdu/Documentation/Stretch/HowTo/AdvancedAdministration

below are correct, just for reference
html version:
https://jenkins.debian.net/userContent/debian-edu-doc/debian-edu-doc-en/debian-edu-stretch-manual.html#AdvancedAdministration--Creating_folders_in_the_home_directories_of_all_users

xml source:

A warning about removable media on LTSP servers

/!\
 Warning: When inserted into an LTSP server USB drives and other removable 
media cause popup messages on remote LTSP clients. 



-- 
victory
no need to CC me :-)



Bug#849679: dblatex: please update l10n files

2016-12-29 Thread victory

Package: dblatex
Version: 0.3.5-2
Severity: minor
Tags: l10n

unstable has same issue

at least, Greek quotes are broken for pdf:
http://d-i.alioth.debian.org/manual/el.amd64/index.html page viii
amd64 instead of “amd64” 

-- 
victory
no need to CC me :-)



Bug#834677: refcard: FTBFS in testing (xelatex compilation failed)

2016-08-31 Thread victory
On Wed, 31 Aug 2016 01:41:03 -0400
Jeremy Bicha wrote:

> https://tests.reproducible-builds.org/debian/rb-pkg/unstable/amd64/refcard.html

> ! I can't find file `IPAPMincho'.
> ! I can't find file `IPAPGothic'.

apparently new Depends are needed, maybe
fonts-ipafont-gothic,
fonts-ipafont-mincho,

-- 
victory
no need to CC me :-)



Bug#835610: do not forget escape special chars

2016-08-29 Thread victory

the patch submitted in the bug caused validation errors
you guys should test on your machine before ..

-- 
victory
no need to CC me :-)



Bug#833265: refcard: depends on unexistent package

2016-08-02 Thread victory
On Tue, 2 Aug 2016 10:25:13 + (UTC)
Gianfranco Costamagna wrote:

> As said, "ttf-kochi-gothic" is not available in Debian, so, the package
> seems to be not buildable from source, at least with Debian repositories.

as long as stable has it, "not available in Debian" is not true;
anyway you can apply this:

Index: refcard/dblatex.xsl
===
--- refcard/dblatex.xsl (r42)
+++ refcard/dblatex.xsl (wc)
@@ -10,7 +10,7 @@
\setCJKmainfont{IPAPGothic}
\setCJKsansfont{IPAPMincho}
\setCJKmonofont{IPAexGothic}
-   \setmainfont{Kochi Gothic}
+   \setmainfont{IPAPGothic}
\setsansfont{IPAPMincho}
\setmonofont{IPAexGothic}
 


-- 
victory
no need to CC me :-)



Bug#831688: LedgerSMB does not have Japanese as an available language.

2016-07-18 Thread victory

po-debconf is only for managing packages, not for packaged software
and
there is no ja.po in
https://github.com/ledgersmb/LedgerSMB/tree/master/locale/po

so it is normal to not showing non-existent choice in the selection

as most likely there is no one
 who will translate the 1 lines of program po into ja,
if you dont like this mismatch,
 you can just disable the po for debconf for years (not *for a while*)

I don't think it will be done before Debian bts bug counts 1M

-- 
victory
no need to CC me :-)



Bug#831058: (no subject)

2016-07-13 Thread victory

support for 32bit was removed
see #816848 as mentioned in the changelog

-- 
victory
no need to CC me :-)



Bug#824222: [DM] Re: Bug#824222: [debian-refcard] change build mechanism to dblatex for ar, hi, ml

2016-06-27 Thread victory
On Mon, 27 Jun 2016 22:07:58 +0200
Holger Wansing wrote:

> Control: rename -1 [debian-refcard] change build mechanism to dblatex for ar, 
> ml

retitle


-- 
victory
no need to CC me :-)



Bug#364913: How to set up a page with gettext (cf. #364913)

2016-06-25 Thread victory

you can do these as www-team:
* add definitions in a file such as english/vote/vote.defs

* add its reference to vote_FILES in english/po/Makefile
* run something like, make -C english/po pot

* need to run update-vote.[short-lang].po
 in each [language]/po directory to sync translations

secretary@ needs to use the tags for fixed form strings, or nothing will change.

note: in case secretary@ refuses to use it,
still you can use template for your own


-- 
victory
no need to CC me :-)



Bug#820119: closed by Debian WWW CVS <webmas...@debian.org> (reply to debian-...@lists.debian.org) (Debian WWW CVS commit by djpig fixes #820119)

2016-06-16 Thread victory
On Fri, 20 May 2016 21:18:09 +
Debian Bug Tracking System wrote:

> @@ -117,6 +117,8 @@ sub transform_translator {
>  $name =~ s/\s*<.*//;
>  $name =~ s/&(?!#)//g;
>  $name =~ s/=\?.*?\?=//g;
> +# BREAK PERMITTED HERE (U+0082) is not allowed in HTML 4.01.
> +$name =~ s/(?:*130;|*82;|\N{U+0082})//ig;
>  $name = 'DDTP' if $name eq 'Debian Description Translation Project';
>  $name = '' if $name =~ m/\@/;
>  return $name;

there is a wrong comment;
as I said, BPH, i.e. C1 range is supported
just tidy is stupid so you needed to eliminate yourself

-- 
victory
no need to CC me :-)



Bug#754601: closed by Laura Arjona Reina <larj...@larjona.net> (tidy reports errors on release pages)

2016-06-02 Thread victory

> I think the problem is solved, closing this bug.

no
it excludes pages under release/ by the line below; 
ie.: what you subscribed, never reports actual error in these pages

what I reported here is not what less-often scripts reported

debwww/cron.git//scripts/999Xtidy

excl="/doc/manuals /releases /doc/developers-reference /doc/maint-guide 
/doc/FAQ /searchtmpl /ports/powerpc/inst/yaboot-howto"

yes, this causes false positive;
it tried to exclude d-i-guide but it does exclude not only d-i-guide,
but the pages that should be checked, too

-- 
victory
no need to CC me :-)



Bug#825419: fixes in security/2014/

2016-05-26 Thread victory

Package: www.debian.org
Severity: wishlist
Tags: patch

--
summary:
dla:
dla-81,97,107,118:typo
dla-114: duped: interprets interprets
dla-115.data: added bug#
dla-116: this is for ntp
dla-91: link to 2015/
  refers rejected CVE-2012-3439:
  use following instead: CVE-2012-5885, CVE-2012-5886, and CVE-2012-5887

dsa:
dsa-3112: s/dicover/discover/
dsa-3060: p:s|i/o|I/O|, s/sctp/SCTP/g, s/rip/RIP/
dsa-3066,3067: s/qemu/QEMU/
dsa-3074,3107: apply -2(regression) 
dsa-3050: apply -2, -3

-- 
victory
no need to CC me :-)
Index: english/security/2014/dla-81.wml
===
--- english/security/2014/dla-81.wml(revision 206)
+++ english/security/2014/dla-81.wml(working copy)
@@ -32,7 +32,7 @@
 could accept and complete a SSL 3.0 handshake, and clients could be
 configured to send them.
 
-Note that the package is Debian is not build with this option.
+Note that the package in Debian is not built with this option.
 
 https://security-tracker.debian.org/tracker/CVE-2014-3569;>CVE-2014-3569
 
@@ -40,7 +40,7 @@
 Hello is received the ssl method would be set to NULL which could
 later result in a NULL pointer dereference.
 
-Note that the package is Debian is not build with this option.
+Note that the package in Debian is not built with this option.
 
 
 
Index: english/security/2014/dla-91.data
===
--- english/security/2014/dla-91.data   (revision 206)
+++ english/security/2014/dla-91.data   (working copy)
@@ -1,6 +1,6 @@
 DLA-91-1 tomcat6
 2014-11-23
-CVE-2012-3439 CVE-2013-1571 CVE-2013-4286 CVE-2013-4322 
CVE-2013-4590 CVE-2014-0033 Bug#299635 Bug#608286 Bug#654136 Bug#659748 
Bug#664072 Bug#665393 Bug#666256 Bug#668761
+CVE-2012-5885 CVE-2012-5886 CVE-2012-5887 CVE-2013-1571 
CVE-2013-4286 CVE-2013-4322 CVE-2013-4590 CVE-2014-0033 Bug#299635 Bug#608286 
Bug#654136 Bug#659748 Bug#664072 Bug#665393 Bug#666256 Bug#668761
 tomcat6
 yes
 yes
Index: english/security/2014/dla-91.wml
===
--- english/security/2014/dla-91.wml(revision 206)
+++ english/security/2014/dla-91.wml(working copy)
@@ -1,5 +1,8 @@
 LTS security update
 
+This advisory has been superseded by DLA-91-2.
+For reference, the original advisory text follows.
+
 This is an upgrade from tomcat 6.0.35 (the version previously available
 in squeeze) to 6.0.41, the full list of changes between these versions
 can be see in the upstream changelog, which is available online at
@@ -32,7 +35,9 @@
 
 Avoid https://security-tracker.debian.org/tracker/CVE-2013-1571;>CVE-2013-1571
 when generating Javadoc.
 
-https://security-tracker.debian.org/tracker/CVE-2012-3439;>CVE-2012-3439
+https://security-tracker.debian.org/tracker/CVE-2012-5885;>CVE-2012-5885,
+https://security-tracker.debian.org/tracker/CVE-2012-5886;>CVE-2012-5886,
+https://security-tracker.debian.org/tracker/CVE-2012-5887;>CVE-2012-5887
 
 Various improvements to the DIGEST authenticator.
 
Index: english/security/2014/dla-97.wml
===
--- english/security/2014/dla-97.wml(revision 206)
+++ english/security/2014/dla-97.wml(working copy)
@@ -21,7 +21,7 @@
 The function wordexp() fails to properly handle the WRDE_NOCMD
 flag when processing arithmetic inputs in the form of "$((... ``))"
 where "..." can be anything valid. The backticks in the arithmetic
-epxression are evaluated by in a shell even if WRDE_NOCMD forbade
+expression are evaluated by in a shell even if WRDE_NOCMD forbade
 command substitution. This allows an attacker to attempt to pass
 dangerous commands via constructs of the above form, and bypass
 the WRDE_NOCMD flag. This patch fixes this by checking for WRDE_NOCMD
Index: english/security/2014/dla-107.wml
===
--- english/security/2014/dla-107.wml   (revision 206)
+++ english/security/2014/dla-107.wml   (working copy)
@@ -4,7 +4,7 @@
 recursive, and caching DNS resolver, was prone to a denial of service
 vulnerability. An attacker crafting a malicious zone and able to emit
 (or make emit) queries to the server can trick the resolver into
-following an endless series of delegations, leading to ressource
+following an endless series of delegations, leading to resource
 exhaustion and huge network usage.
 
 For Debian 6 Squeeze, these issues have been fixed in unbound 
version 1.4.6-1+squeeze4
Index: english/security/2014/dla-114.wml
===
--- english/security/2014/dla-114.wml   (revision 206)
+++ english/security/2014/dla-114.wml   (working copy)
@@ -7,8 +7,7 @@
 
 https://security-tracker.debian.org/tracker/CVE-2004-2771;>CVE-2004-2771
 
-mailx interprets interprets shell meta-characters in

Bug#824239: [DLA] fixes for dla-20,38,53,54

2016-05-16 Thread victory
Control: retitle -1 [DLA] fixes for 2014/dla-*
--

more fixes:
* mention -2 for 25,58,72
* add reference to -2 for 91,120
* 59 and 115 created from upload log
* mention 59-1 instead of dsa in 63
* fix typo on 72,75

-- 
victory
no need to CC me :-)
Index: english/security/2014/dla-25.data
===
--- english/security/2014/dla-25.data   (revision 204)
+++ english/security/2014/dla-25.data   (working copy)
@@ -1,5 +1,5 @@
-DLA-25-1 python2.6
-2014-7-31
+DLA-25-2 python2.6
+2014-8-5
 CVE-2011-1015 CVE-2011-1521 CVE-2011-4940 CVE-2011-4944 
CVE-2012-0845 CVE-2012-1150 CVE-2013-4238 CVE-2014-1912
 python2.6
 yes
Index: english/security/2014/dla-25.wml
===
--- english/security/2014/dla-25.wml(revision 204)
+++ english/security/2014/dla-25.wml(working copy)
@@ -1,5 +1,12 @@
 LTS security update
 
+A regression has been identified in the python2.6 update of DLA-25-1,
+which may cause python applications to abort if they were running during
+the upgrade but they had not already imported the 'os' module, and do so
+after the upgrade. This update fixes this upgrade scenario.
+
+For reference, the original advisory text follows.
+
 Multiple vulnerabilities were discovered in python2.6. The more
 relevant are:
 
@@ -18,7 +25,7 @@
 
 
 
-For Debian 6 Squeeze, these issues have been fixed in python2.6 
version 2.6.6-8+deb6u1
+For Debian 6 Squeeze, these issues have been fixed in python2.6 
version 2.6.6-8+deb6u2
 
 
 # do not modify the following line
Index: english/security/2014/dla-59.data
===
--- english/security/2014/dla-59.data   (nonexistent)
+++ english/security/2014/dla-59.data   (working copy)
@@ -0,0 +1,10 @@
+DLA-59-1 bash
+2014-9-24
+CVE-2014-6271
+bash
+yes
+yes
+no
+
+#use wml::debian::security
+
Index: english/security/2014/dla-59.wml
===
--- english/security/2014/dla-59.wml(nonexistent)
+++ english/security/2014/dla-59.wml(working copy)
@@ -0,0 +1,23 @@
+LTS security update
+
+
+
+
+https://security-tracker.debian.org/tracker/CVE-2014-6271;>CVE-2014-6271:
+
+GNU Bash through 4.3 processes trailing strings after function definitions 
+in the values of environment variables, which allows remote attackers to 
+execute arbitrary code via a crafted environment, as demonstrated by vectors 
+involving the ForceCommand feature in OpenSSH sshd, the mod_cgi and 
+mod_cgid modules in the Apache HTTP Server, scripts executed by unspecified 
+DHCP clients, and other situations in which setting the environment occurs 
+across a privilege boundary from Bash execution, aka "ShellShock."
+
+
+
+For Debian 6 Squeeze, these issues have been fixed in bash version 
4.1-3+deb6u1
+
+
+# do not modify the following line
+#include "$(ENGLISHDIR)/security/2014/dla-59.data"
+# $Id: $
Index: english/security/2014/dla-58.data
===
--- english/security/2014/dla-58.data   (revision 204)
+++ english/security/2014/dla-58.data   (working copy)
@@ -1,5 +1,5 @@
-DLA-58-1 apt
-2014-9-23
+DLA-58-2 apt
+2014-10-14
 CVE-2014-6273
 apt
 yes
Index: english/security/2014/dla-58.wml
===
--- english/security/2014/dla-58.wml(revision 204)
+++ english/security/2014/dla-58.wml(working copy)
@@ -1,5 +1,10 @@
 LTS security update
 
+This update fixes a regression introduced in 0.8.10.3+squeeze5 where
+apt would send invalid HTTP requests when sending If-Range queries.
+
+For reference, the original advisory text follows.
+
 The Google Security Team discovered a buffer overflow vulnerability in
 the HTTP transport code in apt-get. An attacker able to
 man-in-the-middle a HTTP request to an apt repository can trigger the
@@ -8,19 +13,19 @@
 
 The following regression fixes were included in this update:
 
- * Fix regression from the previous update in DLA-53-1 when the custom
-   apt configuration option for Dir::state::lists is set to a relative
-   path (#762160).
+ * Fix regression from the previous update in DLA-53-1
+   when the custom apt configuration option for Dir::state::lists is set to a
+   relative path (#762160).
 
  * Fix regression in the reverificaiton handling of cdrom: sources that
may lead to incorrect hashsum warnings. Affected users need to run
"apt-cdrom add" again after the update was applied.
 
- * Fix regression from the previous update in DLA-53-1 when file:///
-   sources are used and those are on a different partition than the apt
-   state directory.
+ * Fix regression from the previous update in DLA-53-1
+   when file:/// sources are used and those are on a different partition than
+   the apt state directory.
 
-For Debian 6 Squeeze, these issues have been fixed in apt version 
0.8.10

Bug#824239: [DLA] fixes for dla-20,38,53,54

2016-05-13 Thread victory

Package: www.debian.org
Severity: normal
Tags: patch
X-Debbugs-CC: debian-...@lists.debian.org

* wrong references in dla-20
* missing wireshirk advisory (dla-38), no one sent to d-d-a
* wrong dla ID for "dla-54" sent and created as dla-53
* missing "real" dla-54

see the bottom of the mail

p.s.: 
scripts are not all-round genius;
scripts cannot decide if the source is valid,
scripts cannot fix issues in the source,
scripts do just as instructed.
then, YOU NEED CHECK AND FIX YOURSELF THE GENERATED CONTENTS

-- 
victory
no need to CC me :-)

Index: english/security/2014/dla-20.wml
===
--- english/security/2014/dla-20.wml(revision 193)
+++ english/security/2014/dla-20.wml(working copy)
@@ -8,9 +8,9 @@
   (Closes: #679897), closes https://security-tracker.debian.org/tracker/CVE-2012-3512;>CVE-2012-3512.
 plugins: use runtime $ENV{MUNIN_PLUGSTATE}. So all properly written
   plugins will use /var/lib/munin-node/plugin-state/$uid/$some_file now   
please report plugins that are still using /var/lib/munin/plugin-state/   as 
those  might pose a security risk!
-Validate multigraph plugin name, https://security-tracker.debian.org/tracker/CVE-2013-6048;>CVE-2013-6048.
 Don't abort data collection for a node due to malicious node, fixing
-  munin#1397, https://security-tracker.debian.org/tracker/CVE-2013-6359;>CVE-2013-6359.
+  munin#1397, https://security-tracker.debian.org/tracker/CVE-2013-6048;>CVE-2013-6048.
+Validate multigraph plugin name, https://security-tracker.debian.org/tracker/CVE-2013-6359;>CVE-2013-6359.
 
 
 For Debian 6 Squeeze, these issues have been fixed in munin version 
1.4.5-3+deb6u1
Index: english/security/2014/dla-38.data
===
--- english/security/2014/dla-38.data   (nonexistent)
+++ english/security/2014/dla-38.data   (working copy)
@@ -0,0 +1,10 @@
+DLA-38-1 wireshark
+2014-8-20
+CVE-2014-5161 CVE-2014-5162 CVE-2014-5163
+wireshark
+yes
+yes
+no
+
+#use wml::debian::security
+
Index: english/security/2014/dla-38.wml
===
--- english/security/2014/dla-38.wml(nonexistent)
+++ english/security/2014/dla-38.wml(working copy)
@@ -0,0 +1,25 @@
+LTS security update
+
+
+
+https://security-tracker.debian.org/tracker/CVE-2014-5161;>CVE-2014-5161,
+https://security-tracker.debian.org/tracker/CVE-2014-5162;>CVE-2014-5162:
+
+The Catapult DCT2000 and IrDA dissectors could underrun a buffer.
+It may be possible to make Wireshark crash by injecting a malformed packet 
onto 
+the wire or by convincing someone to read a malformed packet trace 
file.
+
+https://security-tracker.debian.org/tracker/CVE-2014-5163;>CVE-2014-5163:
+
+The GSM Management dissector could crash.
+It may be possible to make Wireshark crash by injecting a malformed packet 
onto
+the wire or by convincing someone to read a malformed packet trace 
file.
+
+
+For Debian 6 Squeeze, these issues have been fixed in wireshark 
version 1.2.11-6+squeeze15
+
+
+
+# do not modify the following line
+#include "$(ENGLISHDIR)/security/2014/dla-38.data"
+# $Id: $
Index: english/security/2014/dla-53.data
===
--- english/security/2014/dla-53.data   (revision 193)
+++ english/security/2014/dla-53.data   (working copy)
@@ -1,10 +1,10 @@
-DLA-53-1 gnupg
-2014-9-14
-CVE-2014-5270
-gnupg
-yes
-yes
-no
-
-#use wml::debian::security
-
+DLA-53-1 apt
+2014-9-3
+CVE-2014-0487 CVE-2014-0488 CVE-2014-0489
+apt
+yes
+yes
+no
+
+#use wml::debian::security
+
Index: english/security/2014/dla-53.wml
===
--- english/security/2014/dla-53.wml(revision 193)
+++ english/security/2014/dla-53.wml(working copy)
@@ -1,15 +1,16 @@
 LTS security update
 
-Genkin, Pipman and Tromer discovered a side-channel attack on Elgamal
-encryption subkeys (https://security-tracker.debian.org/tracker/CVE-2014-5270;>CVE-2014-5270).
+It was discovered that APT, the high level package manager, does not
+properly invalidate unauthenticated data (https://security-tracker.debian.org/tracker/CVE-2014-0488;>CVE-2014-0488),
+performs incorrect verification of 304 replies (https://security-tracker.debian.org/tracker/CVE-2014-0487;>CVE-2014-0487)
+and does not perform the checksum check when the Acquire::GzipIndexes option 
is used
+(https://security-tracker.debian.org/tracker/CVE-2014-0489;>CVE-2014-0489).
 
-In addition, this update hardens GnuPG's behaviour when treating keyserver
-responses; GnuPG now filters keyserver responses to only accepts those
-keyids actually requested by the user.
-
-For Debian 6 Squeeze, these issues have been fixed in gnupg version 
1.4.10-4+squeeze6
+For Debian 6 Squeeze, these issues have been fixed in apt version 
0.8.10.3+squeez

Bug#821119: Fw: Change build mechanism for sk [ Re: Debian refcard: call to update translations ]

2016-04-20 Thread victory
On Tue, 19 Apr 2016 20:59:25 +0200
Holger Wansing wrote:
> victory wrote:

> > wrong translations: original is missing;
> > no translators info: original is there but no translators' ones
> > broken: entire pdf is broken or out of space; original is not completed
> > OK: both of original and translators' exists; translators' info may be wrong

> > base, Makefile patch applied (same results):
> >   wrong translations:cs,he,zh_CN
> >   no translators 
> > info:ar,da,el,es,eu,gl,hi,hu,it,ja,lt,ml,ms,pl,pt_BR,sk,sv,tr,zh_TW
> >   broken:bg,ca,de,fi,fr,nb,nl,pt,ro,ru,uk,vi
> >   OK: [none]

> > fo.xsl patch applied, fo.xsl and Makefile patches applied (same results):
> >   wrong translations:cs,he,zh_CN
> >   no translators info:ar,da,el,es,hu,ml,
> >   broken:bg,ca,de,fi,fr,nb,nl,pt,ro,ru,uk,vi
> >   OK:eu,gl,hi,it,ja,lt,ms,pl,pt_BR,sk,sv,tr,zh_TW

> > so ..., at least on my env,
> > the Makefile patch didn't make significant improvement from this POV

> > about the patch:
> > fo.xsl is used *after* preproc.xsl,
> >  so here no need to exclude the dummy 3rd item in en,
> >  just need to wrap each of them in a block to separate

> I am very sorry, but me personally I am completely lost with your mail.

current fo.xsl deals with only first 2 ... clauses,
so the result pdfs never had 3rd and later.

with the fo.xsl patch, assumed the translation has it,
 correctly represents each one ... clause per a line
([eu,gl,hi,it,ja,lt,ms,pl,pt_BR,sk,sv,tr,zh_TW] are the case)

> I cannot understand, what you did, which files you watched (with a
> webbrowser !), and what is so much broken...

http://debian.blog.bbiq.jp/refcard20160420.tbz
note: r11106 + updated ja; latest fr update is not incorporated

> With my patch included with this bug, I only changed the cs.po and
> el.po and sk.po files. 
> So I am unable so see, why this should break so much files or translations.

no.
your patch broke nothing;
just did not make significant improvement from the POV
broken files are broken regardless of your patch applied or not

note: lt version of fr translations is not broken
  but a4 version is broken

if you still cannot understand, never mind and ignore it
I'm not in trouble with it in any way

-- 
victory
no need to CC me :-)



Bug#821119: Fw: Change build mechanism for sk [ Re: Debian refcard: call to update translations ]

2016-04-19 Thread victory
On Sun, 17 Apr 2016 23:16:27 +0200
Holger Wansing wrote:

tested on a virtualbox vm on Windows10 64bit;
copyright view stats checked using "Edge" web browser:

wrong translations: original is missing;
no translators info: original is there but no translators' ones
broken: entire pdf is broken or out of space; original is not completed
OK: both of original and translators' exists; translators' info may be wrong

base, Makefile patch applied (same results):
  wrong translations:cs,he,zh_CN
  no translators 
info:ar,da,el,es,eu,gl,hi,hu,it,ja,lt,ml,ms,pl,pt_BR,sk,sv,tr,zh_TW
  broken:bg,ca,de,fi,fr,nb,nl,pt,ro,ru,uk,vi
  OK: [none]

fo.xsl patch applied, fo.xsl and Makefile patches applied (same results):
  wrong translations:cs,he,zh_CN
  no translators info:ar,da,el,es,hu,ml,
  broken:bg,ca,de,fi,fr,nb,nl,pt,ro,ru,uk,vi
  OK:eu,gl,hi,it,ja,lt,ms,pl,pt_BR,sk,sv,tr,zh_TW

so ..., at least on my env,
the Makefile patch didn't make significant improvement from this POV

about the patch:
fo.xsl is used *after* preproc.xsl,
 so here no need to exclude the dummy 3rd item in en,
 just need to wrap each of them in a block to separate

-- 
victory
no need to CC me :-)
--
Index: fo.xsl
===
--- fo.xsl  (R2)
+++ fo.xsl  (working copy)
@@ -79,14 +79,13 @@
   

-   
-   
- 
-   
- 
-   
+
+ 
+   
+   
+   
+ 
+
   
 
   



Bug#821096: (no subject)

2016-04-17 Thread victory

to make it prompt you to select "keep current|merge|override"
 when the target wml file exists

first some lines of "make_wml" subroutine
sub make_wml{
  $moreinfo = read_old_wml($wml, $moreinfo) if (-f $wml);
  return if($moreinfo eq "KEEP");
  open WML, ">", "$wml";

new subroutine:
sub read_old_wml{
  my $w = shift;
  my $n = shift;
  return unless (-f $w);
  open (WML, "<", $w) or return;
  my ($flag, $o);
  while (my $c=){
last if((substr($c,0,20) eq 'For the oldstable')
||(substr($c,0,17) eq 'For the stable')
||(substr($c,0,18) eq 'For the testing')
||(substr($c,0,19) eq 'For the unstable'));
$o .= $c if($flag);
$flag=1 if(substr($c,0,21) eq '');
  }
  close WML;
  print "$w already exists!\n";
  print "current wml file has no contents. will be overridden.\n" if(!$o);
  print "current wml file has following contents:\n\t" if($o);
  print $o =~ s/\n/\n\t/rg if($o);
  print "\n\tchoices are: keep current[K], merge[M], override[O].\n" if($o);
  print "\t(defaults to 'keep current', do nothing.)\n" if($o);
  my $s;
  my $e=;
  chomp $e;
  $s = 1 if ($e eq "O");
  $s = 2 if ($e eq "M");
  return "KEEP" if(!$s);
  return $n if ($s == 1);
  # merge old description and new package versions below
  my $p = index($n, "\n\nFor the");
  my $n2 = substr($n,$p);
  $n = substr($n,0,$p);
  print "\nn:$n\n";
  $p = index($o, "\n\nFor the");
  $o = substr($o,0,$p);
  return "$n\n\nFor reference, the original advisory text 
follows.\n\n$o$n2";
}


-- 
victory
no need to CC me :-)



Bug#821096: (no subject)

2016-04-17 Thread victory

> I believe that it is not good, we should keep all revisions.

I do not think so (so = should keep all),
 so no more suggestions will be followed from me :)

> By the way, the same problem holds for parse-dla.pl and DLAs.

as everyone know, most of the same code can be used
 when the one for dsa completed

Q. who will do it?
A. of course the one who needs it :)

attached script is an appendix from me :)

-- 
victory
no need to CC me :-)
#!/usr/bin/perl

use strict;
use File::Basename;

=head1 map-dsa-dla: maps dsa*** <=> dla***

replicates relation data for consistency.

This script is intended to use on the commiter's local machine,
not on a server as changes for vcs managed file without manual
involvement may rise issues.

NOTE:
As how the script works, if wrong data was written
you will need to remove from both data files.

=head2 sub routines:

=over

=cut

my $tn = "reladv";	# name of the tag
my $bd = dirname($0);
$bd .= "/test";
my $mapfile = "$bd/map-dsa-dla.txt";
# %s_y: key=dsa#,val=its year; %dsa: key=dsa#,val=its rel adv 
# %l_y: key=dla#,val=its year; %dla: key=dsa#,val=its rel adv
# %mod: key=d[sl]a-#,val=its rel adv;
# %mod collects only advs that will be updated from reverse ref
my (%s_y, %l_y, %dsa, %dla, %mod);

# collect data


# collects relative dsa/dlas from *.data files
my $c;
$c .= "dsa:\n";
foreach my $d(sort{$a<=>$b} keys %s_y){
  my $f = "$bd/$s_y{$d}/dsa-$d.data";
  next unless (-f $f);
  $c .= " $s_y{$d}/dsa-$d: ";
  my $r = r($f);
  $dsa{$d} = $r if ($r);
  $c .= $r if ($r);
  $c .= "\n";
}

$c .= "dla:\n";
foreach my $d(sort{$a<=>$b} keys %l_y){
  my $f = "$bd/$l_y{$d}/dla-$d.data";
  next unless (-f $f);
  $c .= " $l_y{$d}/dla-$d: ";
  my $r = r($f);
  $dla{$d} = $r if ($r);
  $c .= $r if ($r);
  $c .= "\n";
}

# checks if updates needed
foreach my $d(sort{$dsa{$a}<=>$dsa{$b}} keys %dsa){
  rev("s", $d, $dsa{$d}) if ($dsa{$d});
}
foreach my $d(sort{$dla{$a}<=>$dla{$b}} keys %dla){
  rev("l", $d, $dla{$d}) if ($dla{$d});
}

# apply needed updated
foreach my $d(sort keys %mod){
  $c .= "added: [$d -> $mod{$d}]\n";
  my $n = $d =~ s/\D//gr;
  my $f;
  $f = "$bd/$s_y{$n}/$d.data" if (substr($d,0,3) eq "dsa");
  $f = "$bd/$l_y{$n}/$d.data" if (substr($d,0,3) eq "dla");
  w($f, rd($f, $mod{$d}));
}

w($mapfile, $c);
exit;

=item ay:

maps a year to advisories#

=cut

sub ay{
  my $t = (-f $mapfile && stat($mapfile) && (stat($mapfile))[9]) ? (stat($mapfile))[9] : 0;
  print $t;
  for (2014 .. 2099){
my $y = $_;
opendir(my $dh, "$bd/$y") or next;
while (readdir $dh) {
  chomp;
  next if /^\.wml$/;
  next if /^Makefile$/;
  next unless(-f "$bd/$y/$_");
  $s_y{substr($_,4,-5)} = $y if(/^dsa-\d+.data$/);
  $l_y{substr($_,4,-5)} = $y if(/^dla-\d+.data$/);
}
close($dh);
  }
}

=item r(file):

read a *.data file and returns reladv content

=cut

sub r{
  my $f = shift;
  open(my $d, "<", $f);
  my $r;
  while (<$d>) {
$r = e($_);
last if $r;
  }
  close $d;
  return $r;
}

=item e(data):

extract and returns reladv content

=cut

sub e{
  my $d = shift;
  return unless(substr($d,0,(length($tn)+13)) eq "");
  chomp $d;
  $d = substr($d,(length($tn)+13),-13);
  return lc($d);
}

=item rev([sl],d[sl]a,rel):

extract reladv content and make reverse rels

=cut

sub rev{
  my $c = shift;
  my $d = shift;
  my $r = shift;
  $c = "d${c}a";
  foreach(split(/[, ]+/),$r){
s/[, ]//g;
next if (/bug/i);
add("s", $_, "$c-$d") if(substr($_,0,3) eq "dsa");
add("l", $_, "$c-$d") if(substr($_,0,3) eq "dla");
  }
}

=item add("[sl]",d[sl]a,rel):

check whether a reladv exists in the reffered adv, and add if not exist

%mod keeps modified data

=cut

sub add{
  my $c = shift;
  my $d = shift;
  my $r = shift;
  my $n = $d =~ s/\D//gr;
  return if($c eq "s" && $dsa{$n} =~ /$r\b/i);
  return if($c eq "s" && $dsa{$n} =~ /$r$/i);
  return if($c eq "l" && $dla{$n} =~ /$r\b/i);
  return if($c eq "l" && $dla{$n} =~ /$r$/i);
  $mod{$d} = $dsa{$n} if(!$mod{$d} && $c eq "s");
  $mod{$d} = $dla{$n} if(!$mod{$d} && $c eq "l");
  print "[n $n dsa $dsa{$n} dla $dla{$n} r $r]\n";
  my @l;
  @l = split(/[, ]+/, $mod{$d});
  push (@l, uc $r);
  $mod{$d} = join (" ", sort @l);
  print "[add $s_y{$n}/$d -> $mod{$d}]\n";
}

=item rd(file,d[sl]a,rel):

read a *.data file and integrates new refs

=cut

sub rd{
  my $f = shift;
  my $d = shift;
  open(my $t, "<", $f);
  my $r;
  my $n = 0;
  while (my $l = <$t>) {
if (!$n && $l eq "\n"){
	$l = "$d\n\n";
	$n = 1;
}
if (!$n && substr($l,0,(length($tn)+13)) eq ""){
	$l = "$d\n";
	$n = 1;
}
$r .= $l;
  }
  close $t;
  return $r;
}

=item w(file,content):

write content into a file

=cut

sub w{
  my $f = shift;
  my $c = shift;
  open(my $l, ">", $f);
  print $l $c;
  close $l;
}

=back


Bug#821096: (no subject)

2016-04-15 Thread victory
# I do completely not understand what is not so easy :p

the if clauses prevent re-generation of the files,
 so you can just remove the lines to always generate the file
 regardless of their existence

first some lines of "make_data" subroutine 
  if (-f $data){
print "$data already exists!\n";
return;
  }

first some lines of "make_wml" subroutine
  if (-f $wml){
print "$wml already exists!\n";
return;
  }

additionally, if you really need the dsa's revision in the file name,
you can modify these lines to make what you want
$wml = "$curyear/dsa-$dsa_number.wml";
$data = "$curyear/dsa-$dsa_number.data";

the line next to this will tell you what can be used
$pagetitle = "DSA-$dsa_number-$dsa_revision $package";


-- 
victory
no need to CC me :-)



Bug#820119: tidy reports valid NCR as invalid

2016-04-06 Thread victory
On Tue, 5 Apr 2016 20:16:53 +0200
Frank Lichtenheld wrote:

> I assume you wanted to report this against tidy, not www.debian.org?

if so, I always report to the upstream, not the debian's one

see https://www-master.debian.org/build-logs/tidy/
files w/ 142bytes are caused by the issue
(other langs do not have the page [international/l10n/po/pl])

as this is an issue about managing the site, 
you have some choices:
1) fix tidy (upstream or package) and use appropriate option
2) eliminates tidy's output (pipe to sed or use local modified tidy)
3) tamper with the po file
4) ignore this and accept the current situation forever
   (until the Last-Translator changed)

-- 
victory
no need to CC me :-)



Bug#820119: tidy reports valid NCR as invalid

2016-04-05 Thread victory

Package: www.debian.org
Severity: wishlist

https://www.w3.org/International/questions/qa-controls#support
HTML, XHTML and XML 1.0 do not support the C0 range, 
except for HT (Horizontal Tabulation) U+0009, LF (Line Feed) U+000A, 
and CR (Carriage Return) U+000D. 
The C1 range is supported, i.e. you can encode the controls directly 
or represent them as NCRs (Numeric Character References).

*
https://www.w3.org/International/questions/qa-controls#background
The control codes in the range U+0080-U+009F are known as the "C1" range.

unfortunately no option seems to eliminate this :(
latest source use the same code (line 1165-)
https://github.com/htacg/tidy-html5/blob/master/src/lexer.c


-- 
victory
no need to CC me :-)



Bug#799602: the pages are sent according to what your browser requested

2015-09-20 Thread victory

see https://www.debian.org/intro/cn

-- 
victory



Bug#791835: PDF document's headings are gibberish ROT(-1)

2015-07-08 Thread victory
see #789356
https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=789356

-- 
victory


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#767247: arb: [INTL:ja] Japanese debconf translation update

2014-10-29 Thread victory

Package: arb
Version: 6.0.2-2
Severity: wishlist
Tags: patch l10n

Dear arb package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory


arb-6.0.2-2-ja.po.gz
Description: Binary data


Bug#760855: syslinux: [INTL:ja] New Japanese debconf translation

2014-09-08 Thread victory

Package: syslinux
Version: 3:6.03~pre19+dfsg-3
Severity: wishlist
Tags: patch l10n

Dear syslinux package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


syslinux_3-6.03~pre19+dfsg-3_ja.po.gz
Description: Binary data


Bug#760367: whatmaps: [INTL:ja] New Japanese debconf translation

2014-09-03 Thread victory

Package: whatmaps
Version: 0.0.8-3
Severity: wishlist
Tags: patch l10n

Dear whatmaps package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1

-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


whatmaps-0.0.8-3-ja.po.gz
Description: Binary data


Bug#760094: icinga2: [INTL:ja] New Japanese debconf translation

2014-08-31 Thread victory

Package: icinga2
Version: 2.0.1-2
Severity: wishlist
Tags: patch l10n

Dear icinga2 package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1

-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


icinga2-2.0.1-2-ja.po.gz
Description: Binary data


Bug#758583: mopidy: [INTL:ja] New Japanese debconf translation

2014-08-18 Thread victory

Package: mopidy
Version: 0.18.3-3
Severity: wishlist
Tags: patch l10n

Dear mopidy package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


mopidy_0.18.3-4_ja.po.gz
Description: Binary data


Bug#756584: [LCFC] templates://whatmaps/{templates}

2014-08-16 Thread victory
On Sat, 16 Aug 2014 09:17:03 +0200
Christian PERRIER wrote:

 Template: whatmaps/enable_service_restarts
 Type: boolean
 Default: false
 _Description: Automatically restart services after library security updates?
  Services need to be restarted to benefit from updates of shared libraries 
 they
  depend on. Otherwise they remain vulnerable to security bugs fixed in these
  updates.

how about something like this:
s/Otherwise/Until restarting, the services will/


-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#756718: [INTL:ja] Re: postgis 2.1.2+dfsg-3: Please translate debconf PO for the package postgis

2014-07-31 Thread victory
Package: postgis
Version: 2.1.2+dfsg-3
Severity: wishlist
Tags: patch l10n

send to bts; 
looks like it was not reached

On Sat, 10 May 2014 01:33:45 +0900
victory wrote:

 On Tue, 08 Apr 2014 08:25:55 +0200
 Markus Wanner wrote:
  Please send the updated file to me, or submit it as a wishlist bug
  against postgis.
 Japanese translation attached :)


-- 
victory


postgis_2.1.2+dfsg-3_ja.po.gz
Description: Binary data


Bug#752515: nss-pam-ldapd: [INTL:ja] New Japanese debconf translation

2014-07-17 Thread victory
On Fri, 04 Jul 2014 12:58:57 +0200
Arthur de Jong wrote:

 I would be grateful if you could take the time to update it.

updated :)

-- 
victory


nss-pam-ldapd_ja.po.gz
Description: Binary data


Bug#754601: [www] tidy reports errors on release pages

2014-07-12 Thread victory

Package: www.debian.org
Severity: wishlist
Tags: patch 

what it reports are nested strong elements and undefined
 small-non-free-cd-images element.
on the squeeze page, entire div class=line block is useless

-- 
victory
Index: squeeze/debian-installer/index.wml
===
--- squeeze/debian-installer/index.wml  (revision 103)
+++ squeeze/debian-installer/index.wml  (working copy)
@@ -78,14 +78,7 @@
 and general information about loading firmware during an installation can
 be found in the Installation Guide (see Documentation below).
 /p
-div class=line
-div class=item col50
-pstrongnetinst (generally 175-240 MB) strongnon-free/strong
-CD images strongwith firmware/strong/strong/p
-small-non-free-cd-images /
 /div
-/div
-/div
 
 
 
Index: wheezy/debian-installer/index.wml
===
--- wheezy/debian-installer/index.wml   (revision 103)
+++ wheezy/debian-installer/index.wml   (working copy)
@@ -89,8 +89,8 @@
 /p
 div class=line
 div class=item col50
-pstrongnetinst (generally 240-290 MB) strongnon-free/strong
-CD images strongwith firmware/strong/strong/p
+pstrongnetinst (generally 240-290 MB) non-free
+CD images with firmware/strong/p
 small-non-free-cd-images /
 /div
 /div


Bug#752045: [RFR] templates://dictionaries-common/{dictionaries-common.templates}

2014-07-01 Thread victory
On Tue, 1 Jul 2014 07:40:45 +0200
Christian PERRIER wrote:

 Template: dictionaries-common/invalid_debconf_value
  To fix this error, reinstall (or install) the package that provides
  the missing value.

maybe it should be ${value}?

  renaming (e.g., wenglish- wamerican). In this case it is harmless and

wenglish - wamerican?


-- 
victory


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#752045: [RFR] templates://dictionaries-common/{dictionaries-common.templates}

2014-07-01 Thread victory
On Tue, 1 Jul 2014 18:07:14 +0200
Agustin Martin wrote:

renaming (e.g., wenglish- wamerican). In this case it is harmless and
  wenglish - wamerican?
 wamerican was formerly named wenglish.

the intention of the message was not the word but a space :)
wenglish - wamerican
   ^^^

-- 
victory


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#752859: stattrans: List intl/index.wml under general pages

2014-06-27 Thread victory

Package: www.debian.org
Severity: wishlist
Tags: patch l10n

stattrans.pl r1.83:
List international/index.wml under general pages
if (($file =~ /international\//) 
-   ($file !~ /international\/l10n\//)) {
+   (($file !~ /international\/index.wml$/) ||
+($file !~ /international\/l10n\//))) {

apparently this is wrong, as !a || !b matches everything when a and b 
disjoint,
so this code is the same as just if ($file =~ /international\//).

according to the commit message, what it want is instead:
if (($file =~ /international\//) 
($file !~ /international\/index.wml$/) 
($file !~ /international\/l10n\//))

if you are in doubt, see the slovene stat page at 
https://www.debian.org/devel/website/stats/sl

-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


stattrans-fix-r83.patch
Description: Binary data


Bug#752515: nss-pam-ldapd: [INTL:ja] New Japanese debconf translation

2014-06-24 Thread victory

Package: nss-pam-ldapd
Version: 0.9.4-1
Severity: wishlist
Tags: patch l10n

Dear nss-pam-ldapd package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


nss-pam-ldapd_0.9.4-1_ja.po.gz
Description: Binary data


Bug#752090: debian-security-support: [INTL:ja] New Japanese translation

2014-06-19 Thread victory

Package: debian-security-support
Severity: wishlist
Tags: patch l10n

Dear debian-security-support package maintainer,

 Here's Japanese program/debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


debian-security-support_2014.05.16_ja.tbz
Description: Binary data


Bug#751685: crossfire: [INTL:de] Updated German debconf translation

2014-06-15 Thread victory

see https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=748716
and 
http://lists.alioth.debian.org/pipermail/debian-l10n-devel/2014-June/003372.html

-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#751131: postgresql-common: [INTL:ja] New Japanese debconf translation

2014-06-10 Thread victory

Package: postgresql-common
Version: 155
Severity: wishlist
Tags: patch l10n

Dear postgresql-common package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1

-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


postgresql-common_155_ja.po.gz
Description: Binary data


Bug#750769: percona-xtradb-cluster-5.5: [INTL:ja] New Japanese debconf translation

2014-06-06 Thread victory

Package: percona-xtradb-cluster-5.5
Version: 5.5.37-25.10+dfsg-1
Severity: wishlist
Tags: patch l10n

Dear percona-xtradb-cluster-5.5 package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1

-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


percona-xtradb-cluster-5.5_5.5.37-25.10+dfsg-1_ja.po.gz
Description: Binary data


Bug#750055: igtf-policy-bundle: [INTL:ja] New Japanese debconf translation

2014-06-01 Thread victory

Package: igtf-policy-bundle
Version: 1.56-3
Severity: wishlist
Tags: patch l10n

Dear igtf-policy-bundle package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1

-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


igtf-policy-bundle_1.56-3_ja.po.gz
Description: Binary data


Bug#750149: [www] some improvement of validate

2014-06-01 Thread victory
Package: www.debian.org
Severity: wishlist
Tags: patch 

part 1:
- currently validate is invoked per 20 files at once and
  validate checks those files one by one in its loop,
  which means if the lang has 4k of files,
  the overhead creating a new process occurs 200 times (4k / 20).
  it looks like about 10% of its process time is wasted by the overhead

- on the other side, the validate is a perl script
  which means it can do/have anything inside of it.

- then, checking files in one loop instead of two loops, can reduce time.

- excluding releasenote docs explicitly in the perl script
  to avoid false positive.
  - btw, 5 release pages had errors in Japanese translation
that are currently not checked due to the false positive.

- remove useless ja specific hack. 

- test results on my vm (wheezy on virtualbox on vista), ja only:
  pass 20 w/ xargs: 5:40 5:39 5:41 5:39 5:37 5:42 5:38 5:39 6:06 5:37
  loop all in perl: 5:06 5:08 5:06 5:05 5:30 5:05 5:27 5:28 5:31 5:05
  - avg. of rank 2-9:
pass 20 w/ xargs: 5:39
loop all in perl: 5:14

--
part 2:
- check only updated file just after every build.
- checking only updated file takes only a few minutes
  so it can be run on every build.
spec:
- regular check checks files which had error in the previous check,
  and updated files only.
- full check runs once a day.

--
part 2 is based on part 1;
attached bz2 archive has 3 patch:
  diff between vcs and part 1 (validate1.diff)
  diff between part 1 and part 2 (validate1-2.diff)
  diff between vcs and part 2 (validate2.diff)

-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


validate.tbz
Description: Binary data


Bug#747697: [LCFC] templates://debian-security-support/{debian-security-support.templates}

2014-05-28 Thread victory
On Wed, 28 May 2014 12:45:51 +0200
Christoph Biedl wrote:

is limited used for packages which eg. has been doomed its EOL?
if that's it, it will better to say like security support *period*

-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#749589: clamav: [INTL:ja] New Japanese debconf translation

2014-05-28 Thread victory

Package: clamav
Version: 0.98.4~rc1+dfsg-2
Severity: wishlist
Tags: patch l10n

Dear clamav package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1

-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


clamav_0.98.4~rc1+dfsg-2_ja.po.gz
Description: Binary data


Bug#747348: [www] : do html escape is the right fix

2014-05-07 Thread victory

Package: www.debian.org
Severity: wishlist
Tags: patch 

html escape is needed *before* output here:

+   $maintainer{$lang/$file} =~ s//amp;/g;
+   $maintainer{$lang/$file} =~ s//lt;/g;
+   $maintainer{$lang/$file} =~ s//gt;/g;

-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1
--- stattrans-r115.pl   2014-05-08 02:46:02 +0900
+++ stattrans.pl2014-05-08 02:46:27 +0900
@@ -192,6 +192,9 @@
}
if ($transcheck-maintainer()) {
$maintainer{$lang/$file} = $transcheck-maintainer();
+   $maintainer{$lang/$file} =~ s//amp;/g;
+   $maintainer{$lang/$file} =~ s//lt;/g;
+   $maintainer{$lang/$file} =~ s//gt;/g;
}
$count++;
$sizes{$file} = (stat 
.($original{english/$file}||english)./.$file)[7];


Bug#745584: [www] : html attribute follows without any spaces

2014-04-22 Thread victory

Package: www.debian.org
Severity: wishlist
Tags: patch l10n

811:
print HTMLI 'table summary=gettext domain=statsPO Translation 
Statistics/gettextclass=stattrans'.\n;

needs to be:
print HTMLI 'table summary=gettext domain=statsPO Translation 
Statistics/gettext class=stattrans'.\n;


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#744857: [www] year's index of DPN should be in general cat

2014-04-15 Thread victory

Package: www.debian.org
Severity: wishlist
Tags: patch l10n

year's index of DPN should be in general instead of news category on 
website/stats/**

-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1
--- stattrans-old.pl2013-12-26 18:43:48 +0900
+++ stattrans.pl2014-04-15 23:53:45 +0900
@@ -426,7 +426,7 @@
$ui_body .=$u_tmp;
} elsif ((($file =~ /(News|events|security|vote)\/[0-9]{4}\//) 

  ($file !~ /index.wml$/)) ||
-($file =~ 
/(News\/weekly\/[0-9]{4}\/|security\/undated)/)) {
+($file =~ 
/(News\/weekly\/[0-9]{4}\/(timeline|\d+)|security\/undated)/)) {
$un_body .= $u_tmp;
} elsif (($file =~ /(consultants|users\/(com|edu|gov|org))\//) 

 ($file !~ /index.wml$/)) {


Bug#744878: wims-moodle: [INTL:ja] New Japanese debconf translation

2014-04-15 Thread victory

Package: wims-moodle
Version: 4.0-13
Severity: wishlist
Tags: patch l10n

Dear wims-moodle package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


wims-moodle_4.0-13_ja.po.gz
Description: Binary data


Bug#743904: ganeti: [INTL:ja] New Japanese debconf translation

2014-04-08 Thread victory

Package: ganeti
Version: 2.10.1-2
Severity: wishlist
Tags: patch l10n

Dear ganeti package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


ganeti_2.10.1-2_ja.po.gz
Description: Binary data


Bug#743874: clamav: [INTL:ja] New Japanese debconf translation

2014-04-07 Thread victory

Package: clamav
Version: 0.98.1+dfsg-4
Severity: wishlist
Tags: patch l10n

Dear clamav package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


clamav_0.98.1+dfsg-4_ja.po.gz
Description: Binary data


Bug#743680: distributed-net: [INTL:ja] New Japanese debconf translation

2014-04-05 Thread victory

Package: distributed-net
Version: 2.9111.520-2
Severity: wishlist
Tags: patch l10n

Dear distributed-net package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?

 note: attachments are: one for the one bubulle attached (*)
and another for patched w/ I pointed (**)

* https://lists.debian.org/debian-i18n/2014/04/msg2.html
** https://lists.debian.org/debian-i18n/2014/04/msg3.html

-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1

-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


distributed-net_2.9111.520-2_ja.po.gz
Description: Binary data


distributed-net_2.9111.520-2-2_ja.po.gz
Description: Binary data


Bug#741363: ddclient: [INTL:ja] Japanese debconf translation update

2014-03-11 Thread victory

Package: ddclient
Version: 3.8.1-1.1
Severity: wishlist
Tags: patch l10n

Dear ddclient package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


ddclient_3.8.1-1.1_ja.po.gz
Description: Binary data


Bug#740713: kinect-audio-setup: [INTL:ja] New Japanese debconf translation

2014-03-04 Thread victory

Package: kinect-audio-setup
Version: 0.3-2
Severity: wishlist
Tags: patch l10n

Dear kinect-audio-setup package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


kinect-audio-setup_0.3-2_ja.po.gz
Description: Binary data


Bug#740714: chef: [INTL:ja] New Japanese debconf translation

2014-03-04 Thread victory

Package: chef
Version: 11.8.2-4
Severity: wishlist
Tags: patch l10n

Dear chef package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


chef_11.8.2-4_ja.po.gz
Description: Binary data


Bug#740715: init-select: [INTL:ja] New Japanese debconf translation

2014-03-04 Thread victory

Package: init-select
Version: 1.20140106
Severity: wishlist
Tags: patch l10n

Dear init-select package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


init-select_1.20140106_ja.po.gz
Description: Binary data


Bug#740713: kinect-audio-setup: [INTL:ja] New Japanese debconf translation

2014-03-04 Thread victory
On Tue, 4 Mar 2014 12:09:26 +0100
Antonio Ospite wrote:

 the file you sent uses dos line endings[1]

attached w/ s/[crlf]/[lf]/g :)

-- 
victory


kinect-audio-setup_0.3-2_ja.po.gz
Description: Binary data


Bug#740363: spamprobe: [INTL:ja] Japanese translation update

2014-02-28 Thread victory

Package: spamprobe
Version: 1.4d-12.1
Severity: wishlist
Tags: patch l10n

Dear spamprobe package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


spamprobe_1.4d-12.1_ja.po.gz
Description: Binary data


Bug#740040: base-passwd: [INTL:ja] New Japanese translation

2014-02-24 Thread victory

Package: base-passwd
Version: 3.5.31
Severity: wishlist
Tags: patch l10n

Dear base-passwd package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


base-passwd_3.5.31_ja.po.gz
Description: Binary data


Bug#738724: apt-cacher-ng: [INTL:ja] Japanese translation update

2014-02-12 Thread victory

Package: apt-cacher-ng
Version: 0.7.24-2
Severity: wishlist
Tags: patch l10n

Dear apt-cacher-ng package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


apt-cacher-ng_0.7.24-2_ja.po.gz
Description: Binary data


Bug#733087: [LCFC] templates://apt-cacher-ng/{apt-cacher-ng.templates}

2014-01-19 Thread victory
On Mon, 20 Jan 2014 07:57:48 +0100
Christian PERRIER wrote:

  If this field is left empty, apt-cacher-ng wille listen on all
  interfaces, with all supported protocols.

s/wille/will/


-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#735877: pinto: [INTL:ja] New Japanese translation

2014-01-17 Thread victory

Package: pinto
Version: 0.90+dfsg-2
Severity: wishlist
Tags: patch l10n

Dear pinto package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


pinto_0.90+dfsg-2_ja.po.gz
Description: Binary data


Bug#735284: MariaDB-5.5: [INTL:ja] New Japanese translation

2014-01-14 Thread victory

Package: MariaDB-5.5
Version: 5.5.32-1
Severity: wishlist
Tags: patch l10n

Dear MariaDB-5.5 package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


mariadb-5.5_5.5.32-1_ja.po.gz
Description: Binary data


Bug#733300: [LCFC] templates://kinect-audio-setup/{templates}

2014-01-12 Thread victory
On Mon, 13 Jan 2014 07:24:23 +0100
Christian PERRIER wrote:

 Description: Microsoft Kinect audio sensor setup helpers
  When the Kinect is first plugged in it shows up as a generic USB device
  with a bulk endpoint; after the appropriate firmware is installed, a
  re-enumeration takes place and a USB Audio Class device becomes available.
  .
  Since the firmware is not redistributable, kinect-audio-setup provides
  tools to download it from the Internet at installation time, and sets up
  udev rules to call the firmware loader when the device is plugged in to
  finally get the USB Audio Class device (UAC).

wonders why say (UAC) at the 2nd occurrence instead of the 1st


-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#733235: nsd: [INTL:ja] New Japanese translation

2013-12-27 Thread victory

Package: nsd
Version: 4.0.0-4
Severity: wishlist
Tags: patch l10n

Dear nsd package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory


nsd_4.0.0-4_ja.po.gz
Description: Binary data


Bug#731109: [RFR] templates://pinto/{pinto.templates}

2013-12-13 Thread victory
On Sat, 14 Dec 2013 08:35:27 +0100
Christian PERRIER wrote:

 Rationale:
 --- pinto.old/debian/pinto.templates  2013-12-02 07:30:02.318756824 +0100
 - This is the username and password you will use to log in to your pinto
 - installation after configuration is complete. If you do not provide a
 - password, you will have to configure access to pinto yourself.
 + This login/password combination is needed, after installation, to log
 + in Pinto through its web interface.

why change username to login?
I prefer
login ID/password
or
username/password

-- 
victory


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#730607: fpc: [INTL:ja] debconf Japanese translation update

2013-11-26 Thread victory

Package: fpc
Version: 2.6.2-6
Severity: wishlist
Tags: patch l10n

Dear fpc package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


fpc_2.6.2-6_ja.po.gz
Description: Binary data


Bug#730481: mini-buildd: [INTL:ja] New Japanese translation

2013-11-25 Thread victory

Package: mini-buildd
Version: 1.0.0~beta.23
Severity: wishlist
Tags: patch l10n

Dear mini-buildd package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


mini-buildd_1.0.0~beta.23_ja.po.gz
Description: Binary data


Bug#730169: fheroes2-pkg: [INTL:ja] New Japanese debconf translation

2013-11-22 Thread victory

Package: fheroes2-pkg
Version: 0+svn20130304-2-2
Severity: wishlist
Tags: patch l10n

Dear fheroes2-pkg package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


fheroes2-pkg_0+svn20130304-2-2_ja.po.gz
Description: Binary data


Bug#730171: dovecot: [INTL:ja] New Japanese debconf translation

2013-11-22 Thread victory

Package: dovecot
Version: 1:2.2.5-2
Severity: wishlist
Tags: patch l10n

Dear dovecot package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


dovecot_1_2.2.5-2_ja.po.gz
Description: Binary data


Bug#730173: localepurge: [INTL:ja] New Japanese debconf translation

2013-11-22 Thread victory

Package: localepurge
Version: 0.7.4
Severity: wishlist
Tags: patch l10n

Dear localepurge package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


localepurge_0.7.4_ja.po.gz
Description: Binary data


Bug#725467: [LCFC] templates://fheroes2-pkg/{templates}

2013-10-30 Thread victory
On Wed, 30 Oct 2013 17:58:24 +0100
Christian PERRIER wrote:

 Template: fheroes2-pkg/post-invoke_hook-install
 _Description: Install APT post-invoke hook?
 Template: fheroes2-pkg/post-invoke_hook-remove
 _Description: Remove APT post-invoke hook?
  If activated, the APT post-invoke hook takes care of future automatic

the same description on install/remove without its object,
 it may confuse users on the latter: 
If activate (=the answer is yes) the removing hook / this choice ...

so, it may be better something like:
If using the hook is activated ...

-- 
victory


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#725851: [RFR] templates://fpc/{fp-compiler.templates.in}

2013-10-24 Thread victory
On Fri, 25 Oct 2013 06:50:16 +0200
Christian PERRIER wrote:

  Template: fp-compiler/windres
  Type: string
  Default:
 -_Description: Choose a default MS Windows .rc resource compiler:
 +_Description: Dfault MS Windows .rc resource compiler:


-- 
victory


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#725850: [RFR] templates://mini-buildd/{mini-buildd.templates}

2013-10-22 Thread victory
On Tue, 22 Oct 2013 14:10:06 +0200
Christian PERRIER wrote:

  Template: mini-buildd/admin_password
 + mini-buildd. This password will be used, for the admin user

admin user


-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#726973: apt-listdifferences: [INTL:ja] New Japanese translation

2013-10-20 Thread victory

Package: apt-listdifferences
Version: 1.20130825
Severity: wishlist
Tags: patch l10n

Dear apt-listdifferences package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


apt-listdifferences_ja.po.gz
Description: Binary data


Bug#726975: bilibop: [INTL:ja] New Japanese translation

2013-10-20 Thread victory

Package: bilibop
Version: 0.4.17
Severity: wishlist
Tags: patch l10n

Dear bilibop package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


bilibop_0.4.17_ja.po.gz
Description: Binary data


Bug#726744: pluxml: [INTL:ja] New Japanese translation

2013-10-19 Thread victory
On Fri, 18 Oct 2013 18:56:49 +0200
Christian PERRIER wrote:

 But, this one and all others that follow should be translated.

updated file attached :)


-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


pluxml_ja.po.gz
Description: Binary data


Bug#726744: pluxml: [INTL:ja] New Japanese translation

2013-10-18 Thread victory

Package: pluxml
Version: 5.2-3
Severity: wishlist
Tags: patch l10n

Dear pluxml package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


pluxml_5.2-3_ja.po.gz
Description: Binary data


Bug#726744: pluxml: [INTL:ja] New Japanese translation

2013-10-18 Thread victory
On Fri, 18 Oct 2013 18:56:49 +0200
Christian PERRIER wrote:

 But, this one and all others that follow should be translated.

updated file attached :)


-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


pluxml_ja.po.gz
Description: Binary data


Bug#726059: strongswan: [INTL:ja] Japanese po-debconf translation update

2013-10-11 Thread victory

Package: strongswan
Version: 5.1.0-1
Severity: wishlist
Tags: patch l10n

Dear strongswan package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


strongswan_5.1.0-1_ja.po.gz
Description: Binary data


Bug#725724: [INTL:ja] typo on italc po-debconf template translation

2013-10-08 Thread victory
On Tue, 8 Oct 2013 07:25:20 +0200
Christian PERRIER wrote:

 Quoting victory (victory@gmail.com):
  Package: italc
  Version: 1:2.0.1-2
  Severity: wishlist
  Tags: patch l10n
  Dear italc package maintainer,
   Thanks to Nobuhiro Ban, a typo has been found.
   Here's updated Japanese po-debconf template translation (ja.po) file.
   Could you apply it on next update, please?
 You apparently forgot the attachment, I'm afraid...

oops...
attached

-- 
victory
no need to CC me :-)
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


italc_1_2.0.1-2_ja.po.gz
Description: Binary data


Bug#725724: [INTL:ja] typo on italc po-debconf template translation

2013-10-07 Thread victory

Package: italc
Version: 1:2.0.1-2
Severity: wishlist
Tags: patch l10n

Dear italc package maintainer,

 Thanks to Nobuhiro Ban, a typo has been found.
 Here's updated Japanese po-debconf template translation (ja.po) file.

 Could you apply it on next update, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


-- 
To UNSUBSCRIBE, email to debian-bugs-dist-requ...@lists.debian.org
with a subject of unsubscribe. Trouble? Contact listmas...@lists.debian.org



Bug#724706: snort: [INTL:ja] New Japanese translation

2013-09-26 Thread victory

Package: snort
Version: 2.9.5.3-2
Severity: wishlist
Tags: patch l10n

Dear snort package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


snort_2.9.5.3-2_ja.po.gz
Description: Binary data


Bug#724310: miniupnpd: [INTL:ja] New Japanese translation

2013-09-23 Thread victory

Package: miniupnpd
Version: 1.8.20130730-2
Severity: wishlist
Tags: patch l10n

Dear miniupnpd package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


miniupnpd_1.8.20130730-2_ja.po.gz
Description: Binary data


Bug#723754: italc: [INTL:ja] New Japanese translation

2013-09-19 Thread victory

Package: italc
Version: 1:2.0.1-2
Severity: wishlist
Tags: patch l10n

Dear italc package maintainer,

 Here's Japanese po-debconf template translation (ja.po) file that 
 reviewed by several Japanese Debian developers and users.

 Could you apply it, please?


-- 
victory
http://userscripts.org/scripts/show/102724 0.0.1.4
http://userscripts.org/scripts/show/163846 0.0.1
http://userscripts.org/scripts/show/163848 0.0.1


italc_1_2.0.1-2_ja.tar.bz2
Description: Binary data


Bug#721934: cinder: [INTL:ja] New Japanese translation

2013-09-06 Thread victory
On Fri, 6 Sep 2013 07:01:23 +0200
Christian PERRIER wrote:

 I'm afraid you forgot attaching the file..;-)

oops..
attached

-- 
victory


cinder_2013.1.2-4_ja.po.gz
Description: Binary data


Bug#721934: cinder: [INTL:ja] New Japanese translation

2013-09-06 Thread victory
On Fri, 6 Sep 2013 18:37:43 +0200
Christian PERRIER wrote:

 Thanks. Two strings are however apparently not translated:

ouch, completely forgotten...
sorry for taking precious time
this should have them

-- 
victory


cinder_2013.1.2-4-2_ja.po.gz
Description: Binary data


  1   2   3   >