Changeset 388405
- Timestamp:
- 05/24/2011 08:09:39 AM (15 years ago)
- Location:
- appstore/trunk
- Files:
-
- 5 edited
-
AppFunctions.php (modified) (2 diffs)
-
AppStore.php (modified) (2 diffs)
-
languages/appstore-it_IT.mo (modified) (previous)
-
languages/appstore-it_IT.po (modified) (5 diffs)
-
readme.txt (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
appstore/trunk/AppFunctions.php
r387865 r388405 371 371 372 372 include WP_PLUGIN_DIR."/".PLUGIN_BASE_DIRECTORY."/libchart/classes/libchart.php"; 373 //$chart = new LineChart(500, 250);374 373 $chart = new VerticalBarChart(500, 250); 375 374 $serie1 = new XYDataSet(); … … 395 394 396 395 include WP_PLUGIN_DIR."/".PLUGIN_BASE_DIRECTORY."/libchart/classes/libchart.php"; 397 //$chart = new LineChart(500, 250);398 396 $chart = new PieChart(500, 300); 399 397 $dataSet = new XYDataSet(); -
appstore/trunk/AppStore.php
r388051 r388405 364 364 $sellerUrl = $obj->results[$i]->sellerUrl; 365 365 $price = $obj->results[$i]->price; 366 $AppStore_country = get_option("AppStore_country"); 366 367 367 368 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 } 382 373 383 374 $searchresult .= '<table valign="top"><tr><td width=60px>'; … … 501 492 502 493 $language = array( 494 "de_de" => __("Deutsch", 'appstore'), 495 "it_it" => __("Italienisch", 'appstore'), 496 "pl_pl" => __("Polnisch", 'appstore'), 497 "zh_cn" => __("Chinesisch", 'appstore'), 503 498 "de_de" => __("Deutsch", 'appstore'), 504 499 "en_us" => __("Englisch", 'appstore') -
appstore/trunk/languages/appstore-it_IT.po
r387987 r388405 6 6 "Report-Msgid-Bugs-To: http://wordpress.org/tag/appstore\n" 7 7 "POT-Creation-Date: 2011-05-23 07:36:03+00:00\n" 8 "PO-Revision-Date: 2011-05-2 3 14:47+0100\n"8 "PO-Revision-Date: 2011-05-24 08:13+0100\n" 9 9 "Last-Translator: Steeeve <steve.f@gmx.at>\n" 10 10 "Language-Team: Francesco <Francesco>\n" … … 39 39 #: AppStore.php:493 40 40 msgid "Deutsch" 41 msgstr " tedesco"41 msgstr "Tedesco" 42 42 43 43 #: AppStore.php:494 44 44 msgid "Englisch" 45 msgstr " inglese"45 msgstr "Inglese" 46 46 47 47 #: AppStore.php:574 … … 84 84 #: AppStore.php:688 85 85 msgid "Custom Affiliate URL:" 86 msgstr " Custom Affiliate URL:"86 msgstr "URL affiliazione personalizzata:" 87 87 88 88 #: AppStore.php:637 … … 150 150 "Das Land gibt an auf welchen Store die Suche durchgeführt wird. So können zB keine Apps angezeigt werden, \n" 151 151 "\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."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." 153 153 154 154 #: AppStore.php:678 … … 202 202 "\t\t\tPlugins und weiterer spannender Projekte zu unterstützen. Deshalb bitten wir dich, \n" 203 203 "\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. :-)"204 msgstr "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. :-)" 205 205 206 206 #: AppFunctions.php:596 -
appstore/trunk/readme.txt
r388051 r388405 52 52 53 53 == Changelog == 54 = 4.1.2 = 55 * Updatet Italian Translation 56 54 57 = 4.4.1 = 55 58 * Fixed: Appinmg not working
Note: See TracChangeset
for help on using the changeset viewer.