![Show/hide content [x]](themes/dragonfly/images/minus.png) Navigation
Home Community News Search Projekte
![Show/hide content [x]](themes/dragonfly/images/minus.png) Wer ist wo
![Show/hide content [x]](themes/dragonfly/images/minus.png) Languages
![Show/hide content [x]](themes/dragonfly/images/minus.png) Design
Each user can view the site with a different theme.
Themes marked with a * also change the forum look.
![Show/hide content [x]](themes/dragonfly/images/minus.png) Downloads (Top)
|
DownloadsPro - deutsch?!
| Author |
Message |
Lancomas


Joined: Apr 24, 2008 Posts: 46
|
Post subject: DownloadsPro - deutsch?! Posted: 06.08.2008 08:51 |
|
Ha Ihr Lieben.
Gibts für das Modul "DownloadsPro" auch nen deutsches Sprachpackage?
Wenn ja, wo bekomme ich es? Googlen hat nix gebracht... 
LG
Lanco
Lancomas's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS) */PHP5/MySql/Dragonfly 9.2.1 www.koj-gilde.de.tc |
|
| Back to top |
|
 |
Poldi


Joined: Nov 14, 2004 Posts: 705
|
Post subject: Re: DownloadsPro - deutsch?! Posted: 06.08.2008 18:31 |
|
Soweit ich weiß gibt es derzeit noch kein deutsches Languagefile dafür ... irgendwer wollte mal eins machen, aber das ist wohl eingeschlafen ...
_________________ gG,
Poldi
www.green-dragon.de (Dragonfly 9.2.1)
www.tampones.de (Dragonfly 9.2.1)
www.bfg-deggendorf.de (Dragonfly 9.2.1)
www.sexy-goths.de (Dragonfly 9.1.2.1)
www.gig-hunter.de (deceased)
www.green-dragon.net (Dragonfly CVS ... Testseite)
Poldi's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux/1.3.37/4.0.27-5.0.18/4.4.9-5.2.1/9.1.0.0-9.2.1 |
|
| Back to top |
|
 |
Katerrobin


Joined: Feb 14, 2008 Posts: 144
|
Post subject: Re: DownloadsPro - deutsch?! Posted: 06.08.2008 19:36 |
|
Ich bin gerade dabei 
Wenn es Dir reicht das die Userseite schon Deutsch ist, kann ich es schicken.
Katerrobin's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS) Apache / PHP 4.4.8 / MySQL 4.1.2.2 / CPG 9.2.1 |
|
| Back to top |
|
 |
Lancomas


Joined: Apr 24, 2008 Posts: 46
|
Post subject: Re: DownloadsPro - deutsch?! Posted: 06.08.2008 21:09 |
|
Hi Kater,
wär schonmal ned schlecht, bitteeee!
Lancomas's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS) */PHP5/MySql/Dragonfly 9.2.1 www.koj-gilde.de.tc |
|
| Back to top |
|
 |
Klas


Joined: Apr 14, 2004 Posts: 293
|
Post subject: Re: DownloadsPro - deutsch?! Posted: 08.08.2008 13:49 |
|
www.dragonflycms.org/F...ro+german/
?
_________________ Bitte lies dies bevor du fragst.
Klas's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
 |
|
| Back to top |
|
 |
Neofred


Joined: Jul 06, 2004 Posts: 79
|
Post subject: Re: DownloadsPro - deutsch?! Posted: 17.12.2008 15:22 |
|
Hallo zusammen, ich bin gerade an dem Modul dran und habe dazu eine Frage. Es reicht leider nicht die Sprachdatei zu übersetzen. Es müssen template etc. erst mal Multilingual gemacht werden. Z.B. steht in dem Template my_downloads.html folgendes:
Array:
<table class="forumline" cellspacing="1" width="100%">
<tr>
<th align="left" colspan="2"> Current Downloads </th>
<th width="50"> Active </th>
<th width="50"> Views </th>
<th width="50"> Hits </th>
<th width="100"> Rating </th>
<th width="100"> Popularity </th>
</tr>
Wie kriegt man in einem html - Template eine Übersetzung nach dem Schema
Array:
define('_DLP_VARIABLE','Das ist deutsch'); rein? Mit dem üblichen '._DLP_VARIABLE.' gehts auf jeden Fall nicht.
Neofred's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS) Linux server11072 2.6.20.4 / MySQL 5.0.32 / PHP 5.2.0-8 / CPG 9.2.1 |
|
| Back to top |
|
 |
Klas


Joined: Apr 14, 2004 Posts: 293
|
Post subject: Re: DownloadsPro - deutsch?! Posted: 17.12.2008 17:37 |
|
1. Die Sprachdatei downloads.php ergänzen:
Array:
define('_DLP_CURRENTDOWNLOADS',' Current Downloads ');
2. Nachsehen wo die my_downloads.html initialisiert wird -> modules/Downloads/manage.php (Zeile 380 bei DLP 3.0.0.15 ) und ergänzen:
Array:
$cpgtpl->assign_vars(array(
'L_CURRENTDOWNLOADS' => _DLP_CURRENTDOWNLOADS,
'L_CATEGORY' => _CATEGORY,
'L_EDIT' => _EDIT,
'DL_MENU' => '<span class="gen"><strong>My Downloads</strong></span><br /><a href="'.getlink().'">Main Page</a> | <strong>Current Downloads</strong> | <a href="'.getlink('&file=manage&s=1').'">Pending Downloads</a> | <a href="'.getlink('&file=manage&s=2').'">Broken D/L Reports</a>',
'DL_NO_ITEMS' => ($total_author < 1) ? sprintf(_ERROR_NONE_TO_DISPLAY, strtolower(_DOWNLOADS)) : false,
'DL_PAGINATION' => (ceil($total_author/$perpage) > 1) ? gen_pagination($total_author, $perpage, $cur_page, '&file=manage') : false
));
3. In my_downloads.html aus
Array:
<th align="left" colspan="2"> Current Downloads </th>
Array:
<th align="left" colspan="2">{L_CURRENTDOWNLOADS}</th> machen.
Habs jetzt nicht getestet, sollte aber funktionieren.
Wenn du fertig bist: Ich hab interesse dran.
_________________ Bitte lies dies bevor du fragst.
Klas's Serverdaten - verwendete Vers. (Server OS / Apache / MySQL / PHP / DragonflyCMS)
 |
|
| Back to top |
|
 |
|
|
All times are GMT + 1 Hour
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum You cannot attach files in this forum You cannot download files in this forum
|