You can subscribe to this list here.
| 2001 |
Jan
|
Feb
|
Mar
|
Apr
|
May
|
Jun
|
Jul
|
Aug
(4) |
Sep
(42) |
Oct
(110) |
Nov
(183) |
Dec
(219) |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
| 2002 |
Jan
(181) |
Feb
(340) |
Mar
(190) |
Apr
(136) |
May
(316) |
Jun
(93) |
Jul
(130) |
Aug
(443) |
Sep
(505) |
Oct
(224) |
Nov
(26) |
Dec
(58) |
| 2003 |
Jan
(24) |
Feb
(98) |
Mar
(142) |
Apr
(48) |
May
(5) |
Jun
(112) |
Jul
(16) |
Aug
(3) |
Sep
|
Oct
|
Nov
|
Dec
(1) |
| 2004 |
Jan
(32) |
Feb
|
Mar
(2) |
Apr
(2) |
May
|
Jun
|
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
| 2005 |
Jan
|
Feb
|
Mar
|
Apr
|
May
(1) |
Jun
(7) |
Jul
|
Aug
|
Sep
|
Oct
|
Nov
|
Dec
|
|
From: mdw c. <myd...@li...> - 2003-03-05 16:54:37
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/include
Modified Files:
gui.inc.php mydynaweb.libs.php templates.inc.php
Log Message:
premiere version des sondages
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/include/gui.inc.php,v
retrieving revision 1.58
retrieving revision 1.59
diff -u -3 -r1.58 -r1.59
--- gui.inc.php 14 Feb 2003 08:31:13 -0000 1.58
+++ gui.inc.php 5 Mar 2003 16:54:00 -0000 1.59
@@ -354,6 +354,90 @@
}
+/*
+ print a box with the current poll.
+ if user IP is not found in the poll_users print the questions ;
+ if not (the user as already vote for that poll, just display
+ the results)
+*/
+
+function get_poll_box($DBH)
+{
+ $BOX_HASH_TEMPLATE = read_template(THEMES_PATH . "/box.html");
+
+ $sql = "SELECT pol_title, pol_id,
+ pol_question_1_str, pol_question_1_num,
+ pol_question_2_str, pol_question_2_num,
+ pol_question_3_str, pol_question_3_num,
+ pol_question_4_str, pol_question_4_num,
+ pol_question_5_str, pol_question_5_num,
+ pol_question_6_str, pol_question_6_num,
+ pol_question_7_str, pol_question_7_num,
+ pol_date_creation
+ FROM poll
+ WHERE pol_is_open=1
+ ORDER BY pol_date_creation DESC
+ LIMIT 1";
+ $rqt = new query($DBH);
+ $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+ $row = $rqt->getrow();
+
+ // first look if that user (IP ADDR) can vote for that poll
+ $sql = "SELECT pol_id FROM poll_users WHERE user_ip_addr = '".REMOTE_ADDR."'";
+ $rqt = new query($DBH);
+ $rqt->query($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+ $row2 = $rqt->getrow();
+
+ if ($row2['pol_id'] == $row['pol_id'] and $row["pol_id"] != "") {
+ // already vote for that poll
+ return ("results");
+ }
+
+
+ $VALUES['TITLE'] = translate("POLL",$DBH);
+ $VALUES['TITLE'] .= "<br><b>" . $row["pol_title"] . "</b>";
+ $form = get_hash_template($BOX_HASH_TEMPLATE["HEAD"], $VALUES);
+
+ $questions[0] = $row["pol_question_1_str"];
+ $questions[1] = $row["pol_question_2_str"];
+ $questions[2] = $row["pol_question_3_str"];
+ $questions[3] = $row["pol_question_4_str"];
+ $questions[4] = $row["pol_question_5_str"];
+ $questions[5] = $row["pol_question_6_str"];
+ $questions[6] = $row["pol_question_7_str"];
+
+ $votes[0] = $row["pol_question_1_num"];
+ $votes[1] = $row["pol_question_2_num"];
+ $votes[2] = $row["pol_question_3_num"];
+ $votes[3] = $row["pol_question_4_num"];
+ $votes[4] = $row["pol_question_5_num"];
+ $votes[5] = $row["pol_question_6_num"];
+ $votes[6] = $row["pol_question_7_num"];
+
+ $form .= "<FORM name='poll' action='poll.php' method='GET'>\n";
+ $form .= "<INPUT type='hidden' name='pol_id' value='".$row["pol_id"]."'>\n";
+
+ for ($i=0; $i<7; $i++) {
+ if (strlen($questions[$i])) {
+ $VALUES["CONTENT"] = "<input type='radio' name='poll' value='$i'>" . $questions[$i] . "<br>\n";
+ $form .= get_hash_template($BOX_HASH_TEMPLATE["LINE"], $VALUES);
+ }
+ else {
+ break;
+ }
+ }
+
+ if ($i == 0) {
+ return "";
+ }
+
+ $VALUES["CONTENT"] = "<INPUT type='submit' value='".translate ("CONFIRM", $DBH)."'>\n</form>";
+ $form .= get_hash_template($BOX_HASH_TEMPLATE["LINE"], $VALUES);
+
+
+ $form .= get_hash_template($BOX_HASH_TEMPLATE["FOOT"], $VALUES);
+ return($form);
+}
function get_searchengine($seek, $DBH)
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/include/mydynaweb.libs.php,v
retrieving revision 1.42
retrieving revision 1.43
diff -u -3 -r1.42 -r1.43
--- mydynaweb.libs.php 27 Dec 2002 11:52:56 -0000 1.42
+++ mydynaweb.libs.php 5 Mar 2003 16:54:01 -0000 1.43
@@ -50,6 +50,8 @@
*****************************************/
+define ("REMOTE_ADDR", $REMOTE_ADDR);
+
define("USER_FAM", $fam);
if (! isset($UserLang)) {
$UserLang = DEFAULT_LANG;
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/include/templates.inc.php,v
retrieving revision 1.37
retrieving revision 1.38
diff -u -3 -r1.37 -r1.38
--- templates.inc.php 14 Feb 2003 08:31:14 -0000 1.37
+++ templates.inc.php 5 Mar 2003 16:54:02 -0000 1.38
@@ -28,6 +28,7 @@
}
$VALUES["TOPICS_BOX"] = get_topics_htmlbox($DBH);
+ $VALUES["POLL"] = get_poll_box($DBH);
$VALUES['LAYER'] = get_layer($DBH, $hash_layer);
$VALUES['SPONSORS'] = get_sponsors($DBH, $hash_box);
$VALUES['STATBOX'] = get_global_stats_box($DBH, $hash_box);
|
|
From: mdw c. <myd...@li...> - 2003-03-05 15:44:02
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : sql Dir : mydynaweb/sql Modified Files: MYSQL_create.sql Log Message: table pour les sondages =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/sql/MYSQL_create.sql,v retrieving revision 1.15 retrieving revision 1.16 diff -u -3 -r1.15 -r1.16 --- MYSQL_create.sql 28 Feb 2003 13:37:57 -0000 1.15 +++ MYSQL_create.sql 5 Mar 2003 15:43:59 -0000 1.16 @@ -97,6 +97,7 @@ lang varchar(2) NOT NULL default '', family int not null default 1, is_online int not null default 0, + approved int not null default 0, user_name varchar(15) default '[nobody]', PRIMARY KEY (num_news) ); @@ -236,4 +237,31 @@ PRIMARY KEY (varname) ); +CREATE TABLE email_forward ( + mail varchar(125) not null default '', + num_news int not null default 0, + date DATE not null +); + +CREATE TABLE poll ( + pol_id int not null default 0, + pol_title varchar (125) not null default '', + + pol_question_1_str varchar(255), + pol_question_2_str varchar(255), + pol_question_3_str varchar(255), + pol_question_4_str varchar(255), + pol_question_5_str varchar(255), + pol_question_6_str varchar(255), + pol_question_7_str varchar(255), + + pol_question_1_num int, + pol_question_2_num int, + pol_question_3_num int, + pol_question_4_num int, + pol_question_5_num int, + pol_question_6_num int, + pol_question_7_num int, + PRIMARY KEY (pol_id) +); |
|
From: <be...@ma...> - 2003-03-04 19:35:04
|
Log Message:
-----------
Test email2
Modified Files:
--------------
/cvs/mdw/mydynaweb:
index.php |
|
From: mdw c. <myd...@li...> - 2003-03-04 10:59:46
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : htdocs
Dir : mydynaweb/htdocs/tools/content
Modified Files:
mailer.php
Log Message:
fichier d'installation autoamtique de mytinyweb
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/htdocs/tools/content/mailer.php,v
retrieving revision 1.7
retrieving revision 1.8
diff -u -3 -r1.7 -r1.8
--- mailer.php 27 Feb 2003 16:24:10 -0000 1.7
+++ mailer.php 4 Mar 2003 10:59:45 -0000 1.8
@@ -33,6 +33,8 @@
$nouvelle = preg_replace("/<a href='(.+)'>.+<\/a>/", "$1",$nouvelle);
$nouvelle = preg_replace("/<h.>(.+)<\/h.>/", strtoupper("$1"),$nouvelle);
$nouvelle = preg_replace("/<H.>(.+)<\/H.>/", strtoupper("$1"),$nouvelle);
+
+ $nouvelle = preg_replace("/<\S+>(.+)<\/.+>/", "$1",$nouvelle);
// recup des infos du posteur
/* if (! strlen($USER)) {*/
@@ -83,10 +85,11 @@
$rqt = new query($DBH);
$rqt->query ($DBH, $sql);
- $sql = "REPLACE into mail (email, is_forward, num_news) VALUES ('$TO', 1, $num_news)";
+ $date = date ("Y-m-d");
+ $sql = "INSERT into email_forward (mail, num_news, date) VALUES ('$TO', $num_news, '$date')";
$rqt = new query($DBH);
- $rqt->query ($DBH, $sql);
-
+ $rqt->query ($DBH, $sql) or send_sql_error($PHP_SELF, $sql, $rqt->error());
+ print $sql;
}
|
|
From: mdw c. <myd...@li...> - 2003-03-04 10:59:46
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : htdocs Dir : mydynaweb/htdocs Added Files: setup.php Log Message: fichier d'installation autoamtique de mytinyweb |
|
From: mdw c. <myd...@li...> - 2003-03-03 10:22:23
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : sql Dir : mydynaweb/sql/db_upgrade Added Files: from-0.5pre1__to-mytinyweb.sql Log Message: fichier de migration vers la structure de base de mytinyweb |
|
From: <be...@cy...> - 2003-03-03 03:29:51
|
Log Message:
-----------
Essaye de rendre ErrorHandler content !
Modified Files:
--------------
/home/CVS_MDW/mydynaweb/Packages/InformationUnit:
Service.php |
|
From: <be...@cy...> - 2003-03-03 03:28:48
|
Log Message:
-----------
Ajout de la cible delete-confirm (pour vrai !)
Modified Files:
--------------
/home/CVS_MDW/mydynaweb:
Makefile |
|
From: <be...@cy...> - 2003-03-03 03:28:31
|
Log Message:
-----------
New cache system. Faster and better.
Only used for anonymous users : if MDW_SESSION is set, then no caching.
Can't use setting at this time : have to tweak the config file.
Modified Files:
--------------
/home/CVS_MDW/mydynaweb:
index.php
Added Files:
-----------
/home/CVS_MDW/mydynaweb/Packages/Cache:
version.xml
/home/CVS_MDW/mydynaweb/Packages/Cache/Sql:
system.sql
/home/CVS_MDW/mydynaweb/Packages/Cache/jpcache:
LICENSE
jpcache-config.php
jpcache-main.php
jpcache.php
readme
script.sql
test.php
/home/CVS_MDW/mydynaweb/Packages/Cache/jpcache/type:
file.php
mysql.php |
|
From: <be...@cy...> - 2003-03-03 03:16:02
|
Update of /home/CVS_MDW/mydynaweb/Packages/Cache/jpcache/type In directory cyrus.physique.usherb.ca:/tmp/cvs-serv21935/Packages/Cache/jpcache/type Log Message: Directory /home/CVS_MDW/mydynaweb/Packages/Cache/jpcache/type added to the repository |
|
From: <be...@cy...> - 2003-03-03 03:15:58
|
Update of /home/CVS_MDW/mydynaweb/Packages/Cache/jpcache In directory cyrus.physique.usherb.ca:/tmp/cvs-serv21914/Packages/Cache/jpcache Log Message: Directory /home/CVS_MDW/mydynaweb/Packages/Cache/jpcache added to the repository |
|
From: <be...@cy...> - 2003-03-03 03:15:47
|
Update of /home/CVS_MDW/mydynaweb/Packages/Cache/Sql In directory cyrus.physique.usherb.ca:/tmp/cvs-serv21874/Packages/Cache/Sql Log Message: Directory /home/CVS_MDW/mydynaweb/Packages/Cache/Sql added to the repository |
|
From: <be...@cy...> - 2003-03-03 03:15:44
|
Update of /home/CVS_MDW/mydynaweb/Packages/Cache In directory cyrus.physique.usherb.ca:/tmp/cvs-serv21853/Packages/Cache Log Message: Directory /home/CVS_MDW/mydynaweb/Packages/Cache added to the repository |
|
From: <be...@cy...> - 2003-03-03 03:12:00
|
Log Message:
-----------
Typo
Modified Files:
--------------
/home/CVS_MDW/mydynaweb/Packages/Translator:
version.xml |
|
From: <be...@cy...> - 2003-03-03 03:11:14
|
Log Message:
-----------
Nouvelles traductions.
Modified Files:
--------------
/home/CVS_MDW/mydynaweb/Packages/Translator/Sql:
system.sql |
|
From: <xbt...@cy...> - 2003-03-03 01:12:41
|
Log Message:
-----------
juste pour le fun de tester:
votre_site/?mod=Test.Display&fct=getHtmlTest
NB: ca sens la poussière dans ce module. Un jour il faudrait que chaque module
produise sa suite de tests !! pas un truc centralisé zarbi.
Modified Files:
--------------
/home/CVS_MDW/mydynaweb/Packages/Test:
Display.php |
|
From: <xbt...@cy...> - 2003-03-03 01:10:47
|
Log Message:
-----------
appel à sql désuet ! c'est juste ça pour le bug de création de topics avec les
bonnes traductions !!
Modified Files:
--------------
/home/CVS_MDW/mydynaweb/Packages/Translator:
Manager.php |
|
From: <xbt...@cy...> - 2003-03-03 01:09:30
|
Log Message:
-----------
- les boites de dialogues renvoient à eux-mêmes, c'est plus joli, moins épeurant.
- correction des messages d'un des backend qui portait à confusion.
Modified Files:
--------------
/home/CVS_MDW/mydynaweb/Packages/Topic:
Manager.php |
|
From: <xbt...@cy...> - 2003-03-03 01:07:46
|
Log Message:
-----------
- un peu de doc pour la nouvelle fonction.
- retrait de depthMax qui n'était pas implémenté. Pas de traineries...
- changement du $separator par défaut.
Modified Files:
--------------
/home/CVS_MDW/mydynaweb/Packages/Topic:
Topic.php |
|
From: <xbt...@cy...> - 2003-03-03 00:57:01
|
Log Message:
-----------
#bug: 154 --> worksforme !!
Pour obtenir ce tableau de topics pour lier, on appelle la fonction
Topic.Topic.getTopicsForLinking($baseTopic,$access,$separator,$depthMax);
qui redonne un vecteur dont chaque étément est un hash contenant:
name -> topic dans la traduction en cours,
uniqueName -> 11.23 par exemple,
depth -> la profondeur (au cas où !!) à partir de zéro pour le $baseTopic.
todo: (plus tard)
=====
- $depthMax n'est pas encore implémenté (et p-ê pas utile).
- Attention à la récursion, aux rubriques qui se trouvent attachés à deux endroits, etc.
(Et comme de plus je ne sais pas comment réagir dans ces cas-là ...)
Modified Files:
--------------
/home/CVS_MDW/mydynaweb/Packages/Topic:
Topic.php |
|
From: <xbt...@cy...> - 2003-03-03 00:48:22
|
Log Message:
-----------
#bug: 165 --> fixed
Je pouvais pas commiter en absence de cyrus !!
Modified Files:
--------------
/home/CVS_MDW/mydynaweb/Packages/Page:
Display.php |
|
From: <ca...@cy...> - 2003-02-28 16:25:56
|
Log Message:
-----------
C'est encore plus beau comme ça,...;)
Modified Files:
--------------
/home/CVS_MDW/mydynaweb/templates/ccs:
main.html |
|
From: mdw c. <myd...@li...> - 2003-02-28 13:48:59
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : sql
Dir : mydynaweb/sql/upgrades
Modified Files:
core_text.sql
Log Message:
on ne parle plus de 'nouvelles' mais d'articles désormais
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/sql/upgrades/core_text.sql,v
retrieving revision 1.45
retrieving revision 1.46
diff -u -3 -r1.45 -r1.46
--- core_text.sql 28 Feb 2003 13:37:57 -0000 1.45
+++ core_text.sql 28 Feb 2003 13:48:27 -0000 1.46
@@ -45,12 +45,12 @@
INSERT INTO core_text VALUES ('YOU_CAN_LOGIN_HERE', 'DE', 'If you want to become a member, you have to <a href=''new_account.php''>create an account</a><p> If are a registrated member, you can login here.');
INSERT INTO core_text VALUES ('NO_NEWS', 'EN', 'Sorry, no news here !');
-INSERT INTO core_text VALUES ('NO_NEWS', 'FR', 'Désolé mais il n''y a plus de nouvelles !');
+INSERT INTO core_text VALUES ('NO_NEWS', 'FR', 'Désolé mais il n''y a plus d''articles !');
INSERT INTO core_text VALUES ('NO_NEWS', 'ES', 'Sorry, no news here !');
INSERT INTO core_text VALUES ('NO_NEWS', 'DE', 'Sorry, no news here !');
INSERT INTO core_text VALUES ('TOPNEWS', 'EN', 'News Podium');
-INSERT INTO core_text VALUES ('TOPNEWS', 'FR', 'Top des nouvelles');
+INSERT INTO core_text VALUES ('TOPNEWS', 'FR', 'Top des articles');
INSERT INTO core_text VALUES ('TOPNEWS', 'ES', 'News Podium');
INSERT INTO core_text VALUES ('TOPNEWS', 'DE', 'News Podium');
@@ -75,7 +75,7 @@
INSERT INTO core_text VALUES ('REACT', 'DE', 'Reply to this comment');
INSERT INTO core_text VALUES ('NEW_THREAD', 'EN', 'Comment this piece of news');
-INSERT INTO core_text VALUES ('NEW_THREAD', 'FR', 'Commenter cette nouvelle');
+INSERT INTO core_text VALUES ('NEW_THREAD', 'FR', 'Commenter cet article');
INSERT INTO core_text VALUES ('NEW_THREAD', 'ES', 'Start a new thread');
INSERT INTO core_text VALUES ('NEW_THREAD', 'DE', 'Start a new thread');
@@ -108,13 +108,13 @@
You''ve recently post a comment about the piece of news entitled :
');
INSERT INTO core_text VALUES ('NEW_COMMENT_MAIL1', 'FR', 'Bonjour,
-Vous avez récemment posté un commentaire par rapport à la nouvelle intitulée :
+Vous avez récemment posté un commentaire par rapport à l''article intitulée :
');
INSERT INTO core_text VALUES ('NEW_COMMENT_MAIL1', 'DE', 'Bonjour,
-Vous avez récemment posté un commentaire par rapport à la nouvelle intitulée :
+Vous avez récemment posté un commentaire par rapport à l''article intitulée :
');
INSERT INTO core_text VALUES ('NEW_COMMENT_MAIL1', 'ES', 'Bonjour,
-Vous avez récemment posté un commentaire par rapport à la nouvelle intitulée :
+Vous avez récemment posté un commentaire par rapport à la article intitulée :
');
@@ -134,7 +134,7 @@
INSERT INTO core_text VALUES ('FAMOUS_NEWS', 'DE', 'Most famous news items');
INSERT INTO core_text VALUES ('BEST_NEWS', 'EN', 'Best news of the month');
-INSERT INTO core_text VALUES ('BEST_NEWS', 'FR', 'Meilleures nouvelles du mois');
+INSERT INTO core_text VALUES ('BEST_NEWS', 'FR', 'Meilleurs articles du mois');
INSERT INTO core_text VALUES ('BEST_NEWS', 'ES', 'Most read news item');
INSERT INTO core_text VALUES ('BEST_NEWS', 'DE', 'Most read news item');
@@ -169,17 +169,17 @@
INSERT INTO core_text VALUES ('DERNIER_COMMENTAIRE', 'ES', 'Last comment');
INSERT INTO core_text VALUES ('DERNIERE_NEWS', 'EN', 'Last piece of news');
-INSERT INTO core_text VALUES ('DERNIERE_NEWS', 'FR', 'Dernière nouvelle');
-INSERT INTO core_text VALUES ('DERNIERE_NEWS', 'DE', 'Dernière nouvelle');
-INSERT INTO core_text VALUES ('DERNIERE_NEWS', 'ES', 'Dernière nouvelle');
+INSERT INTO core_text VALUES ('DERNIERE_NEWS', 'FR', 'Dernier article');
+INSERT INTO core_text VALUES ('DERNIERE_NEWS', 'DE', 'Dernier article');
+INSERT INTO core_text VALUES ('DERNIERE_NEWS', 'ES', 'Dernier article');
INSERT INTO core_text VALUES ('DERNIERES_NEWS', 'EN', 'Here are the last 5 news sorted by categories.');
-INSERT INTO core_text VALUES ('DERNIERES_NEWS', 'FR', 'Voici les 5 dernière nouvelles pour chaque catégorie.');
-INSERT INTO core_text VALUES ('DERNIERES_NEWS', 'DE', 'Voici les 5 dernière nouvelles pour chaque catégorie.');
-INSERT INTO core_text VALUES ('DERNIERES_NEWS', 'ES', 'Voici les 5 dernière nouvelles pour chaque catégorie.');
+INSERT INTO core_text VALUES ('DERNIERES_NEWS', 'FR', 'Voici les 5 derniers articles pour chaque catégorie.');
+INSERT INTO core_text VALUES ('DERNIERES_NEWS', 'DE', 'Voici les 5 derniers articles pour chaque catégorie.');
+INSERT INTO core_text VALUES ('DERNIERES_NEWS', 'ES', 'Voici les 5 derniers articles pour chaque catégorie.');
INSERT INTO core_text VALUES ('ACCUEIL_GENERAL', 'EN', 'News Contents');
-INSERT INTO core_text VALUES ('ACCUEIL_GENERAL', 'FR', 'Sommaire des nouvelles');
+INSERT INTO core_text VALUES ('ACCUEIL_GENERAL', 'FR', 'Sommaire des articles');
INSERT INTO core_text VALUES ('ACCUEIL_GENERAL', 'DE', 'News Contents');
INSERT INTO core_text VALUES ('ACCUEIL_GENERAL', 'ES', 'News Contents');
@@ -242,7 +242,7 @@
INSERT INTO core_text VALUES ('SEARCH_RESULTS', 'ES', 'Search Results');
INSERT INTO core_text VALUES ('NO_NEWS_MATCH_YOUR_CRITERIA', 'EN', 'There are no news in the database that match your criteria.');
-INSERT INTO core_text VALUES ('NO_NEWS_MATCH_YOUR_CRITERIA', 'FR', 'Il n''y a aucune nouvelle qui correspond à votre demande.');
+INSERT INTO core_text VALUES ('NO_NEWS_MATCH_YOUR_CRITERIA', 'FR', 'Il n''y a aucun article qui correspond à votre demande.');
INSERT INTO core_text VALUES ('NO_NEWS_MATCH_YOUR_CRITERIA', 'ES', 'There are no news in the database that match your criteria.');
INSERT INTO core_text VALUES ('NO_NEWS_MATCH_YOUR_CRITERIA', 'DE', 'There are no news in the database that match your criteria.');
@@ -252,17 +252,17 @@
INSERT INTO core_text VALUES ('WE_LOOK_FOR_THE_KEYWORD', 'ES', 'we looked for the keyword : ');
INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_POSTED_BY', 'EN', 'I''ve looked for news posted by : ');
-INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_POSTED_BY', 'FR', 'J''ai recherché des nouvelles dont l''auteur est : ');
+INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_POSTED_BY', 'FR', 'J''ai recherché des articles dont l''auteur est : ');
INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_POSTED_BY', 'DE', 'whose author is : ');
INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_POSTED_BY', 'ES', 'whose author is : ');
INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_BOUND_TO_CATEGORY', 'EN', 'I''ve looked for news whose category is : ');
-INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_BOUND_TO_CATEGORY', 'FR', 'J''ai recherché des nouvelles dont la categorie est : ');
+INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_BOUND_TO_CATEGORY', 'FR', 'J''ai recherché des articles dont la categorie est : ');
INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_BOUND_TO_CATEGORY', 'ES', 'whose category is : ');
INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_BOUND_TO_CATEGORY', 'DE', 'whose category is : ');
INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_BOUND_TO_TOPIC', 'EN', 'I''ve looked for news whose topic is : ');
-INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_BOUND_TO_TOPIC', 'FR', 'J''ai recherché des nouvelles dont la rubrique est : ');
+INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_BOUND_TO_TOPIC', 'FR', 'J''ai recherché des articles dont la rubrique est : ');
INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_BOUND_TO_TOPIC', 'DE', 'whose topic is : ');
INSERT INTO core_text VALUES ('WE_LOOK_FOR_NEWS_BOUND_TO_TOPIC', 'ES', 'whose topic is : ');
@@ -328,7 +328,7 @@
INSERT INTO core_text VALUES ('POST_NEWS','EN','Post a news item');
-INSERT INTO core_text VALUES ('POST_NEWS','FR','Poster une nouvelle');
+INSERT INTO core_text VALUES ('POST_NEWS','FR','Poster un article');
INSERT INTO core_text VALUES ('POST_NEWS','DE','Post a news item');
INSERT INTO core_text VALUES ('POST_NEWS','ES','Post a news item');
@@ -352,7 +352,7 @@
INSERT INTO core_text VALUES ('COMMENT_HEADER_TEXT', 'EN', 'You can here post a comment. <br>Be aware that HTTP and FTP URL will be detected. <br> Do not put the <A HREF="..."> tag.');
-INSERT INTO core_text VALUES ('COMMENT_HEADER_TEXT', 'FR', 'Vous pouvez poster un commentaire. <br>Les liens HTTP et FTP seront détéctés automatiquement. <BR> Ne mettez donc pas le tag <A HREF="...">. <p>Votre email ne sera pas affiché, il sera utilisé pour vous notifier<br> lorsqu''un nouveau commentaire est posté pour cette nouvelle.');
+INSERT INTO core_text VALUES ('COMMENT_HEADER_TEXT', 'FR', 'Vous pouvez poster un commentaire. <br>Les liens HTTP et FTP seront détéctés automatiquement. <BR> Ne mettez donc pas le tag <A HREF="...">. <p>Votre email ne sera pas affiché, il sera utilisé pour vous notifier<br> lorsqu''un nouveau commentaire est posté pour cet article.');
INSERT INTO core_text VALUES ('COMMENT_HEADER_TEXT', 'ES', 'You can here post a comment. <br>Be aware that HTTP and FTP URL will be detected ; do not put the <A HREF="..."> tag.');
INSERT INTO core_text VALUES ('COMMENT_HEADER_TEXT', 'DE', 'You can here post a comment. <br>Be aware that HTTP and FTP URL will be detected ; do not put the <A HREF="..."> tag.');
@@ -362,17 +362,17 @@
INSERT INTO core_text VALUES ('Y_C_SEND_EMAIL','DE','You can send this news item to the following email addresses');
INSERT INTO core_text VALUES ('NEWS_HEAD','EN','Enter the head of the piece of news');
-INSERT INTO core_text VALUES ('NEWS_HEAD','FR','Entrez l''en-tête de la nouvelle');
+INSERT INTO core_text VALUES ('NEWS_HEAD','FR','Entrez l''en-tête de l''article');
INSERT INTO core_text VALUES ('NEWS_HEAD','ES','Enter the head of the piece of news');
INSERT INTO core_text VALUES ('NEWS_HEAD','DE','Enter the head of the piece of news');
INSERT INTO core_text VALUES ('NEWS_BODY','EN','Enter the body of the piece of news');
-INSERT INTO core_text VALUES ('NEWS_BODY','FR','Entrez le corps de la nouvelle');
+INSERT INTO core_text VALUES ('NEWS_BODY','FR','Entrez le corps de l''article');
INSERT INTO core_text VALUES ('NEWS_BODY','ES','Enter the body of the piece of news');
INSERT INTO core_text VALUES ('NEWS_BODY','DE','Enter the body of the piece of news');
INSERT INTO core_text VALUES ('FORWARD_TITLE','EN','News Forwarder');
-INSERT INTO core_text VALUES ('FORWARD_TITLE','FR','Faire suivre une nouvelle');
+INSERT INTO core_text VALUES ('FORWARD_TITLE','FR','Faire suivre un article');
INSERT INTO core_text VALUES ('FORWARD_TITLE','ES','News Forwarder');
INSERT INTO core_text VALUES ('FORWARD_TITLE','DE','News Forwarder');
@@ -469,7 +469,7 @@
INSERT INTO core_text VALUES ('OLD_NEWS','DE','Hier sind die alten Nachrichten.');
INSERT INTO core_text VALUES ('NEW_NEWS','EN','Here are my fresh news.');
-INSERT INTO core_text VALUES ('NEW_NEWS','FR','Voici les nouvelles fraîches.');
+INSERT INTO core_text VALUES ('NEW_NEWS','FR','Voici les nouveaux articles.');
INSERT INTO core_text VALUES ('NEW_NEWS','ES','Aquí están las novedades.');
INSERT INTO core_text VALUES ('NEW_NEWS','DE','Hier sind die Neuigkeiten.');
@@ -546,7 +546,7 @@
INSERT INTO core_text VALUES ('TOP_TEXT','EN','Here you will find all the topics
that my news are related to.');
INSERT INTO core_text VALUES ('TOP_TEXT','FR','Vous trouverez ici toutes les
-rubriques auxquelles se rapportent les nouvelles');
+rubriques auxquelles se rapportent les articles');
INSERT INTO core_text VALUES ('TOP_TEXT','ES','Aquí
encontrará todos los temas relacionados con mis noticias.');
INSERT INTO core_text VALUES ('TOP_TEXT','DE','Hier werden sie alle die Themen
@@ -699,7 +699,7 @@
INSERT INTO core_text VALUES ('ON','DE','\\on');
INSERT INTO core_text VALUES ('COMMENT_NEWS','EN','Comment on this piece of news');
-INSERT INTO core_text VALUES ('COMMENT_NEWS','FR','Commenter cette nouvelle ?');
+INSERT INTO core_text VALUES ('COMMENT_NEWS','FR','Commenter cet article ?');
INSERT INTO core_text VALUES ('COMMENT_NEWS','ES','\\Comment on this piece of news');
INSERT INTO core_text VALUES ('COMMENT_NEWS','DE','\\Comment on this piece of news');
@@ -744,12 +744,12 @@
INSERT INTO core_text VALUES ('NEWS_BY_TOPICS_LIST_HEADER','DE','\\News in the selected topic');
INSERT INTO core_text VALUES ('OLD_NEWS_LIST_TITLE','EN','Old News are good news ?');
-INSERT INTO core_text VALUES ('OLD_NEWS_LIST_TITLE','FR','Nouvelle ancienne, bonne nouvelle ?');
+INSERT INTO core_text VALUES ('OLD_NEWS_LIST_TITLE','FR','Article précédemment postés');
INSERT INTO core_text VALUES ('OLD_NEWS_LIST_TITLE','ES','\\List Of Old News');
INSERT INTO core_text VALUES ('OLD_NEWS_LIST_TITLE','DE','\\List Of Old News');
INSERT INTO core_text VALUES ('OLD_NEWS_LIST_HEADER','EN','Here are the old news');
-INSERT INTO core_text VALUES ('OLD_NEWS_LIST_HEADER','FR','Voici la liste des vieilles nouvelles');
+INSERT INTO core_text VALUES ('OLD_NEWS_LIST_HEADER','FR','Voici la liste des vieux articles');
INSERT INTO core_text VALUES ('OLD_NEWS_LIST_HEADER','ES','\\Here are the old news');
INSERT INTO core_text VALUES ('OLD_NEWS_LIST_HEADER','DE','\\Here are the old news');
|
|
From: mdw c. <myd...@li...> - 2003-02-28 13:38:28
|
MyDynaWeb CVS committal Author : sukria Project : mydynaweb Module : sql Dir : mydynaweb/sql Modified Files: MYSQL_create.sql Log Message: quelques traductions en plus =================================================================== RCS file: /cvsroot/mydynaweb/mydynaweb/sql/MYSQL_create.sql,v retrieving revision 1.14 retrieving revision 1.15 diff -u -3 -r1.14 -r1.15 --- MYSQL_create.sql 5 Mar 2002 09:16:00 -0000 1.14 +++ MYSQL_create.sql 28 Feb 2003 13:37:57 -0000 1.15 @@ -33,6 +33,7 @@ prenom varchar(50), email varchar(255), photo varchar(150) default NULL, + last_login date, PRIMARY KEY (name) ); |
|
From: mdw c. <myd...@li...> - 2003-02-28 13:37:58
|
MyDynaWeb CVS committal
Author : sukria
Project : mydynaweb
Module : sql
Dir : mydynaweb/sql/upgrades
Modified Files:
core_text.sql
Log Message:
quelques traductions en plus
===================================================================
RCS file: /cvsroot/mydynaweb/mydynaweb/sql/upgrades/core_text.sql,v
retrieving revision 1.44
retrieving revision 1.45
diff -u -3 -r1.44 -r1.45
--- core_text.sql 4 Mar 2002 23:15:29 -0000 1.44
+++ core_text.sql 28 Feb 2003 13:37:57 -0000 1.45
@@ -1,5 +1,49 @@
DELETE FROM core_text;
+INSERT INTO core_text VALUES ('EMAIL', 'EN', 'email');
+INSERT INTO core_text VALUES ('EMAIL', 'FR', 'email');
+INSERT INTO core_text VALUES ('EMAIL', 'DE', 'email');
+INSERT INTO core_text VALUES ('EMAIL', 'ES', 'email');
+
+INSERT INTO core_text VALUES ('FORNAME', 'EN', 'forname');
+INSERT INTO core_text VALUES ('FORNAME', 'FR', 'prénom');
+INSERT INTO core_text VALUES ('FORNAME', 'DE', 'forname');
+INSERT INTO core_text VALUES ('FORNAME', 'ES', 'forname');
+
+INSERT INTO core_text VALUES ('CONFIRM', 'EN', 'Submit');
+INSERT INTO core_text VALUES ('CONFIRM', 'FR', 'Valider');
+INSERT INTO core_text VALUES ('CONFIRM', 'ES', 'Submit');
+INSERT INTO core_text VALUES ('CONFIRM', 'DE', 'Submit');
+
+INSERT INTO core_text VALUES ('NEW_ACCOUNT', 'EN', 'New account');
+INSERT INTO core_text VALUES ('NEW_ACCOUNT', 'FR', 'Nouveau compte');
+INSERT INTO core_text VALUES ('NEW_ACCOUNT', 'ES', 'New account');
+INSERT INTO core_text VALUES ('NEW_ACCOUNT', 'DE', 'New account');
+
+INSERT INTO core_text VALUES ('READ_THE_FULL_STORY', 'EN', 'Read the full story');
+INSERT INTO core_text VALUES ('READ_THE_FULL_STORY', 'FR', 'Lire tout l''article');
+
+INSERT INTO core_text VALUES ('SEE_THE_COMMENTS', 'EN', 'Read comments');
+INSERT INTO core_text VALUES ('SEE_THE_COMMENTS', 'FR', 'Voir les commentaires');
+
+INSERT INTO core_text VALUES ('REGISTRATION_FINISHED', 'EN', 'Thanks, your registration is finished. You will recieve a mail which you must reply to.');
+INSERT INTO core_text VALUES ('REGISTRATION_FINISHED', 'FR', 'Merci, votre demande d''inscription est validée. Vous allez recevoir un mail vous demandant une confirmation. Il vous suffira de répondre à ce mail pour valider l''ouverture de votre compte. Dès que votre compte sera validé, vous recevrez un dernier mail.');
+
+INSERT INTO core_text VALUES ('NEW_ACCOUNT_HEADER', 'EN', 'Fill the following fields to ask the site admin for a member registration. Every fields are required. Please, note that your email adress needs to be valid to confirm the registration.');
+INSERT INTO core_text VALUES ('NEW_ACCOUNT_HEADER', 'FR', 'Remplissez les champs suivants pour demander une création de compte à l''administrateur du site. Tous les champs sont obligatoires. Votre email est nécessaire pour valider la création du compte.');
+INSERT INTO core_text VALUES ('NEW_ACCOUNT_HEADER', 'ES', 'Remplissez les champs suivants en veillant bien à retenir votre mot de passe. Tous les champs sont obligatoires. Votre email est nécessaire pour valider la création du compte.');
+INSERT INTO core_text VALUES ('NEW_ACCOUNT_HEADER', 'DE', 'Remplissez les champs suivants en veillant bien à retenir votre mot de passe. Tous les champs sont obligatoires. Votre email est nécessaire pour valider la création du compte.');
+
+INSERT INTO core_text VALUES ('PRIVATE_LOGIN', 'EN', 'Members Area');
+INSERT INTO core_text VALUES ('PRIVATE_LOGIN', 'FR', 'Espace membres');
+INSERT INTO core_text VALUES ('PRIVATE_LOGIN', 'ES', 'Members area');
+INSERT INTO core_text VALUES ('PRIVATE_LOGIN', 'DE', 'Members area');
+
+INSERT INTO core_text VALUES ('YOU_CAN_LOGIN_HERE', 'EN', 'If you want to become a member, you have to <a href=''new_account.php''>create an account</a><p> If are a registrated member, you can login here.');
+INSERT INTO core_text VALUES ('YOU_CAN_LOGIN_HERE', 'FR', 'Si vous voulez devenir un membre, vous devez <a href=''new_account.php''>créer un compte</a><p> Si vous avez déjà un compte, vous pouvez vous identifier ici.');
+INSERT INTO core_text VALUES ('YOU_CAN_LOGIN_HERE', 'ES', 'If you want to become a member, you have to <a href=''new_account.php''>create an account</a><p> If are a registrated member, you can login here.');
+INSERT INTO core_text VALUES ('YOU_CAN_LOGIN_HERE', 'DE', 'If you want to become a member, you have to <a href=''new_account.php''>create an account</a><p> If are a registrated member, you can login here.');
+
INSERT INTO core_text VALUES ('NO_NEWS', 'EN', 'Sorry, no news here !');
INSERT INTO core_text VALUES ('NO_NEWS', 'FR', 'Désolé mais il n''y a plus de nouvelles !');
INSERT INTO core_text VALUES ('NO_NEWS', 'ES', 'Sorry, no news here !');
@@ -84,8 +128,13 @@
INSERT INTO core_text VALUES ('NEW_COMMENT_MAIL3', 'DE', 'Vient de poster un nouveau message intitulé : ');
INSERT INTO core_text VALUES ('NEW_COMMENT_MAIL3', 'ES', 'Vient de poster un nouveau message intitulé : ');
-INSERT INTO core_text VALUES ('BEST_NEWS', 'EN', 'Most read news item');
-INSERT INTO core_text VALUES ('BEST_NEWS', 'FR', 'Nouvelle la plus lue');
+INSERT INTO core_text VALUES ('FAMOUS_NEWS', 'EN', 'Most famous forums');
+INSERT INTO core_text VALUES ('FAMOUS_NEWS', 'FR', 'Meilleurs forums');
+INSERT INTO core_text VALUES ('FAMOUS_NEWS', 'ES', 'Most famous news items');
+INSERT INTO core_text VALUES ('FAMOUS_NEWS', 'DE', 'Most famous news items');
+
+INSERT INTO core_text VALUES ('BEST_NEWS', 'EN', 'Best news of the month');
+INSERT INTO core_text VALUES ('BEST_NEWS', 'FR', 'Meilleures nouvelles du mois');
INSERT INTO core_text VALUES ('BEST_NEWS', 'ES', 'Most read news item');
INSERT INTO core_text VALUES ('BEST_NEWS', 'DE', 'Most read news item');
@@ -298,14 +347,17 @@
INSERT INTO core_text VALUES ('YOUR_SESSION_HAS_EXPIRED','DE','Your session has expired !');
INSERT INTO core_text VALUES ('YOUR_SESSION_HAS_EXPIRED','ES','Your session has expired !');
+INSERT INTO core_text VALUES ('ADD_PRIVATE_MESSAGE','FR','Ajouter un message personnel');
+INSERT INTO core_text VALUES ('ADD_PRIVATE_MESSAGE','EN','Add a private message');
+
INSERT INTO core_text VALUES ('COMMENT_HEADER_TEXT', 'EN', 'You can here post a comment. <br>Be aware that HTTP and FTP URL will be detected. <br> Do not put the <A HREF="..."> tag.');
-INSERT INTO core_text VALUES ('COMMENT_HEADER_TEXT', 'FR', 'Vous pouvez poster un commentaire. <br>Les liens HTTP et FTP seront détéctés automatiquement. <BR> Ne mettez donc pas le tag <A HREF="...">.');
+INSERT INTO core_text VALUES ('COMMENT_HEADER_TEXT', 'FR', 'Vous pouvez poster un commentaire. <br>Les liens HTTP et FTP seront détéctés automatiquement. <BR> Ne mettez donc pas le tag <A HREF="...">. <p>Votre email ne sera pas affiché, il sera utilisé pour vous notifier<br> lorsqu''un nouveau commentaire est posté pour cette nouvelle.');
INSERT INTO core_text VALUES ('COMMENT_HEADER_TEXT', 'ES', 'You can here post a comment. <br>Be aware that HTTP and FTP URL will be detected ; do not put the <A HREF="..."> tag.');
INSERT INTO core_text VALUES ('COMMENT_HEADER_TEXT', 'DE', 'You can here post a comment. <br>Be aware that HTTP and FTP URL will be detected ; do not put the <A HREF="..."> tag.');
-INSERT INTO core_text VALUES ('Y_C_SEND_EMAIL','EN','You can send this news item to the following email addresses :');
-INSERT INTO core_text VALUES ('Y_C_SEND_EMAIL','FR','Vous pouvez envoyer cette nouvelle aux adresses emails suivantes :');
+INSERT INTO core_text VALUES ('Y_C_SEND_EMAIL','EN','Enter the email adresses (separated by commas)');
+INSERT INTO core_text VALUES ('Y_C_SEND_EMAIL','FR','Entrez les adresses email des destinataires (séparées par des virgules)');
INSERT INTO core_text VALUES ('Y_C_SEND_EMAIL','ES','Y');
INSERT INTO core_text VALUES ('Y_C_SEND_EMAIL','DE','You can send this news item to the following email addresses');
@@ -335,7 +387,7 @@
INSERT INTO core_text VALUES ('CHOOSE_REPLY','DE','reply');
INSERT INTO core_text VALUES ('COMMENT_HEAD','EN','Enter here the content of your comment <br>(HTML tags allowed : <B> <I> <LI> )');
-INSERT INTO core_text VALUES ('COMMENT_HEAD','FR','Entrez ici votre commentaire (tags HTML tags autorisés : <B> <I> <LI> )');
+INSERT INTO core_text VALUES ('COMMENT_HEAD','FR','Entrez ici votre commentaire, les sauts de ligne<br> seront conservés. (tags HTML autorisés : <B> <I> <LI> )');
INSERT INTO core_text VALUES ('COMMENT_HEAD','ES','Enter here the content of your comment <br>(HTML tags allowed : <B> <I> <LI> )');
INSERT INTO core_text VALUES ('COMMENT_HEAD','DE','Enter here the content of your comment <br>(HTML tags allowed : <B> <I> <LI>)');
|