Author: buildbot
Date: Fri Jun 27 20:35:00 2014
New Revision: 914152
Log:
Staging update by buildbot for ooo-site
Modified:
websites/staging/ooo-site/trunk/cgi-bin/ (props changed)
websites/staging/ooo-site/trunk/content/ (props changed)
websites/staging/ooo-site/trunk/content/bg/index.html
Propchange: websites/staging/ooo-site/trunk/cgi-bin/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri Jun 27 20:35:00 2014
@@ -1 +1 @@
-1606185
+1606212
Propchange: websites/staging/ooo-site/trunk/content/
------------------------------------------------------------------------------
--- cms:source-revision (original)
+++ cms:source-revision Fri Jun 27 20:35:00 2014
@@ -1 +1 @@
-1606185
+1606212
Modified: websites/staging/ooo-site/trunk/content/bg/index.html
==============================================================================
--- websites/staging/ooo-site/trunk/content/bg/index.html (original)
+++ websites/staging/ooo-site/trunk/content/bg/index.html Fri Jun 27 20:35:00
2014
@@ -36,37 +36,34 @@
function showAlertbox( show ) {
// More see "http://html-color-codes.info/"
- var l10n_alert_box_color = "#FFD9A7";
+ var l10n_alert_box_background_color = "#F5A9A9";
// Maximum 86 characters.
- var l10n_alert_box_headline_text = "We need your help to complete
support of Apache OpenOffice into Bulgarian!";
- var l10n_alert_box_headline_title = "We need your help to complete
support of Apache OpenOffice into Bulgarian!";
+ var l10n_alert_box_headline_text = "We need your help to complete
support of Apache OpenOffice into Bulgarian!";
// Maximum 517 characters.
- var l10n_alert_box_text1_text = "This note is in English because we
have no one to translate this webpage and others into your language. The links
on the page will help you download and install Apache OpenOffice with Bulgarian
translation. But we still need help with this website. <br /><br /> If you are
interested in helping translate, please click the following link to review the
information. You can send a note to our mailing list,
\"[email protected]\", if you want to volunteer or if you have
questions.";
- var l10n_alert_box_text1_title = "This note is in English because we
have no one to translate this webpage and others into your language. The links
on the page will help you download and install Apache OpenOffice with Bulgarian
translation. But we still need help with this website. If you are interested in
helping translate, please click the following link to review the information.
You can send a note to our mailing list, \"[email protected]\", if
you want to volunteer or if you have questions.";
+ var l10n_alert_box_text1_text = "This note is in English because
we have no one to translate this webpage and others into your language. The
links on the page will help you download and install Apache OpenOffice with
Bulgarian translation. But we still need help with this website. <br /><br />
If you are interested in helping translate, please click the following link to
review the information. You can send a note to our mailing list,
\"[email protected]\", if you want to volunteer or if you have
questions.";
// Maximum 517 characters.
- var l10n_alert_box_text2_text = "How to help with traslations.";
- var l10n_alert_box_text2_title = "How to help with traslations.";
- var l10n_alert_box_text2_href =
"http://openoffice.apache.org/translate.html";
+ var l10n_alert_box_text2_text = "How to help with translation";
+ var l10n_alert_box_text2_href =
"http://openoffice.apache.org/translate.html";
// Show alert box or not?
if( show ) {
- if( ! l10n_alert_box_color )
- var l10n_alert_box_color = "#FFD9A7";
+ // If no color value was set then use the default value.
+ if( ! l10n_alert_box_background_color )
+ var l10n_alert_box_background_color = "#FFD9A7";
// Show alert box with defined background color.
- document.write( "<div id='alert_box' style='background: " +
l10n_alert_box_color + "'>" );
+ document.write( "<div id='alert_box' style='background: " +
l10n_alert_box_background_color + "'>" );
// Show headline.
- document.write( "<h2 title='" + l10n_alert_box_headline_title +
"'>" + l10n_alert_box_headline_text + "</h2>" );
+ document.write( "<h2>" + l10n_alert_box_headline_text + "</h2>" );
- // Show text without link if available.
+ // If text without link is available then show it.
if( l10n_alert_box_text1_text )
- document.write( "<p title='" + l10n_alert_box_text1_title + "'>"
+ l10n_alert_box_text1_text + "</p>" );
+ document.write( "<p>" + l10n_alert_box_text1_text + "</p>" );
- // Show text with link if available.
+ // If text with link is available then show it.
if( l10n_alert_box_text2_text ) {
document.write( "<p>"
- + "<a title='" + l10n_alert_box_text2_title + "'"
- + "href='" + l10n_alert_box_text2_href + "' target='_blank'>"
+ + "<a href='" + l10n_alert_box_text2_href + "'
target='_blank'>"
+ l10n_alert_box_text2_text
+ "</a>"
+ "</p>" );