Skip to content
This repository was archived by the owner on Nov 16, 2020. It is now read-only.

Commit 52e79c2

Browse files
committed
RELEASE_1_4_8 => v1.4.8 commit
1 parent 928f889 commit 52e79c2

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

44 files changed

+227
-40
lines changed

CHANGELOG

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,12 @@
1+
09/24/10: Version 1.4.8
2+
-----------------------
3+
4+
* [30969] added more translations to german and italian translations (closes #9088)
5+
* [30968] fixed Persian Translation of admin generator (closes #8960)
6+
* [30967] fixed i18n support for traditional chinese (closes #8885)
7+
* [30966] updated Slovenian translations for Doctrine and Propel messages (closes #8985)
8+
* [30961] fixed missing WDT javascript (closes #9083, refs #9080)
9+
110
09/21/10: Version 1.4.7
211
-----------------------
312

lib/autoload/sfCoreAutoload.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
/**
1212
* The current symfony version.
1313
*/
14-
define('SYMFONY_VERSION', '1.4.7');
14+
define('SYMFONY_VERSION', '1.4.8');
1515

1616
/**
1717
* sfCoreAutoload class.
@@ -22,7 +22,7 @@
2222
* @package symfony
2323
* @subpackage autoload
2424
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
25-
* @version SVN: $Id: sfCoreAutoload.class.php 30955 2010-09-22 02:35:27Z Kris.Wallsmith $
25+
* @version SVN: $Id: sfCoreAutoload.class.php 30982 2010-09-24 02:41:20Z Kris.Wallsmith $
2626
*/
2727
class sfCoreAutoload
2828
{

lib/debug/sfWebDebug.class.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@
1414
* @package symfony
1515
* @subpackage debug
1616
* @author Fabien Potencier <fabien.potencier@symfony-project.com>
17-
* @version SVN: $Id: sfWebDebug.class.php 30951 2010-09-22 02:17:27Z Kris.Wallsmith $
17+
* @version SVN: $Id: sfWebDebug.class.php 30961 2010-09-22 09:36:43Z Kris.Wallsmith $
1818
*/
1919
class sfWebDebug
2020
{
@@ -167,7 +167,7 @@ public function injectToolbar($content)
167167
}
168168
else
169169
{
170-
$content = substr($content, 0, $pos).$debug.substr($content, $pos);
170+
$content = substr($content, 0, $pos).'<script type="text/javascript">'.$this->getJavascript().'</script>'.$debug.substr($content, $pos);
171171
}
172172

173173
return $content;

lib/plugins/sfDoctrinePlugin/i18n/sf_admin.de.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,35 @@
149149
<source><![CDATA[from %from_date%<br />to %to_date%]]></source>
150150
<target><![CDATA[von %from_date%<br />bis %to_date%]]></target>
151151
</trans-unit>
152+
153+
<trans-unit>
154+
<source>Required.</source>
155+
<target>Erforderlich.</target>
156+
</trans-unit>
157+
<trans-unit>
158+
<source>Invalid.</source>
159+
<target>Ungültig.</target>
160+
</trans-unit>
161+
<trans-unit>
162+
<source><![CDATA["%value%" is not an integer.]]></source>
163+
<target><![CDATA["%value%" ist kein Integer.]]></target>
164+
</trans-unit>
165+
<trans-unit>
166+
<source><![CDATA["%value%" is not an number.]]></source>
167+
<target><![CDATA["%value%" ist keine Nummer.]]></target>
168+
</trans-unit>
169+
<trans-unit>
170+
<source><![CDATA[At least %min% values must be selected (%count% values selected).]]></source>
171+
<target><![CDATA[Es müssen mindestens %min% Werte ausgewählt werden (%count% Werte ausgewählt).]]></target>
172+
</trans-unit>
173+
<trans-unit>
174+
<source><![CDATA[At most %max% values must be selected (%count% values selected).]]></source>
175+
<target><![CDATA[Es können maximal %max% Werte ausgewählt werden (%count% Werte ausgewählt).]]></target>
176+
</trans-unit>
177+
<trans-unit>
178+
<source><![CDATA[CSRF attack detected.]]></source>
179+
<target><![CDATA[CSRF Attacke erkannt.]]></target>
180+
</trans-unit>
152181
</body>
153182
</file>
154183
</xliff>

lib/plugins/sfDoctrinePlugin/i18n/sf_admin.fa.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@
66
<body>
77
<!-- Translated By Ehsan Chavoshi -->
88
<!-- Actions -->
9+
<trans-unit>
10+
<source>Choose an action</source>
11+
<target>انتخاب عملیات</target>
12+
</trans-unit>
13+
<trans-unit>
14+
<source>go</source>
15+
<target>برو</target>
16+
</trans-unit>
917
<trans-unit>
1018
<source>New</source>
1119
<target>جديد</target>
@@ -34,6 +42,14 @@
3442
<source>Cancel</source>
3543
<target>لغو</target>
3644
</trans-unit>
45+
<trans-unit>
46+
<source>Show</source>
47+
<target>نمایش</target>
48+
</trans-unit>
49+
<trans-unit>
50+
<source>Back to list</source>
51+
<target>بازگشت به لیست</target>
52+
</trans-unit>
3753

3854
<!-- Filters -->
3955
<trans-unit>

lib/plugins/sfDoctrinePlugin/i18n/sf_admin.it.xml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -169,6 +169,34 @@
169169
<source><![CDATA[from %from_date%<br />to %to_date%]]></source>
170170
<target><![CDATA[da %from_date%<br />a %to_date%]]></target>
171171
</trans-unit>
172+
<trans-unit>
173+
<source>Required.</source>
174+
<target>Obbligatorio.</target>
175+
</trans-unit>
176+
<trans-unit>
177+
<source>Invalid.</source>
178+
<target>Non valido.</target>
179+
</trans-unit>
180+
<trans-unit>
181+
<source><![CDATA["%value%" is not an integer.]]></source>
182+
<target><![CDATA["%value%" non è un intero.]]></target>
183+
</trans-unit>
184+
<trans-unit>
185+
<source><![CDATA["%value%" is not an number.]]></source>
186+
<target><![CDATA["%value%" non è un numero.]]></target>
187+
</trans-unit>
188+
<trans-unit>
189+
<source><![CDATA[At least %min% values must be selected (%count% values selected).]]></source>
190+
<target><![CDATA[Si devono selezionare almeno %min% valori (%count% selezionati).]]></target>
191+
</trans-unit>
192+
<trans-unit>
193+
<source><![CDATA[At most %max% values must be selected (%count% values selected).]]></source>
194+
<target><![CDATA[Si devono selezionare al più %max% valori (%count% selezionati).]]></target>
195+
</trans-unit>
196+
<trans-unit>
197+
<source><![CDATA[CSRF attack detected.]]></source>
198+
<target><![CDATA[Individuato attacco CSRF.]]></target>
199+
</trans-unit>
172200
</body>
173201
</file>
174202
</xliff>

lib/plugins/sfDoctrinePlugin/i18n/sf_admin.sl.xml

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,14 @@
4141
<source>go</source>
4242
<target>Pojdi</target>
4343
</trans-unit>
44+
<trans-unit>
45+
<source>Back to list</source>
46+
<target>Nazaj na seznam</target>
47+
</trans-unit>
48+
<trans-unit>
49+
<source>Are you sure?</source>
50+
<target>Ste prepričani?</target>
51+
</trans-unit>
4452

4553
<!-- Filters -->
4654
<trans-unit>
@@ -63,7 +71,7 @@
6371
</trans-unit>
6472
<trans-unit>
6573
<source>(page %%page%%/%%nb_pages%%)</source>
66-
<target>(stran %%stran%%/%%nb_stran%%)</target>
74+
<target>(stran %%page%%/%%nb_pages%%)</target>
6775
</trans-unit>
6876
<trans-unit>
6977
<source>asc</source>
@@ -75,7 +83,11 @@
7583
</trans-unit>
7684
<trans-unit>
7785
<source>[0] no result|[1] 1 result|(1,+Inf] %1% results</source>
78-
<target>[0] ni rezultata|[1] 1 rezultat|(1,+Inf] %1% rezultati</target>
86+
<target><![CDATA[[0] ni rezultatov|{n: n == 1 || n % 100 == 1}%1% rezultat|{n: n==2 || n % 100 == 2}%1% rezultata|{n: n == 3 || n == 4 || n % 100 == 3 || n % 100 == 4 }%1% rezultati|(4,+Inf]%1% rezultatov]]></target>
87+
</trans-unit>
88+
<trans-unit>
89+
<source>Checked</source>
90+
<target>Označeno</target>
7991
</trans-unit>
8092

8193
<!-- Pagination -->
@@ -127,7 +139,7 @@
127139
</trans-unit>
128140
<trans-unit>
129141
<source>You must select an action to execute on the selected items.</source>
130-
<target>Izbrati morate eno aktivnost za izbrane predmete.</target>
142+
<target>Izbrati morate aktivnost za izbrane predmete.</target>
131143
</trans-unit>
132144
<trans-unit>
133145
<source>A problem occurs when deleting the selected items as some items do not exist anymore.</source>

lib/plugins/sfDoctrinePlugin/i18n/sf_admin.zh_TW.xml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,10 @@
5858
</trans-unit>
5959

6060
<!-- List -->
61+
<trans-unit>
62+
<source>[0] no result|[1] 1 result|(1,+Inf] %1% results</source>
63+
<target>[0] 沒有數據|[1] 1 筆數據|(1,+Inf] %1% 筆數據</target>
64+
</trans-unit>
6165
<trans-unit>
6266
<source>No result</source>
6367
<target>沒有數據</target>

lib/plugins/sfPropelPlugin/i18n/sf_admin.de.xml

Lines changed: 29 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -149,6 +149,35 @@
149149
<source><![CDATA[from %from_date%<br />to %to_date%]]></source>
150150
<target><![CDATA[von %from_date%<br />bis %to_date%]]></target>
151151
</trans-unit>
152+
153+
<trans-unit>
154+
<source>Required.</source>
155+
<target>Erforderlich.</target>
156+
</trans-unit>
157+
<trans-unit>
158+
<source>Invalid.</source>
159+
<target>Ungültig.</target>
160+
</trans-unit>
161+
<trans-unit>
162+
<source><![CDATA["%value%" is not an integer.]]></source>
163+
<target><![CDATA["%value%" ist kein Integer.]]></target>
164+
</trans-unit>
165+
<trans-unit>
166+
<source><![CDATA["%value%" is not an number.]]></source>
167+
<target><![CDATA["%value%" ist keine Nummer.]]></target>
168+
</trans-unit>
169+
<trans-unit>
170+
<source><![CDATA[At least %min% values must be selected (%count% values selected).]]></source>
171+
<target><![CDATA[Es müssen mindestens %min% Werte ausgewählt werden (%count% Werte ausgewählt).]]></target>
172+
</trans-unit>
173+
<trans-unit>
174+
<source><![CDATA[At most %max% values must be selected (%count% values selected).]]></source>
175+
<target><![CDATA[Es können maximal %max% Werte ausgewählt werden (%count% Werte ausgewählt).]]></target>
176+
</trans-unit>
177+
<trans-unit>
178+
<source><![CDATA[CSRF attack detected.]]></source>
179+
<target><![CDATA[CSRF Attacke erkannt.]]></target>
180+
</trans-unit>
152181
</body>
153182
</file>
154183
</xliff>

lib/plugins/sfPropelPlugin/i18n/sf_admin.fa.xml

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,14 @@
66
<body>
77
<!-- Translated By Ehsan Chavoshi -->
88
<!-- Actions -->
9+
<trans-unit>
10+
<source>Choose an action</source>
11+
<target>انتخاب عملیات</target>
12+
</trans-unit>
13+
<trans-unit>
14+
<source>go</source>
15+
<target>برو</target>
16+
</trans-unit>
917
<trans-unit>
1018
<source>New</source>
1119
<target>جديد</target>
@@ -34,6 +42,14 @@
3442
<source>Cancel</source>
3543
<target>لغو</target>
3644
</trans-unit>
45+
<trans-unit>
46+
<source>Show</source>
47+
<target>نمایش</target>
48+
</trans-unit>
49+
<trans-unit>
50+
<source>Back to list</source>
51+
<target>بازگشت به لیست</target>
52+
</trans-unit>
3753

3854
<!-- Filters -->
3955
<trans-unit>

0 commit comments

Comments
 (0)