From svn-uludag at uludag.org.tr Tue Jul 3 00:06:55 2007 From: svn-uludag at uludag.org.tr (svn-uludag at uludag.org.tr) Date: Tue, 3 Jul 2007 00:06:55 +0300 (EEST) Subject: [u18a-en] r14665 - in trunk: web/miss/eng/projects/translation/stats web_araclari/po_stats/new Message-ID: <20070702210655.462677C000C@liste.uludag.org.tr> Author: riklaunim Date: Tue Jul 3 00:06:54 2007 New Revision: 14665 Added: trunk/web/miss/eng/projects/translation/stats/stats-pl.html trunk/web_araclari/po_stats/new/ trunk/web_araclari/po_stats/new/po_stats.py trunk/web_araclari/po_stats/new/polib.py trunk/web_araclari/po_stats/new/pstemplates.py trunk/web_araclari/po_stats/new/readme.txt Modified: trunk/web/miss/eng/projects/translation/stats/index.html Log: added new script for updating translations statistics and added page for Polish translations stats Modified: trunk/web/miss/eng/projects/translation/stats/index.html ================================================================= --- trunk/web/miss/eng/projects/translation/stats/index.html (original) +++ trunk/web/miss/eng/projects/translation/stats/index.html Tue Jul 3 00:06:54 2007 @@ -46,6 +46,7 @@
  • Statistics for German
  • Statistics for Spanish
  • Statistics for Brazilian Portuguese +
  • Statistics for Polish
  • Statistics for Italian
  • Statistics for French
  • Statistics for Catalan From svn-uludag at uludag.org.tr Tue Jul 3 01:52:36 2007 From: svn-uludag at uludag.org.tr (svn-uludag at uludag.org.tr) Date: Tue, 3 Jul 2007 01:52:36 +0300 (EEST) Subject: [u18a-en] r14666 - in trunk: web/miss/eng/projects/translation/stats web_araclari/po_stats/new Message-ID: <20070702225236.B7AF47C001B@liste.uludag.org.tr> Author: riklaunim Date: Tue Jul 3 01:52:36 2007 New Revision: 14666 Modified: trunk/web/miss/eng/projects/translation/stats/stats-ca.html trunk/web/miss/eng/projects/translation/stats/stats-de.html trunk/web/miss/eng/projects/translation/stats/stats-es.html trunk/web/miss/eng/projects/translation/stats/stats-fr.html trunk/web/miss/eng/projects/translation/stats/stats-it.html trunk/web/miss/eng/projects/translation/stats/stats-nl.html trunk/web/miss/eng/projects/translation/stats/stats-pl.html trunk/web/miss/eng/projects/translation/stats/stats-pt_BR.html trunk/web/miss/eng/projects/translation/stats/stats-tr.html trunk/web_araclari/po_stats/new/po_stats.py Log: updated translation stats and the generating script Modified: trunk/web/miss/eng/projects/translation/stats/stats-ca.html ================================================================= Suppressed! Too long (more than 250 lines) diff output suppressed... Modified: trunk/web/miss/eng/projects/translation/stats/stats-de.html ================================================================= Suppressed! Too long (more than 250 lines) diff output suppressed... Modified: trunk/web/miss/eng/projects/translation/stats/stats-es.html ================================================================= Suppressed! Too long (more than 250 lines) diff output suppressed... Modified: trunk/web/miss/eng/projects/translation/stats/stats-fr.html ================================================================= Suppressed! Too long (more than 250 lines) diff output suppressed... Modified: trunk/web/miss/eng/projects/translation/stats/stats-it.html ================================================================= Suppressed! Too long (more than 250 lines) diff output suppressed... Modified: trunk/web/miss/eng/projects/translation/stats/stats-nl.html ================================================================= Suppressed! Too long (more than 250 lines) diff output suppressed... Modified: trunk/web/miss/eng/projects/translation/stats/stats-pl.html ================================================================= --- trunk/web/miss/eng/projects/translation/stats/stats-pl.html (original) +++ trunk/web/miss/eng/projects/translation/stats/stats-pl.html Tue Jul 3 01:52:36 2007 @@ -50,9 +50,9 @@
    -

    nokta Po stats for -%s- +

    nokta Po stats for -pl- -

    +

    @@ -130,8 +130,8 @@ - - + + @@ -181,8 +181,8 @@ - - + + @@ -198,8 +198,8 @@ - - + + @@ -215,8 +215,8 @@ - - + + @@ -266,8 +266,8 @@ - - + + @@ -300,8 +300,8 @@ - - + + @@ -317,8 +317,8 @@ - - + + @@ -334,8 +334,8 @@ - - + + @@ -385,8 +385,8 @@ - - + + Modified: trunk/web/miss/eng/projects/translation/stats/stats-pt_BR.html ================================================================= Suppressed! Too long (more than 250 lines) diff output suppressed... Modified: trunk/web/miss/eng/projects/translation/stats/stats-tr.html ================================================================= Suppressed! Too long (more than 250 lines) diff output suppressed... Modified: trunk/web_araclari/po_stats/new/po_stats.py ================================================================= --- trunk/web_araclari/po_stats/new/po_stats.py (original) +++ trunk/web_araclari/po_stats/new/po_stats.py Tue Jul 3 01:52:36 2007 @@ -31,7 +31,7 @@ "Boot Manager": REPO_PATH + "tasma/boot-manager/po/%s.po" % lang,} for langs in po_files: - ret = htmlHeaderTemplate['en'] + ret = htmlHeaderTemplate['en'] % langs for tra in po_files[langs]: if isfile(po_files[langs][tra]): po = polib.pofile(po_files[langs][tra]) @@ -45,7 +45,8 @@ path = po_files[langs][tra].replace(REPO_PATH, REAL_PATH) ret = ret + table(path=path, name=tra, all=str(all), translated=str(translated), fuzzy=str(fuzzy), untranslated=str(untranslated), percent=str(percent)+'%', percent_fuzzy=str(percent_fuzzy), percent_untrans=str(percent_untrans)) else: - ret = ret + table(path=path, name=tra, all='-', translated='-', fuzzy='-', untranslated='-', percent='0%', percent_fuzzy='0', percent_untrans='100') + path = po_files[langs][tra].replace(langs + '.po', '').replace(REPO_PATH, REAL_PATH) + ret = ret + table(path=path, name=tra, all='no translation', translated='-', fuzzy='-', untranslated='-', percent='0%', percent_fuzzy='0', percent_untrans='100') ret = ret + htmlFooterTemplate["en"] file = open(REPO_PATH + 'web/miss/eng/projects/translation/stats/stats-' + langs + '.html', 'w') file.write(ret) From svn-uludag at uludag.org.tr Tue Jul 3 20:22:53 2007 From: svn-uludag at uludag.org.tr (svn-uludag at uludag.org.tr) Date: Tue, 3 Jul 2007 20:22:53 +0300 (EEST) Subject: [u18a-en] r14686 - in trunk: pardusman/po plsa/po repokit/po web/miss/eng/projects/translation/stats Message-ID: <20070703172253.75F567C001B@liste.uludag.org.tr> Author: riklaunim Date: Tue Jul 3 20:22:53 2007 New Revision: 14686 Added: trunk/pardusman/po/pl.po trunk/plsa/po/pl.po trunk/repokit/po/pl.po Modified: trunk/web/miss/eng/projects/translation/stats/stats-pl.html Log: more Polish translations Modified: trunk/web/miss/eng/projects/translation/stats/stats-pl.html ================================================================= --- trunk/web/miss/eng/projects/translation/stats/stats-pl.html (original) +++ trunk/web/miss/eng/projects/translation/stats/stats-pl.html Tue Jul 3 20:22:53 2007 @@ -215,18 +215,18 @@ - - - - - + + + + + @@ -266,18 +266,18 @@ - - - - - + + + + + @@ -300,18 +300,18 @@ - - - - - + + + + + From svn-uludag at uludag.org.tr Tue Jul 3 22:13:09 2007 From: svn-uludag at uludag.org.tr (svn-uludag at uludag.org.tr) Date: Tue, 3 Jul 2007 22:13:09 +0300 (EEST) Subject: [u18a-en] r14692 - in trunk: knazar/po web/miss/eng/projects/translation web/miss/eng/projects/translation/stats Message-ID: <20070703191309.AC0D07C0013@liste.uludag.org.tr> Author: riklaunim Date: Tue Jul 3 22:13:09 2007 New Revision: 14692 Added: trunk/knazar/po/pl.po Modified: trunk/web/miss/eng/projects/translation/stats/stats-pl.html trunk/web/miss/eng/projects/translation/teams.html Log: Added Polish team entry and translations update Modified: trunk/web/miss/eng/projects/translation/stats/stats-pl.html ================================================================= --- trunk/web/miss/eng/projects/translation/stats/stats-pl.html (original) +++ trunk/web/miss/eng/projects/translation/stats/stats-pl.html Tue Jul 3 22:13:09 2007 @@ -130,18 +130,18 @@ - - - - - + + + + + Modified: trunk/web/miss/eng/projects/translation/teams.html ================================================================= --- trunk/web/miss/eng/projects/translation/teams.html (original) +++ trunk/web/miss/eng/projects/translation/teams.html Tue Jul 3 22:13:09 2007 @@ -51,6 +51,7 @@ + From svn-uludag at uludag.org.tr Thu Jul 5 14:08:42 2007 From: svn-uludag at uludag.org.tr (svn-uludag at uludag.org.tr) Date: Thu, 5 Jul 2007 14:08:42 +0300 (EEST) Subject: [u18a-en] r14714 - trunk/web/miss/banner Message-ID: <20070705110842.C53777C0029@liste.uludag.org.tr> Author: loker Date: Thu Jul 5 14:08:42 2007 New Revision: 14714 Modified: trunk/web/miss/banner/index.html Log: blog kardeşliğini kaldıralım Modified: trunk/web/miss/banner/index.html ================================================================= --- trunk/web/miss/banner/index.html (original) +++ trunk/web/miss/banner/index.html Thu Jul 5 14:08:42 2007 @@ -42,19 +42,7 @@
    File Total Messages
    Knazar-Knazarno translation - - -
    Package Descriptions-Package Descriptionsno translation - - -
    Kaptan-Kaptanno translation - - -
    PLSA-PLSAno translation - - -
    Pardusman-Pardusmanno translation - - -
    Repokit-Repokitno translation - - -
    Package Manager-Package Managerno translation - - -
    YALI-YALIno translation - - -
    PiSi-PiSino translation - - -
    PLSAno translation---PLSA212100
    - + - +
    Pardusmanno translation---Pardusman585800
    - + - +
    Repokitno translation---Repokit474700
    - + - +
    Knazarno translation---Knazar141400
    - + - +
    German Mustafa Ölçerman pardus-translation-de Status
    Spanish Klemens Haeckel pardus-translation-es Status
    Brazilian Portuguese Pedro Leite pardus-translation-ptbr Status
    Polish Piotr Mali?ski -- Status
    French Amine Chadly -- Status
    Catalan Pau Amaro-Seoane pardus-translation-ca Status
    Pardus'un tanınmasına yardım edin!

    Aşağıda gördüğünüz görsellerden dilediğinizi web sitenizde, blogunuzda kullanabilir ve Pardus'un tanıtımına katkıda bulunabilirsiniz.
    Sitenize bu düğmeleri yerleştirmek için doğrudan altlarında bulunan kodları sitenizin koduna ekleyebilirsiniz. -


    -Özgürlük İçin... - Blog Kardeşliği - - - -
    -

    468*60
    Pardus... Özgürlük İçin...
    -

    -120*240
    Pardus... Özgürlük İçin...
    -
    -
    +
    80*15
    Pardus... Özgürlük İçin...