[PC-BSD Commits] r2449 - in websites/pbidir.com/bibivu: bin etc/lang/de etc/lang/en etc/lang/es etc/lang/fr etc/lang/it etc/lang/ja etc/lang/nl etc/lang/ru etc/lang/tr tpl/display tpl/pbidir
svn at pcbsd.org
svn at pcbsd.org
Fri Jul 25 04:55:34 PDT 2008
Author: fabry
Date: 2008-07-25 04:55:34 -0700 (Fri, 25 Jul 2008)
New Revision: 2449
Modified:
websites/pbidir.com/bibivu/bin/bibivu_cron.php
websites/pbidir.com/bibivu/bin/start.php
websites/pbidir.com/bibivu/etc/lang/de/registration.lang.php
websites/pbidir.com/bibivu/etc/lang/en/registration.lang.php
websites/pbidir.com/bibivu/etc/lang/es/registration.lang.php
websites/pbidir.com/bibivu/etc/lang/fr/registration.lang.php
websites/pbidir.com/bibivu/etc/lang/it/registration.lang.php
websites/pbidir.com/bibivu/etc/lang/ja/home.lang.php
websites/pbidir.com/bibivu/etc/lang/ja/registration.lang.php
websites/pbidir.com/bibivu/etc/lang/nl/registration.lang.php
websites/pbidir.com/bibivu/etc/lang/ru/registration.lang.php
websites/pbidir.com/bibivu/etc/lang/tr/registration.lang.php
websites/pbidir.com/bibivu/tpl/display/header.php
websites/pbidir.com/bibivu/tpl/pbidir/header.php
websites/pbidir.com/bibivu/tpl/pbidir/latest.php
websites/pbidir.com/bibivu/tpl/pbidir/latest_releases.php
websites/pbidir.com/bibivu/tpl/pbidir/most_download.php
websites/pbidir.com/bibivu/tpl/pbidir/registration.php
websites/pbidir.com/bibivu/tpl/pbidir/search.php
Log:
some modifications for utf-8 languages
Modified: websites/pbidir.com/bibivu/bin/bibivu_cron.php
===================================================================
--- websites/pbidir.com/bibivu/bin/bibivu_cron.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/bin/bibivu_cron.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -67,6 +67,7 @@
$filters[] = array('field'=>'status', 'operator'=>'=', 'value'=>'active');
$users = load_library('user')->get_all($filters);
$mail =& load_library('email');
+ $mail->Charset = 'utf-8';
foreach($users as $key=>$user){
$mail->AddAddress($user['email']);
}
Modified: websites/pbidir.com/bibivu/bin/start.php
===================================================================
--- websites/pbidir.com/bibivu/bin/start.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/bin/start.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -717,7 +717,7 @@
$item = new FeedItem();
$item->title = isset($pbi['name'])?$pbi['name']:$pbi['pbi'].' '.$pbi['version'];
- $item->link = $pbi_uri.'/'.(isset($pbi['pbi_id'])?$pbi['pbi_id'].'/':'').$pbi['id'];
+ $item->link = $pbi_uri.'/'.(isset($pbi['pbi_id'])?$pbi['pbi_id'].'/':'').$pbi['id'].'/'.strtolower(preg_replace('/[^0-9a-z]/i','_',(isset($pbi['name'])?$pbi['name']:$pbi['pbi'])));
$item->description = $pbi['summary'];
$item->date = strtotime($pbi['date_last_status_id']);
$item->source = 'http://www.pbidir.com';
Modified: websites/pbidir.com/bibivu/etc/lang/de/registration.lang.php
===================================================================
--- websites/pbidir.com/bibivu/etc/lang/de/registration.lang.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/etc/lang/de/registration.lang.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -1,23 +1,25 @@
-<?php
-//registration strings
-$lang['breadcrumb'] = 'Registrierung';
-$lang['page_title'] = 'Ihre PC-BSD Software - Registrierung';
-$lang['verify_email'] = 'Überprüfen Sie Ihre Email';
-$lang['complete_fields'] = 'Bitte füllen Sie folgende Felder aus um sich zu registrieren';
-
-$lang['error_email_verification'] = 'E-Mail Überprüfung ist gescheitert!! Bitte versuchen Sie es erneut';
-$lang['error_email_not_valid'] = 'Ihre E-Mail Adresse ist nicht gültig! Bitte versuchen Sie es erneut';
-$lang['error_user_alphanum'] = 'Nur alphanumerische Angaben sind im Benutzernamen erlaubt! Bitte wählen Sie ein anderen Benutzernamen';
-$lang['error_user_exists'] = 'Dieser Benutzername ist bereits vergeben! Bitte wähen Sie einen anderen';
-$lang['error_generic'] = 'Problem bei der Registrierung!! Bitte versuchen Sie es später noch einmal!';
-
-$lang['success'] = 'Ihre Registrierung wurde erfolgreich abgeschlossen!<br />Sie erhalten eine Email mit Ihrem Passwort, mit dem Sie sich einloggen können!';
-
-$lang['email_subject'] = '[pbiDir] Registrierung';
-$lang['email_body'] = '%s, Willkommen bei pbiDir, Ihrem PC-BSD Software Verzeichnis'."\n\n".
- 'Dies ist Ihr Passwort, welches Sie zum einloggen zur pbiDir-Webseite benötigen'."\n".
- ' %s'."\n\n".
- 'Bewahren Sie bitte Ihr Passwort sicher auf!!'."\n\n".
- 'pbiDIR Personal'; //first %s = Benutzername second %s = Passwort
-
+<?php
+//registration strings
+$lang['breadcrumb'] = 'Registrierung';
+$lang['page_title'] = 'Ihre PC-BSD Software - Registrierung';
+$lang['verify_email'] = 'Überprüfen Sie Ihre Email';
+$lang['complete_fields'] = 'Bitte füllen Sie folgende Felder aus um sich zu registrieren';
+
+$lang['button_register'] = 'REGISTER';
+
+$lang['error_email_verification'] = 'E-Mail Überprüfung ist gescheitert!! Bitte versuchen Sie es erneut';
+$lang['error_email_not_valid'] = 'Ihre E-Mail Adresse ist nicht gültig! Bitte versuchen Sie es erneut';
+$lang['error_user_alphanum'] = 'Nur alphanumerische Angaben sind im Benutzernamen erlaubt! Bitte wählen Sie ein anderen Benutzernamen';
+$lang['error_user_exists'] = 'Dieser Benutzername ist bereits vergeben! Bitte wähen Sie einen anderen';
+$lang['error_generic'] = 'Problem bei der Registrierung!! Bitte versuchen Sie es später noch einmal!';
+
+$lang['success'] = 'Ihre Registrierung wurde erfolgreich abgeschlossen!<br />Sie erhalten eine Email mit Ihrem Passwort, mit dem Sie sich einloggen können!';
+
+$lang['email_subject'] = '[pbiDir] Registrierung';
+$lang['email_body'] = '%s, Willkommen bei pbiDir, Ihrem PC-BSD Software Verzeichnis'."\n\n".
+ 'Dies ist Ihr Passwort, welches Sie zum einloggen zur pbiDir-Webseite benötigen'."\n".
+ ' %s'."\n\n".
+ 'Bewahren Sie bitte Ihr Passwort sicher auf!!'."\n\n".
+ 'pbiDIR Personal'; //first %s = Benutzername second %s = Passwort
+
?>
\ No newline at end of file
Modified: websites/pbidir.com/bibivu/etc/lang/en/registration.lang.php
===================================================================
--- websites/pbidir.com/bibivu/etc/lang/en/registration.lang.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/etc/lang/en/registration.lang.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -5,6 +5,8 @@
$lang['verify_email'] = 'Verify Email';
$lang['complete_fields'] = 'Please complete the following fields to register';
+$lang['button_register'] = 'REGISTER';
+
$lang['error_email_verification'] = 'Email Verification Failed!! Please Try Again';
$lang['error_email_not_valid'] = 'The email address is not Valid! Please Try Again';
$lang['error_user_alphanum'] = 'Only Alphanumeric characters are allowed in the username! Please Choose a different one';
Modified: websites/pbidir.com/bibivu/etc/lang/es/registration.lang.php
===================================================================
--- websites/pbidir.com/bibivu/etc/lang/es/registration.lang.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/etc/lang/es/registration.lang.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -1,23 +1,25 @@
-<?php
-//registration strings
-$lang['breadcrumb'] = 'Registro';
-$lang['page_title'] = 'Tu PC-BSD software - Registro';
-$lang['verify_email'] = 'Verifica el email';
-$lang['complete_fields'] = 'Por favor, completa los siguientes campos para registrarse';
-
-$lang['error_email_verification'] = 'Verificación fallida!! Por favor, inténtelo de nuevo';
-$lang['error_email_not_valid'] = 'La dirección del correo electrónico no es válida! Por favor, inténtelo de nuevo';
-$lang['error_user_alphanum'] = 'Sólo está permitido el uso de caracteres alfanuméricos en el nombre del usuario! Por favor, escoge uno distinto';
-$lang['error_user_exists'] = 'El nombre de usuario ya está registrado! Por favor, escoge uno distinto';
-$lang['error_generic'] = 'Registro fallido!! Por favor, inténtelo de nuevo!';
-
-$lang['success'] = 'Te has registrado satisfactoriamente!<br />Recibirás un correo electrónico con la contraseña que debes utilizar para Identificarte!';
-
-$lang['email_subject'] = '[p!
biDir] Registro';
-$lang['email_body'] = '%s, Bienvenido a pbiDir, tu software PC-BSD'."\n\n".
- 'Esta es la contraseña que necesitas para identificarte en la página pbidir:'."\n".
- ' %s'."\n\n".
- 'Por favor, recuerda que la contraseña distingue mayúsculas de minúsculas!!'."\n\n".
- 'pbiDIR Staff'; //first %s = username. second %s = password
-
+<?php
+//registration strings
+$lang['breadcrumb'] = 'Registro';
+$lang['page_title'] = 'Tu PC-BSD software - Registro';
+$lang['verify_email'] = 'Verifica el email';
+$lang['complete_fields'] = 'Por favor, completa los siguientes campos para registrarse';
+
+$lang['button_register'] = 'REGISTER';
+
+$lang['error_email_verification'] = 'Verificación fallida!! Por favor, inténtelo de nuevo';
+$lang['error_email_not_valid'] = 'La dirección del correo electrónico no es válida! Por favor, inténtelo de nuevo';
+$lang['error_user_alphanum'] = 'Sólo está permitido el uso de caracteres alfanuméricos en el nombre del usuario! Por favor, escoge uno distinto';
+$lang['error_user_exists'] = 'El nombre de usuario ya está registrado! Por favor, escoge uno distinto';
+$lang['error_generic'] = 'Registro fallido!! Por favor, inténtelo de nuevo!';
+
+$lang['success'] = 'Te has registrado satisfactoriamente!<br />Recibirás un correo electrónico con la contraseña que debes utilizar para Identificarte!';
+
+$lang['email_subject'] = '[pbiDir] Registro';
+$lang['email_body'] = '%s, Bienvenido a pbiDir, tu software PC-BSD'."\n\n".
+ 'Esta es la contraseña que necesitas para identificarte en la página pbidir:'."\n".
+ ' %s'."\n\n".
+ 'Por favor, recuerda que la contraseña distingue mayúsculas de minúsculas!!'."\n\n".
+ 'pbiDIR Staff'; //first %s = username. second %s = password
+
?>
\ No newline at end of file
Modified: websites/pbidir.com/bibivu/etc/lang/fr/registration.lang.php
===================================================================
--- websites/pbidir.com/bibivu/etc/lang/fr/registration.lang.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/etc/lang/fr/registration.lang.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -5,6 +5,8 @@
$lang['verify_email'] = 'Vérification email';
$lang['complete_fields'] = 'Merci de remplir les champs suivants pour vous enregistrer';
+$lang['button_register'] = 'REGISTER';
+
$lang['error_email_verification'] = 'Echec de la vérification de l\'adresse mail ! Merci de réessayer';
$lang['error_email_not_valid'] = 'L\'adresse mail n\'existe pas! Merci de réessayer';
$lang['error_user_alphanum'] = 'Le nom d\'utilisateur ne doit comporter que des caractères alphanumériques! Merci de faire un autre choix';
Modified: websites/pbidir.com/bibivu/etc/lang/it/registration.lang.php
===================================================================
--- websites/pbidir.com/bibivu/etc/lang/it/registration.lang.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/etc/lang/it/registration.lang.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -1,23 +1,25 @@
-<?php
-//registration strings
-$lang['breadcrumb'] = 'Registrazione';
-$lang['page_title'] = 'PC-BSD software - Registrazione';
-$lang['verify_email'] = 'Verifica Email';
-$lang['complete_fields'] = 'Completare i seguenti campi per registrarsi';
-
-$lang['error_email_verification'] = 'Verifica Email Fallita!! Prova Nuovamente';
-$lang['error_email_not_valid'] = 'L\'indirizzo email Non e\' valido! Prova Nuovamente';
-$lang['error_user_alphanum'] = 'Solo caratteri Alfanumerici possono essere usati nell\'username! Scegli un username diverso';
-$lang['error_user_exists'] = 'L\'Username che hai scelto e\' in uso! Scegli un username diverso';
-$lang['error_generic'] = 'Problemi durante la registrazione!! Prova Nuovamente piu\' tardi!';
-
-$lang['success'] = 'Registrazione cmpletata con successo!<br />Riceverai una email con la password per fare il login!';
-
-$lang['email_subject'] = '[pbiDir] Registrazione';
-$lang['email_body'] = '%s, benvenuto in pbiDir, il tuo software per PC-BSD'."\n\n".
- 'Questa e\' la password che ti servira\' per poter fre il login nel sito pbidir.com:'."\n".
- ' %s'."\n\n".
- 'Ricordati che la password e\' case-sensitive. Maiuscolo/Minuscolo conta!!'."\n\n".
- 'lo staff di pbiDIR'; //first %s = username. second %s = password
-
+<?php
+//registration strings
+$lang['breadcrumb'] = 'Registrazione';
+$lang['page_title'] = 'PC-BSD software - Registrazione';
+$lang['verify_email'] = 'Verifica Email';
+$lang['complete_fields'] = 'Completare i seguenti campi per registrarsi';
+
+$lang['button_register'] = 'CREA UTENTE';
+
+$lang['error_email_verification'] = 'Verifica Email Fallita!! Prova Nuovamente';
+$lang['error_email_not_valid'] = 'L\'indirizzo email Non e\' valido! Prova Nuovamente';
+$lang['error_user_alphanum'] = 'Solo caratteri Alfanumerici possono essere usati nell\'username! Scegli un username diverso';
+$lang['error_user_exists'] = 'L\'Username che hai scelto e\' in uso! Scegli un username diverso';
+$lang['error_generic'] = 'Problemi durante la registrazione!! Prova Nuovamente piu\' tardi!';
+
+$lang['success'] = 'Registrazione cmpletata con successo!<br />Riceverai una email con la password per fare il login!';
+
+$lang['email_subject'] = '[pbiDir] Registrazione';
+$lang['email_body'] = '%s, benvenuto in pbiDir, il tuo software per PC-BSD'."\n\n".
+ 'Questa e\' la password che ti servira\' per poter fre il login nel sito pbidir.com:'."\n".
+ ' %s'."\n\n".
+ 'Ricordati che la password e\' case-sensitive. Maiuscolo/Minuscolo conta!!'."\n\n".
+ 'lo staff di pbiDIR'; //first %s = username. second %s = password
+
?>
\ No newline at end of file
Modified: websites/pbidir.com/bibivu/etc/lang/ja/home.lang.php
===================================================================
--- websites/pbidir.com/bibivu/etc/lang/ja/home.lang.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/etc/lang/ja/home.lang.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -6,11 +6,11 @@
$lang['pbi_directory'] = 'pbi Directory';
#$lang['welcome'] = 'Welcome to the pbi Directory! Feel free to browse through our web site to download software for your <a href="http://www.pcbsd.org/">PC-BSD operating system</a>. Some of the advantages of the pbi system is the ease of use, you can install applications in a few clicks, and best of all, dependency issues are now gone with the self-containing pbi system. Learn more on the <a href="http://www.pcbsd.org/content/view/20/26/">pbi technology</a> on the official <a href="http://www.pcbsd.org/">PC-BSD web site</a>. The pbi directory is in no way associated with PC-BSD Software LLC.';
-$lang['welcome'] = 'pbi Directory ã¸ãããã! ãã®ãµã¤ãã§ã¯<a href="http://www.pcbsd.org/">PC-BSD ãªãã¬ã¼ãã£ã³ã°ã·ã¹ãã </a>ã®ããã®ã½ããã¦ã§ã¢ãèªç±ã«ãã¦ã³ãã¼ãã§ãã¾ããpbi ã·ã¹ãã ã¯ã¢ããªã±ã¼ã·ã§ã³ãæ°ã¯ãªãã¯ã§ã¤ã³ã¹ãã¼ã«ã§ããã®ã§ãã©ãªãã«ã§ãç°¡åã«å©ç¨ã§ãã¾ããpbi ã·ã¹ãã ã¯èªå·±å®çµãã¦ããã®ã§ãä¾åæ§ã®åé¡ãè§£æ¶ããã¾ãããã詳ããç¥ãããå ´åã«ã¯ã<a href="http://www.pcbsd.org/">PC-BSD å
¬å¼ã¦ã§ããµã¤ã</a>å
ã®<a href="http://www.pcbsd.org/content/view/20/26/">pbi ãã¯ããã¸ã¼</a>ãã¼ã¸ãã覧ä¸ãããThe pbi direcotry 㯠PC-BSD Software LLC ã¨ã®é¢ä¿ã¯ããã¾ããã';
+$lang['welcome'] = 'pbi Directory ã¸ãããã! ãã®ãµã¤ãã§ã¯<a href="http://www.pcbsd.org/">PC-BSD ãªãã¬ã¼ãã£ã³ã°ã·ã¹ãã </a>ã®ããã®ã½ããã¦ã§ã¢ãèªç±ã«ãã¦ã³ãã¼ãã§ãã¾ããpbi ã·ã¹ãã ã¯ã¢ããªã±ã¼ã·ã§ã³ãæ°ã¯ãªãã¯ã§ã¤ã³ã¹ãã¼ã«ã§ããã®ã§ãã©ãªãã«ã§ãç°¡åã«å©ç¨ã§ãã¾ããpbi ã·ã¹ãã ã¯åç¬ã§å®è¡ã§ããã®ã§ä¾åæ§ã®åé¡ã¯ããã¾ããããã詳ããç¥ãããå ´åã«ã¯ã<a href="http://www.pcbsd.org/">PC-BSD å
¬å¼ã¦ã§ããµã¤ã</a>å
ã®<a href="http://www.pcbsd.org/content/view/20/26/">pbi ãã¯ããã¸ã¼</a>ãã¼ã¸ãã覧ä¸ãããThe pbi direcotry 㯠PC-BSD Software LLC ã¨ã®é¢ä¿ã¯ããã¾ããã';
# Latest releases: pbiDIRã«æè¿ç»é²ãããã½ããã®äºããã
#$lang['latest_releases'] = 'Latest releases';
-$lang['latest_releases'] = 'æ°è¦ç»é²';
+$lang['latest_releases'] = 'æ°ç';
# ãã¼ã¸ã§ã³ã¢ãã?
#$lang['latest_software'] = 'Latest software';
@@ -23,8 +23,10 @@
#$lang['footer_note'] = 'Registered trade marks belong to their respective authors';
$lang['footer_note'] = 'è¨è¼ããã¦ãã忍ã¯å社ã®ç»é²åæ¨ã§ã';
# http://www.pbidir.com/bt/pages/contact_us ã¸ã®ãªã³ã¯
+
+// page.lang.pbi ã¨è¡¨ç¾ãåããã
#$lang['contact_us'] = 'Contact us';
-$lang['contact_us'] = 'é£çµ¡ãã';
+$lang['contact_us'] = 'é£çµ¡å
';
// page.lang.pbi ã¨è¡¨ç¾ãåããã
#$lang['site_developers'] = 'Take a look at our <a href="%s">Web Developers</a>';
Modified: websites/pbidir.com/bibivu/etc/lang/ja/registration.lang.php
===================================================================
--- websites/pbidir.com/bibivu/etc/lang/ja/registration.lang.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/etc/lang/ja/registration.lang.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -9,6 +9,9 @@
#$lang['complete_fields'] = 'Please complete the following fields to register';
$lang['complete_fields'] = 'ç»é²ããã«ã¯ä»¥ä¸ã®å
¨ãã£ã¼ã«ãã«å
¥åãã¦ãã ãã';
+#$lang['button_register'] = 'REGISTER'; // Add by translator
+$lang['button_register'] = 'ç»é²ãã';
+
#$lang['error_email_verification'] = 'Email Verification Failed!! Please Try Again';
$lang['error_email_verification'] = 'ã¡ã¼ã«ã¢ãã¬ã¹ãä¸è´ãã¾ãã! ããä¸åº¦å
¥åãã¦ãã ãã';
#$lang['error_email_not_valid'] = 'The email address is not Valid! Please Try Again';
Modified: websites/pbidir.com/bibivu/etc/lang/nl/registration.lang.php
===================================================================
--- websites/pbidir.com/bibivu/etc/lang/nl/registration.lang.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/etc/lang/nl/registration.lang.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -5,6 +5,8 @@
$lang['verify_email'] = 'Email controleren';
$lang['complete_fields'] = 'Vul de volgende velden in om te registreren';
+$lang['button_register'] = 'REGISTER';
+
$lang['error_email_verification'] = 'Email controle mislukt!! Probeert U het nog eens';
$lang['error_email_not_valid'] = 'Dit emailadres is niet geldig! Probeert U het nog eens';
$lang['error_user_alphanum'] = 'Alleen alfanumerieke karakters mogen in de gebruikersnaam voorkomen! Kies een andere';
Modified: websites/pbidir.com/bibivu/etc/lang/ru/registration.lang.php
===================================================================
--- websites/pbidir.com/bibivu/etc/lang/ru/registration.lang.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/etc/lang/ru/registration.lang.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -5,6 +5,8 @@
$lang['verify_email'] = 'ÐÑовеÑка EMail';
$lang['complete_fields'] = 'ÐаполниÑе, пожалÑйÑÑа, ÑледÑÑÑие Ð¿Ð¾Ð»Ñ Ð´Ð»Ñ ÑегиÑÑÑаÑии';
+$lang['button_register'] = 'REGISTER';
+
$lang['error_email_verification'] = 'ÐÑовеÑка Email пÑовалена!! ÐожалÑйÑÑа, попÑобÑйÑе еÑе';
$lang['error_email_not_valid'] = 'Ðадан некоÑÑекÑнÑй email-адÑеÑ! ÐожалÑйÑÑа, попÑобÑйÑе еÑе';
$lang['error_user_alphanum'] = 'ТолÑко бÑквенно-ÑиÑÑовÑе ÑÐ¸Ð¼Ð²Ð¾Ð»Ñ Ð´Ð¾Ð¿ÑÑкаÑÑÑÑ Ð² имени полÑзоваÑелÑ! ÐожалÑйÑÑа, вÑбеÑиÑе ÑÑо-нибÑÐ´Ñ Ð´ÑÑгое';
Modified: websites/pbidir.com/bibivu/etc/lang/tr/registration.lang.php
===================================================================
--- websites/pbidir.com/bibivu/etc/lang/tr/registration.lang.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/etc/lang/tr/registration.lang.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -5,6 +5,8 @@
$lang['verify_email'] = 'E-postayı Onayla';
$lang['complete_fields'] = 'Lütfen kaydolmak için müteakip alanları doldurun';
+$lang['button_register'] = 'REGISTER';
+
$lang['error_email_verification'] = 'E-posta Onayı Başarısız!! Lütfen Tekrar Deneyin';
$lang['error_email_not_valid'] = 'E-posta adresiniz geçersizdir! Lütfen Tekrar Deneyin';
$lang['error_user_alphanum'] = 'Kullanıcı adında sadece abece sayısal karakterlere izin verilir! Lütfen farklı birini seçin';
Modified: websites/pbidir.com/bibivu/tpl/display/header.php
===================================================================
--- websites/pbidir.com/bibivu/tpl/display/header.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/tpl/display/header.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -1,8 +1,6 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
-<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
-<title>pbiDIR<?=htmlentities($title!=''?' - '.$title:'')?></title>
<?php
foreach($link as $key=>$v1){
?><link <?php
@@ -18,6 +16,7 @@
?><?=$name?>="<?=addslashes($value)?>" <?php
}
?>/>
+<title><?=$title?></title>
<?php
}
foreach($script as $key=>$v1){
Modified: websites/pbidir.com/bibivu/tpl/pbidir/header.php
===================================================================
--- websites/pbidir.com/bibivu/tpl/pbidir/header.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/tpl/pbidir/header.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -1,7 +1,6 @@
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html lang="<?=load_library('lang')->get_lang()?>" dir="ltr" xml:lang="<?=load_library('lang')->get_lang()?>" xmlns="http://www.w3.org/1999/xhtml">
<head>
-<title>pbiDIR<?=htmlentities($title!=''?' - '.$title:'')?></title>
<?php
foreach($link as $key=>$v1){
?><link <?php
@@ -17,6 +16,7 @@
?><?=$name?>="<?=addslashes($value)?>" <?php
}
?>/>
+<title>pbiDIR<?=($title!=''?' - '.$title:'')?></title>
<?php
}
foreach($script as $key=>$v1){
Modified: websites/pbidir.com/bibivu/tpl/pbidir/latest.php
===================================================================
--- websites/pbidir.com/bibivu/tpl/pbidir/latest.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/tpl/pbidir/latest.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -1,8 +1,8 @@
-<h2><a href="/bt/rss/pbi.rss" title="RSS feeds"><img src="/bibivu/tpl/pbidir/images/icon_feed.png" alt="Rss feeds"/></a> <?=load_library('lang')->get('home_latest_software');?></h2>
-<ol>
-<?php
-foreach($latest as $pbi){
- ?><li><a href="<?=$pbi_uri?>/<?=$pbi['id']?>"><?=htmlentities($pbi['name'])?></a></li><?php
-}
-?>
+<h2><a href="/bt/rss/pbi.rss" title="RSS feeds"><img src="/bibivu/tpl/pbidir/images/icon_feed.png" alt="Rss feeds"/></a> <?=load_library('lang')->get('home_latest_software');?></h2>
+<ol>
+<?php
+foreach($latest as $pbi){
+ ?><li><a href="<?=$pbi_uri?>/<?=$pbi['id']?>/<?=strtolower(preg_replace('/[^0-9a-z]/i','_',$pbi['name']))?>"><?=htmlentities($pbi['name'])?></a></li><?php
+}
+?>
</ol>
\ No newline at end of file
Modified: websites/pbidir.com/bibivu/tpl/pbidir/latest_releases.php
===================================================================
--- websites/pbidir.com/bibivu/tpl/pbidir/latest_releases.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/tpl/pbidir/latest_releases.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -1,8 +1,8 @@
-<h2><a href="/bt/rss/release.rss" title="RSS feeds"><img src="/bibivu/tpl/pbidir/images/icon_feed.png" alt="Rss feeds"/></a> <?=load_library('lang')->get('home_latest_releases');?></h2>
-<ol>
-<?php
-foreach($latest_releases as $release){
- ?><li><a href="<?=$pbi_uri?>/<?=$release['pbi_id']?>"><?=htmlentities($release['pbi'].' '.$release['version'])?></a></li><?php
-}
-?>
+<h2><a href="/bt/rss/release.rss" title="RSS feeds"><img src="/bibivu/tpl/pbidir/images/icon_feed.png" alt="Rss feeds"/></a> <?=load_library('lang')->get('home_latest_releases');?></h2>
+<ol>
+<?php
+foreach($latest_releases as $release){
+ ?><li><a href="<?=$pbi_uri?>/<?=$release['pbi_id']?>/<?=strtolower(preg_replace('/[^0-9a-z]/i','_',$release['pbi']))?>"><?=htmlentities($release['pbi'].' '.$release['version'])?></a></li><?php
+}
+?>
</ol>
\ No newline at end of file
Modified: websites/pbidir.com/bibivu/tpl/pbidir/most_download.php
===================================================================
--- websites/pbidir.com/bibivu/tpl/pbidir/most_download.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/tpl/pbidir/most_download.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -1,8 +1,8 @@
-<h2><a href="/bt/rss/download.rss" title="RSS feeds"><img src="/bibivu/tpl/pbidir/images/icon_feed.png" alt="Rss feeds"/></a> <?=load_library('lang')->get('home_most_downloaded_software');?></h2>
-<ol>
-<?php
-foreach($most_download as $pbi){
- ?><li><a href="<?=$pbi_uri?>/<?=$pbi['id']?>"><?=htmlentities($pbi['name'])?></a></li><?php
-}
-?>
+<h2><a href="/bt/rss/download.rss" title="RSS feeds"><img src="/bibivu/tpl/pbidir/images/icon_feed.png" alt="Rss feeds"/></a> <?=load_library('lang')->get('home_most_downloaded_software');?></h2>
+<ol>
+<?php
+foreach($most_download as $pbi){
+ ?><li><a href="<?=$pbi_uri?>/<?=$pbi['id']?>/<?=strtolower(preg_replace('/[^0-9a-z]/i','_',$pbi['name']))?>"><?=htmlentities($pbi['name'])?></a></li><?php
+}
+?>
</ol>
\ No newline at end of file
Modified: websites/pbidir.com/bibivu/tpl/pbidir/registration.php
===================================================================
--- websites/pbidir.com/bibivu/tpl/pbidir/registration.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/tpl/pbidir/registration.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -17,6 +17,6 @@
<?=load_library('lang')->get('registration_verify_email')?><br />
<input type="text" value="" maxlength="100" size="20" class="inputbox" name="vemail"/>
<br /><br />
- <input type="submit" value="REGISTER" class="bt5" name="submit_reg"/>
+ <input type="submit" value="<?=load_library('lang')->get('registration_button_register')?>" class="bt5" name="submit_reg"/>
</div>
</form>
Modified: websites/pbidir.com/bibivu/tpl/pbidir/search.php
===================================================================
--- websites/pbidir.com/bibivu/tpl/pbidir/search.php 2008-07-25 11:25:02 UTC (rev 2448)
+++ websites/pbidir.com/bibivu/tpl/pbidir/search.php 2008-07-25 11:55:34 UTC (rev 2449)
@@ -27,7 +27,7 @@
}
?>
<div class="quickdesc">
- <h1><a href="<?=$pbi_uri?>/<?=$pbi['id']?>"><?=$pbi['name']?></a></h1>
+ <h1><a href="<?=$pbi_uri?>/<?=$pbi['id']?>/<?=strtolower(preg_replace('/[^0-9a-z]/i','_',$pbi['name']))?>"><?=$pbi['name']?></a></h1>
<div class="infos">
<strong><?=load_library('lang')->get('search_licence')?>:</strong> <?=$pbi['licence']?><br /><?php
if($pbi['summary']!=''){
More information about the Commits
mailing list