[x] Navigation

[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?!
Supportforum für Übersetzungen und Dokumentation des "German Translation Teams"
Post new topic    Reply to topic    Printer Friendly Page     Forum Index ›  Dokumentation & Übersetzung

View previous topic :: View next topic  
Author Message
Lancomas
Investigator
Investigator

Offline Offline
Joined: Apr 24, 2008
Posts: 46

PostPosted: 06.08.2008 08:51
Post subject: DownloadsPro - deutsch?!

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 server specs (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
Moderator

Offline Offline
Joined: Nov 14, 2004
Posts: 705

PostPosted: 06.08.2008 18:31
Post subject: Re: DownloadsPro - deutsch?!

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 server specs (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
Doppel-Null-Agent

Offline Offline
Joined: Feb 14, 2008
Posts: 144

PostPosted: 06.08.2008 19:36
Post subject: Re: DownloadsPro - deutsch?!

Ich bin gerade dabei Very Happy
Wenn es Dir reicht das die Userseite schon Deutsch ist, kann ich es schicken.


Katerrobin's server specs (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
Investigator

Offline Offline
Joined: Apr 24, 2008
Posts: 46

PostPosted: 06.08.2008 21:09
Post subject: Re: DownloadsPro - deutsch?!

Hi Kater,

wär schonmal ned schlecht, bitteeee! Wink


Lancomas's server specs (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
Moderator

Offline Offline
Joined: Apr 14, 2004
Posts: 293

PostPosted: 08.08.2008 13:49
Post subject: Re: DownloadsPro - deutsch?!

www.dragonflycms.org/F...ro+german/

?

_________________
Bitte lies dies bevor du fragst.

Klas's server specs (Server OS / Apache / MySQL / PHP / DragonflyCMS)
Back to top
View user's profile Visit poster's website
Neofred
Agent
Agent

Offline Offline
Joined: Jul 06, 2004
Posts: 79

PostPosted: 17.12.2008 16:22
Post subject: Re: DownloadsPro - deutsch?!

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 server specs (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
Moderator

Offline Offline
Joined: Apr 14, 2004
Posts: 293

PostPosted: 17.12.2008 18:37
Post subject: Re: DownloadsPro - deutsch?!

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 server specs (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