Author: jani
Date: Sat Aug 31 09:24:25 2013
New Revision: 1519165

URL: http://svn.apache.org/r1519165
Log:
final commit for genLang extract, it is now identical with old system

Modified:
    
openoffice/branches/l10n40/main/helpcontent2/source/text/swriter/guide/using_hyphen.xhp
    openoffice/branches/l10n40/main/l10ntools/source/gL10nMem.cxx
    openoffice/branches/l10n40/main/officecfg/source/makefile.mk
    openoffice/branches/l10n40/main/readlicense_oo/docs/readme/readme.xrm
    
openoffice/branches/l10n40/main/reportbuilder/registry/data/org/openoffice/Office/Accelerators.xcu
    openoffice/branches/l10n40/main/starmath/source/makefile.mk
    openoffice/branches/l10n40/main/svx/source/makefile.mk
    openoffice/branches/l10n40/main/sw/source/makefile.mk

Modified: 
openoffice/branches/l10n40/main/helpcontent2/source/text/swriter/guide/using_hyphen.xhp
URL: 
http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/helpcontent2/source/text/swriter/guide/using_hyphen.xhp?rev=1519165&r1=1519164&r2=1519165&view=diff
==============================================================================
--- 
openoffice/branches/l10n40/main/helpcontent2/source/text/swriter/guide/using_hyphen.xhp
 (original)
+++ 
openoffice/branches/l10n40/main/helpcontent2/source/text/swriter/guide/using_hyphen.xhp
 Sat Aug 31 09:24:25 2013
@@ -87,7 +87,7 @@
       <paragraph xml-lang="en-US" id="hd_id3145417" role="heading" level="2" 
l10n="U"
                  oldref="36">Manual Hyphenation</paragraph>
       <paragraph xml-lang="en-US" id="par_id3154400" role="paragraph" l10n="U" 
oldref="23">You can insert a hyphen where you want on a line, or let 
$[officename] search for the words to hyphenate, and then offer a suggested 
hyphenation.</paragraph>
-      <paragraph xml-lang="en-US" id="" role="heading" level="3" l10n="NEW">To 
Manually Hyphenate Single Words</paragraph>
+      <paragraph xml-lang="en-US" id="missing_key" role="heading" level="3" 
l10n="NEW">To Manually Hyphenate Single Words</paragraph>
       <paragraph xml-lang="en-US" id="par_id3153363" role="paragraph" l10n="U" 
oldref="24">To quickly insert a hyphen, click in the word where you want to add 
the hyphen, and then press <switchinline select="sys"><caseinline 
select="MAC">Command
 
</caseinline><defaultinline>Ctrl</defaultinline></switchinline>+Hyphen(-).</paragraph>
       <paragraph xml-lang="en-US" id="par_id3154244" role="paragraph" l10n="U" 
oldref="37">If you insert a manual hyphen in a word, the word is only 
hyphenated at the manual hyphen. No additional automatic hyphenation is applied 
for this word. A word with a manual hyphen will be hyphenated without regard to 
the settings on the <emph>Text Flow</emph> tab page.</paragraph>
@@ -108,4 +108,4 @@
       <embed href="text/swriter/guide/hyphen_prevent.xhp#hyphen_prevent"/>
       <paragraph xml-lang="en-US" id="par_id3154361" role="paragraph" l10n="U" 
oldref="46"><link href="text/swriter/01/05030200.xhp" name="Text Flow">Text 
Flow</link></paragraph>
    </body>
-</helpdocument>
\ No newline at end of file
+</helpdocument>

