[x] Navigation

[x] Wer ist wo
 Bots:
1: Google > Benutzerbereich
2: Baidu > Forum 9.x
 Visitors:
1: Forum 9.x
2: Forum 9.x
3: Startseite

[x] Languages

[x] Design
Each user can view the site with a different theme.
Themes marked with a * also change the forum look.

[x] Downloads (Top)

DownloadsPro - deutsch?!

Author Message
Lancomas
Investigator


Joined: Apr 24, 2008
Posts: 46

PostPost subject: DownloadsPro - deutsch?!
Posted: 06.08.2008 08:51
Reply with quote

Ha Ihr Lieben.
Gibts für das Modul "DownloadsPro" auch nen deutsches Sprachpackage?
Wenn ja, wo bekomme ich es? Googlen hat nix gebracht... Sad


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
View user's profile Visit poster's website
Poldi
Moderator


Joined: Nov 14, 2004
Posts: 705

PostPost subject: Re: DownloadsPro - deutsch?!
Posted: 06.08.2008 18:31
Reply with quote

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
View user's profile Visit poster's website
Katerrobin
Doppel-Null-Agent


Joined: Feb 14, 2008
Posts: 144

PostPost subject: Re: DownloadsPro - deutsch?!
Posted: 06.08.2008 19:36
Reply with quote

Ich bin gerade dabei Very Happy
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
View user's profile
Lancomas
Investigator


Joined: Apr 24, 2008
Posts: 46

PostPost subject: Re: DownloadsPro - deutsch?!
Posted: 06.08.2008 21:09
Reply with quote

Hi Kater,

wär schonmal ned schlecht, bitteeee! Wink


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
View user's profile Visit poster's website
Klas
Moderator


Joined: Apr 14, 2004
Posts: 293

PostPost subject: Re: DownloadsPro - deutsch?!
Posted: 08.08.2008 13:49
Reply with quote

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
View user's profile Visit poster's website
Neofred
Agent


Joined: Jul 06, 2004
Posts: 79

PostPost subject: Re: DownloadsPro - deutsch?!
Posted: 17.12.2008 15:22
Reply with quote

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. Sad


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
View user's profile
Klas
Moderator


Joined: Apr 14, 2004
Posts: 293

PostPost subject: Re: DownloadsPro - deutsch?!
Posted: 17.12.2008 17:37
Reply with quote

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('&amp;file=manage&amp;s=1').'">Pending Downloads</a> | <a href="'.getlink('&amp;file=manage&amp;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
View user's profile Visit poster's website
Display posts from previous:   
Post new topic   Reply to topic   Printer Friendly Page    Forum Index > > Dokumentation & Übersetzung
Page 1 of 1
All times are GMT + 1 Hour



Jump to:  


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




Interactive software released under GNU GPL, Code Credits, Privacy Policy