Plugin Directory

Changeset 388405


Ignore:
Timestamp:
05/24/2011 08:09:39 AM (15 years ago)
Author:
Ste-Bi
Message:
 
Location:
appstore/trunk
Files:
5 edited

Legend:

Unmodified
Added
Removed
  • appstore/trunk/AppFunctions.php

    r387865 r388405  
    371371   
    372372    include WP_PLUGIN_DIR."/".PLUGIN_BASE_DIRECTORY."/libchart/classes/libchart.php";
    373     //$chart = new LineChart(500, 250);
    374373    $chart = new VerticalBarChart(500, 250);
    375374    $serie1 = new XYDataSet();
     
    395394   
    396395    include WP_PLUGIN_DIR."/".PLUGIN_BASE_DIRECTORY."/libchart/classes/libchart.php";
    397     //$chart = new LineChart(500, 250);
    398396    $chart = new PieChart(500, 300);
    399397    $dataSet = new XYDataSet();
  • appstore/trunk/AppStore.php

    r388051 r388405  
    364364            $sellerUrl = $obj->results[$i]->sellerUrl;
    365365            $price = $obj->results[$i]->price;
     366            $AppStore_country = get_option("AppStore_country");
    366367           
    367368            if ($price == 0.00000) {
    368                     $price = __("Kostenlos","appsstore");
    369                 } else {
    370                     //$price .= getCurrency($AppStore_country);
    371                    
    372                     if( $AppStore_country == "US") {
    373                         $price .= " USD";
    374                     }elseif ($AppStore_country == "CH") {   
    375                         $price .= " CHF";
    376                     }elseif ($AppStore_country == "GB") {   
    377                         $price .= " GBP";
    378                     } else {
    379                         $price .= " EUR";
    380                     }
    381                 }
     369            $price = __("Kostenlos","appstore");   
     370            } else {
     371                $price = str_replace("{0}",$price,getCurrency($AppStore_country));
     372            }
    382373           
    383374            $searchresult .= '<table valign="top"><tr><td width=60px>';
     
    501492
    502493        $language = array(
     494            "de_de" => __("Deutsch", 'appstore'),
     495            "it_it" => __("Italienisch", 'appstore'),
     496            "pl_pl" => __("Polnisch", 'appstore'),
     497            "zh_cn" => __("Chinesisch", 'appstore'),
    503498            "de_de" => __("Deutsch", 'appstore'),
    504499            "en_us" => __("Englisch", 'appstore')
  • appstore/trunk/languages/appstore-it_IT.po

    r387987 r388405  
    66"Report-Msgid-Bugs-To: http://wordpress.org/tag/appstore\n"
    77"POT-Creation-Date: 2011-05-23 07:36:03+00:00\n"
    8 "PO-Revision-Date: 2011-05-23 14:47+0100\n"
     8"PO-Revision-Date: 2011-05-24 08:13+0100\n"
    99"Last-Translator: Steeeve <steve.f@gmx.at>\n"
    1010"Language-Team: Francesco <Francesco>\n"
     
    3939#: AppStore.php:493
    4040msgid "Deutsch"
    41 msgstr "tedesco"
     41msgstr "Tedesco"
    4242
    4343#: AppStore.php:494
    4444msgid "Englisch"
    45 msgstr "inglese"
     45msgstr "Inglese"
    4646
    4747#: AppStore.php:574
     
    8484#: AppStore.php:688
    8585msgid "Custom Affiliate URL:"
    86 msgstr "Custom Affiliate URL:"
     86msgstr "URL affiliazione personalizzata:"
    8787
    8888#: AppStore.php:637
     
    150150"Das Land gibt an auf welchen Store die Suche durchgef&uuml;hrt wird. So k&ouml;nnen zB keine Apps angezeigt werden, \n"
    151151"\t\t\twelche sich nur im US Store befinden aber ein anderer Store eingestellt ist."
    152 msgstr "Il Paese definisce da quale store vengono recuperate le informazioni. Non è possibile mostrare applicazioni provenienti da Paesi esterni a quello dello Store selezionato."
     152msgstr "Il Paese definisce da quale Store vengono recuperate le informazioni. Non è possibile mostrare applicazioni provenienti da Paesi esterni a quello dello Store selezionato."
    153153
    154154#: AppStore.php:678
     
    202202"\t\t\tPlugins und weiterer spannender Projekte zu unterst&uuml;tzen. Deshalb bitten wir dich, \n"
    203203"\t\t\tden betreffenden Code nicht manuell zu entfernen."
    204 msgstr "Non è un segreto che la maggior parte sviluppatori fatica a trarre benefici economici per il loro lavoro. E' triste ma è la verità. Per questo abbiamo incluso alcune righe nel plugin che ci assicurano un minimo di guadagno: ogni 10 link in uscita verso l'App Store, uno contiene il nostro ID Tradedoubler. Sono davvero pochi centesimi per te, quindi per favore non rimuovere manualmente questo codice. Oltretutto, con il tuo supporto, saremo in grado di sviluppare ed aggiornare questo plugin. :-)"
     204msgstr "Non è un segreto che la maggior parte degli sviluppatori fatica a trarre benefici economici per il loro lavoro. E' triste ma è la verità. Per questo abbiamo incluso alcune righe nel plugin che ci assicurano un minimo di guadagno: ogni 10 link in uscita verso l'App Store, uno contiene il nostro ID Tradedoubler. Sono davvero pochi centesimi per te, quindi per favore non rimuovere manualmente questo codice. Oltretutto, con il tuo supporto, saremo in grado di sviluppare ed aggiornare questo plugin. :-)"
    205205
    206206#: AppFunctions.php:596
  • appstore/trunk/readme.txt

    r388051 r388405  
    5252
    5353== Changelog ==
     54= 4.1.2 =
     55* Updatet Italian Translation
     56
    5457= 4.4.1 =
    5558* Fixed: Appinmg not working
Note: See TracChangeset for help on using the changeset viewer.