Modified: openoffice/branches/l10n40/main/l10ntools/source/gL10nMem.cxx
URL: 
http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/l10ntools/source/gL10nMem.cxx?rev=1519165&r1=1519164&r2=1519165&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/l10ntools/source/gL10nMem.cxx (original)
+++ openoffice/branches/l10n40/main/l10ntools/source/gL10nMem.cxx Sat Aug 31 
09:24:25 2013
@@ -202,7 +202,10 @@ void l10nMem_impl::setSourceKey(int     
   for (i = 0; (i = newText.find("\\", i)) != (int)std::string::npos;)
   {
     ++i;
-    if (i < (int)newText.size() && (newText[i] == '\\' || newText[i] == '<' || 
newText[i] == '>' || newText[i] == 'n' || newText[i] == 't'))
+    if (i < (int)newText.size() &&
+        (newText[i] == '\\' || newText[i] == '<' || newText[i] == '>' ||
+         newText[i] == 'n'  || newText[i] == 't' || newText[i] == 'r' ||
+         newText[i] == '\''))
       ++i;
     else
     {

Modified: openoffice/branches/l10n40/main/officecfg/source/makefile.mk
URL: 
http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/officecfg/source/makefile.mk?rev=1519165&r1=1519164&r2=1519165&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/officecfg/source/makefile.mk (original)
+++ openoffice/branches/l10n40/main/officecfg/source/makefile.mk Sat Aug 31 
09:24:25 2013
@@ -63,7 +63,7 @@ LANGUAGE_FILELIST=../registry/data/org/o
 ../registry/data/org/openoffice/Office/UI.xcu \
 ../registry/data/org/openoffice/Office/UI/XFormsWindowState.xcu \
 ../registry/data/org/openoffice/Office/WebWizard.xcu \
-../registry/data/org/openoffice/Office/Writer.xcu
+../registry/data/org/openoffice/Office/Writer.xcu 
 
 
 .INCLUDE :     settings.mk

Modified: openoffice/branches/l10n40/main/readlicense_oo/docs/readme/readme.xrm
URL: 
http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/readlicense_oo/docs/readme/readme.xrm?rev=1519165&r1=1519164&r2=1519165&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/readlicense_oo/docs/readme/readme.xrm 
(original)
+++ openoffice/branches/l10n40/main/readlicense_oo/docs/readme/readme.xrm Sat 
Aug 31 09:24:25 2013
@@ -289,7 +289,7 @@
                                        <p id="subscribelist4" 
xml:lang="en-US">General project development and discussion list: 
d...@openoffice.apache.org (heavy traffic)</p>
                                </li>
                        </ul>
-                       <h3 xml:lang="en-US">Joining the Project</h3>
+                       <h3 id="missing_id" xml:lang="en-US">Joining the 
Project</h3>
                        <p id="joining" xml:lang="en-US">You can make major 
contributions to this important open source project even if you have limited 
software design or coding experience. Yes, you!</p>
                        <p id="joining1" url="ahead" xml:lang="en-US">At <a 
href="http://openoffice.apache.org/get-involved.html";>http://openoffice.apache.org/get-involved.html</a>
 you will find a first overview where you can start with, ranging from 
Localization, QA, user support to some real core coding projects. If you are 
not a developer, you can help with Documentation or Marketing, for example. The 
${PRODUCTNAME} marketing is applying both guerrilla and traditional commercial 
techniques to marketing open source software, and we are doing it across 
language and cultural barriers, so you can help just by spreading the word and 
telling a friend about this office suite.</p>
                        <p id="joining3" xml:lang="en-US">You can help by 
joining the marketing mailing list market...@openoffice.apache.org where you 
can provide point communication contact with press, media, government agencies, 
consultants, schools, Linux Users Groups and developers in your country and 
local community.</p>

Modified: 
openoffice/branches/l10n40/main/reportbuilder/registry/data/org/openoffice/Office/Accelerators.xcu
URL: 
http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/reportbuilder/registry/data/org/openoffice/Office/Accelerators.xcu?rev=1519165&r1=1519164&r2=1519165&view=diff
==============================================================================
--- 
openoffice/branches/l10n40/main/reportbuilder/registry/data/org/openoffice/Office/Accelerators.xcu
 (original)
+++ 
openoffice/branches/l10n40/main/reportbuilder/registry/data/org/openoffice/Office/Accelerators.xcu
 Sat Aug 31 09:24:25 2013
@@ -134,15 +134,15 @@
 
         <node oor:name="SUBTRACT" oor:op="replace">
           <prop oor:name="Command">
-            <value xml:lang="en-US">.uno:CollapseSection</value>
             <value xml:lang="x-no-translate">I10N SHORTCUTS - NO 
TRANSLATE</value>
+            <value xml:lang="en-US">.uno:CollapseSection</value>
           </prop>
         </node>
         
         <node oor:name="ADD" oor:op="replace">
           <prop oor:name="Command">
-            <value xml:lang="en-US">.uno:ExpandSection</value>
             <value xml:lang="x-no-translate">I10N SHORTCUTS - NO 
TRANSLATE</value>
+            <value xml:lang="en-US">.uno:ExpandSection</value>
           </prop>
         </node>
         

Modified: openoffice/branches/l10n40/main/starmath/source/makefile.mk
URL: 
http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/starmath/source/makefile.mk?rev=1519165&r1=1519164&r2=1519165&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/starmath/source/makefile.mk (original)
+++ openoffice/branches/l10n40/main/starmath/source/makefile.mk Sat Aug 31 
09:24:25 2013
@@ -31,7 +31,7 @@ TARGET=starmath
 LIBTARGET=NO
 
 # --- Settings -----------------------------------------------------
-LANGUAGE_FILELIST=symbol.src toolbox.src
+LANGUAGE_FILELIST=symbol.src toolbox.src commands.src smres.src
 
 
 ENABLE_EXCEPTIONS=TRUE

Modified: openoffice/branches/l10n40/main/svx/source/makefile.mk
URL: 
http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/svx/source/makefile.mk?rev=1519165&r1=1519164&r2=1519165&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/svx/source/makefile.mk (original)
+++ openoffice/branches/l10n40/main/svx/source/makefile.mk Sat Aug 31 09:24:25 
2013
@@ -75,7 +75,16 @@ toolbars/fontworkbar.src \
 unodialogs/textconversiondlgs/chinese_dialogs.src \
 unodialogs/textconversiondlgs/chinese_dictionarydialog.src \
 unodialogs/textconversiondlgs/chinese_direction_tmpl.hrc \
-unodialogs/textconversiondlgs/chinese_translationdialog.src
+unodialogs/textconversiondlgs/chinese_translationdialog.src \
+sidebar/graphic/GraphicPropertyPanel.src \
+sidebar/line/LinePropertyPanel.src \
+sidebar/EmptyPanel.src \
+sidebar/text/TextPropertyPanel.src \
+sidebar/possize/PosSizePropertyPanel.src \
+sidebar/area/AreaPropertyPanel.src \
+sidebar/paragraph/ParaPropertyPanel.src \
+sidebar/insert/InsertPropertyPanel.src \
+../inc/globlmn_tmpl.hrc
 
 
 .INCLUDE :     settings.mk

Modified: openoffice/branches/l10n40/main/sw/source/makefile.mk
URL: 
http://svn.apache.org/viewvc/openoffice/branches/l10n40/main/sw/source/makefile.mk?rev=1519165&r1=1519164&r2=1519165&view=diff
==============================================================================
--- openoffice/branches/l10n40/main/sw/source/makefile.mk (original)
+++ openoffice/branches/l10n40/main/sw/source/makefile.mk Sat Aug 31 09:24:25 
2013
@@ -138,7 +138,10 @@ ui/utlui/poolfmt.src \
 ui/utlui/unotools.src \
 ui/utlui/utlui.src \
 ui/web/web.src \
-ui/wrtsh/wrtsh.src
+ui/wrtsh/wrtsh.src \
+ui/sidebar/WrapPropertyPanel.src \
+ui/sidebar/PagePropertyPanel.src
+
 
 
 .INCLUDE :     settings.mk


Reply via email to