ooo-build r13667 - in trunk: . bin doc po



Author: pmladek
Date: Mon Aug 25 15:50:58 2008
New Revision: 13667
URL: http://svn.gnome.org/viewvc/ooo-build?rev=13667&view=rev

Log:
2008-08-25  Petr Mladek  <pmladek suse cz>

	* po/Makefile.am, bin/po2sdf, bin/Makefile.am, bin/localize-ooo:
	* doc/localization.txt, po/README: support ooo-build patches
	  localization
	* po/ooo-build.sdf, po/ooo-build.pot: initial sdf and pot file
	* po/ooo-build-cs.po, po/ooo-build-cs.sdf: sample partial Czech
	  translation

	  Note that it uses the prebuilt sdf files to avoid build dependency
	  on translate-toolkit. We do not have it on older distros, ...

	  Also the extracting of the ooo-build-specific strings is rather
	  painful and must be done offline. Feel free to send patches ;-)



Added:
   trunk/bin/po2sdf   (contents, props changed)
   trunk/po/README
   trunk/po/ooo-build-cs.po
   trunk/po/ooo-build-cs.sdf
   trunk/po/ooo-build.pot
   trunk/po/ooo-build.sdf
Modified:
   trunk/ChangeLog
   trunk/NEWS
   trunk/bin/Makefile.am
   trunk/bin/localize-ooo
   trunk/configure.in
   trunk/doc/localization.txt
   trunk/po/Makefile.am

Modified: trunk/NEWS
==============================================================================
--- trunk/NEWS	(original)
+++ trunk/NEWS	Mon Aug 25 15:50:58 2008
@@ -1,4 +1,4 @@
-ooo-build-3.0.1:
+ooo-build-3.0.0.1:
 
     + features:
 	+ support ooo300-m3 [Kendy, Thorsten, Rene]

Modified: trunk/bin/Makefile.am
==============================================================================
--- trunk/bin/Makefile.am	(original)
+++ trunk/bin/Makefile.am	Mon Aug 25 15:50:58 2008
@@ -33,6 +33,7 @@
 	owner \
 	package-lang-win32 \
 	package-ooo \
+	po2sdf \
 	pyunorc-update64.in \
 	re-root \
 	stat-localizations \

Modified: trunk/bin/localize-ooo
==============================================================================
--- trunk/bin/localize-ooo	(original)
+++ trunk/bin/localize-ooo	Mon Aug 25 15:50:58 2008
@@ -73,6 +73,16 @@
     echo $SRCDIR/GSI_$langcode.sdf >>$extra_trans_stamp
 done
 
+# apply translations for ooo-build-specific strings
+for langcode in $extra_trans_langs ; do
+    sdf_file=$TOOLSDIR/po/ooo-build-$langcode.sdf
+    test -f $sdf_file || continue
+    grep -q "^$sdf_file$" $extra_trans_stamp 2>/dev/null && continue;
+    echo "Merging ooo-build strings translation $(basename $sdf_file) ..."
+    $SOLARVERSION/$INPATH/bin/localize -m -x -l all -f $sdf_file || exit 1;
+    echo "$sdf_file" >>$extra_trans_stamp
+done
+
 # apply all extra string fixes and updates
 for fn in $SRCDIR/sdf/*.sdf; do
     [ -f "$fn" ] || continue

Added: trunk/bin/po2sdf
==============================================================================
--- (empty file)
+++ trunk/bin/po2sdf	Mon Aug 25 15:50:58 2008
@@ -0,0 +1,77 @@
+#!/bin/sh
+
+usage()
+{
+    echo "This script converts one PO file to one SDF (GSI) file format"
+    echo
+    echo "Usage:" ${0##*/} lang sdf_template po_file sdf_file
+    echo
+    echo "Arguments:"
+    echo
+    echo "	lang:	      language id, e.g \"de\""
+    echo "	sdf_template: original sdf file that has been used to generate"
+    echo "	              the .pot file"
+    echo "	po_file:      input .po file"
+    echo "	sdf_file:     output .sdf file"
+}
+
+if test -z "$1"  -o  "$1" = "--help" ; then
+    usage && exit 1;
+fi
+
+lang=$1
+sdf_template=$2
+po_in=$3
+sdf_out=$4
+
+if ! which po2oo >/dev/null 2>&1 ; then
+    echo "Error: po2oo tool is not available!"
+    echo "       You need to install translate-toolkit, see" ; \
+    echo "       http://translate.sourceforge.net/wiki/start"; ; \
+    echo "       The package for openSUSE it named python-translate-toolkit" ; \
+    echo "       and can be found at" ; \
+    echo "       http://download.opensuse.org/repositories/OpenOffice.org:/EXTRAS/"; ; \
+    exit 1;
+fi
+
+# Crazy hack
+#
+# translate-toolkit-1.1.1 is not able to convert it in
+# the--multifile=onefile format, so we need to split the .po file
+# to get the --multifile=toplevel format
+#
+# We get the split .pot file and copy the .po file accordingly to get the same
+# structure. We get a lot warnings but it works.
+
+# get the split pot file
+pot_topdir=`mktemp -d /tmp/po2sdf-pot.XXXXXX`
+oo2po -P --multifile=toplevel $sdf_template $pot_topdir
+
+# "split" the po file accordingly
+po_in_topdir=`mktemp -d /tmp/po2sdf-po.XXXXXX`
+for pot in `ls $pot_topdir` ; do
+    pot_name=${pot%.pot}
+    # we get many warnings later when the full .po file is just copied
+    # it might be better to really split it but...
+    cp $po_in $po_in_topdir/$pot_name.po
+done
+rm -rf $pot_topdir
+
+# finally, generate the sdf file
+# there are many error messages because of the copied .po files but it somewhat works
+sdf_unsorted=`mktemp /tmp/po2sdf-sdf.XXXXXX`
+po2oo --fuzzy --multifile=toplevel  -l $lang -t $sdf_template -i $po_in_topdir -o $sdf_unsorted 2>/dev/null
+
+if test ! -s $sdf_unsorted ; then
+    echo "Error: The generated SDF file is empty!"
+    echo "Please, edit the ${0##*/} script and enable error messages in the po2oo command."
+    err=1;
+else
+    sort $sdf_unsorted >$sdf_out
+    err=0
+fi
+
+rm -rf $po_in_topdir
+rm -f $sdf_unsorted
+
+exit $err

Modified: trunk/configure.in
==============================================================================
--- trunk/configure.in	(original)
+++ trunk/configure.in	Mon Aug 25 15:50:58 2008
@@ -1,4 +1,4 @@
-AC_INIT(ooo-build, 3.0.1)
+AC_INIT(ooo-build, 3.0.0.1)
 AC_PREREQ(2.51)
 AC_CONFIG_SRCDIR(bin/build-ooo)
 AC_PREFIX_DEFAULT(/usr)

Modified: trunk/doc/localization.txt
==============================================================================
--- trunk/doc/localization.txt	(original)
+++ trunk/doc/localization.txt	Mon Aug 25 15:50:58 2008
@@ -13,7 +13,6 @@
       http://download.opensuse.org/repositories/OpenOffice.org:/EXTRAS/
     + FIXME: put it into the python project in the Build Service
 
-
 1. do plain build (without patches)
     + ./configure --with-distro=PlainLinux
     + enough to build transex3
@@ -28,34 +27,42 @@
 5. get ooo-build-specific strings
     ./extract-new-strings GSI-upstream-en-US.sdf GSI-ooo-build-en-US.sdf GSI-upstream-en-US-new.sdf
 6. update ooo-build (SDF/POT/PO files)
-    + TODO: a tool to do the transformation easily
+    cp GSI-upstream-en-US-new.sdf ooo-build/po/ooo-build.sdf
+    cd ooo-build/po
+    make update-sdf
+
 
+How to update PO files:
+-----------------------
+
+1. merge the new PO file into exiting one
+    + either simply replace the obsolete one
+    + use pomerge tool
+2. update the prebuild sdf files:
+    + make update-sdf
 
 How to get the strings translated:
 ----------------------------------
 
-+ by GNOME community?
++ we will probably get the translation automatically by the GNOME community
+    + see http://l10n.gnome.org/module/ooo-build
     + could get more and earlier?
     + follow GNOME project rules
-+ by Novell and openSUSE community
++ another possibility would be to get the translation by openSUSE community
+  and Novell:
+    + see http://en.opensuse.org/OpenSUSE_Localization_Guide
     + problem with timing because it is synced with openSUSE release
-    + guarantee supported languages
     + translation is not project specific
-
-How to apply new translations:
-------------------------------
-
-1. transform PO -> SDF 
-    + TODO: in bin/localize-ooo or by make?
-    + using the po2oo tool from translate-toolkit, see above
-2. apply the translations:
-    + TODO: in localize-ooo
-    + using the localize tool (like the other gsi/sdf files
+    + guarantee supported languages
 
 
 Extra stuff:
 ------------
 
     + get SDF for single patch (when upstreaming)
+	+ generate reduced sdf_template
+	+ generate SDF files for each localization 
+	+ merge and sort
+	+ bin the en_US strings
     + merge translations from other sources (really needed?)
     + distro-specific translations (do they exist?)

Modified: trunk/po/Makefile.am
==============================================================================
--- trunk/po/Makefile.am	(original)
+++ trunk/po/Makefile.am	Mon Aug 25 15:50:58 2008
@@ -1 +1,29 @@
-EXTRA_DIST=${wildcard *.po} ChangeLog POTFILES.in
+EXTRA_DIST=${wildcard *.po} \
+	${wildcard *.sdf} \
+	ooo-build.pot \
+	README \
+	ChangeLog \
+	POTFILES.in
+
+ooo_build_po_files = ${wildcard ooo-build-*.po}
+
+update-sdf: $(ooo_build_po_files:ooo-build-%.po=ooo-build-%.sdf)
+
+ooo-build.pot: ooo-build.sdf /usr/bin/oo2po
+	oo2po -P --multifile=onefile ooo-build.sdf $@
+
+ooo-build-*.po: ooo-build.pot /usr/bin/pot2po
+	pot2po -t $@ -i ooo-build.pot -o $  new
+	mv $  new $@
+
+ooo-build-%.sdf: ooo-build-%.po ooo-build.sdf /usr/bin/po2oo ../bin/po2sdf
+	../bin/po2sdf $* ooo-build.sdf $< $@
+
+/usr/bin/oo2po /usr/bin/pot2po /usr/bin/po2po:
+	echo "Error: $@ does not exit" ; \
+	echo "       You need to install translate-toolkit, see" ; \
+	echo "       http://translate.sourceforge.net/wiki/start"; ; \
+	echo "       The package for openSUSE it named python-translate-toolkit" ; \
+	echo "       and can be found at" ; \
+	echo "       http://download.opensuse.org/repositories/OpenOffice.org:/EXTRAS/"; ; \
+	exit 1

Added: trunk/po/README
==============================================================================
--- (empty file)
+++ trunk/po/README	Mon Aug 25 15:50:58 2008
@@ -0,0 +1,28 @@
+Dear translators,
+
+this directory includes ooo-build-specific localized strings for
+OpenOffice.org. You could see three types of files here.
+
+First, the xy.po files provide the translation for the desktop files.
+They are maintained using intltool and can be updated the typical
+GNOME way, see http://live.gnome.org/TranslationProject/SvnHowTo
+for more details.
+
+Second, the ooo-build-xy.po files are used to translate new strings in
+the ooo-build patches. They are maintained using the translate-toolkit
+tools, see http://translate.sourceforge.net/wiki/start. The ordinary
+translators do not need these tools. They could simply edit the .po files
+or take the ooo-build.pot file, copy it to a new ooo-build-xy.po and
+fill it.
+
+Third, the ooo-build-xy.sdf files are generated from the ooo-build-xy.po files
+using the ooo-build/bin/po2sdf script (by make update-sdf). They provide the
+strings in the format that is used by the OpenOffice.org build system.
+
+The ooo-build.sdf, ooo-build.pot and also the other .sdf files are regenerated
+by the ooo-build developers when necessary (FIXME: we should define official
+string freeze...). See also ooo-build/doc/localization.txt for more details.
+
+
+				    Happy translating,
+					    Your ooo-build Team

Added: trunk/po/ooo-build-cs.sdf
==============================================================================
--- (empty file)
+++ trunk/po/ooo-build-cs.sdf	Mon Aug 25 15:50:58 2008
@@ -0,0 +1,188 @@
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_ARRAY_FIX & ERRCODE_RES_MASK			999	cs	Toto pole je pevnà nebo doÄasnÄ zamknutÃ.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_ARRAY_FIX & ERRCODE_RES_MASK			999	en-US	This array is fixed or temporarily locked.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_COMPAT & ERRCODE_RES_MASK			999	cs	$(ARG1).				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_COMPAT & ERRCODE_RES_MASK			999	en-US	$(ARG1).				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_EXPR_TOO_COMPLEX & ERRCODE_RES_MASK			999	cs	PÅÃliÅ sloÅità vÃraz.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_EXPR_TOO_COMPLEX & ERRCODE_RES_MASK			999	en-US	Expression Too Complex.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_LOOP_NOT_INIT & ERRCODE_RES_MASK			999	cs	Neinicializovanà for cyklus.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_LOOP_NOT_INIT & ERRCODE_RES_MASK			999	en-US	For loop not initialized.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_OPER_NOT_PERFORM & ERRCODE_RES_MASK			999	cs	Nelze provÃst poÅadovanou operaci.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_OPER_NOT_PERFORM & ERRCODE_RES_MASK			999	en-US	Can't perform requested operation.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_STRING_OVERFLOW & ERRCODE_RES_MASK			999	cs	PÅÃliÅ dlouhà ÅetÄzec.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_STRING_OVERFLOW & ERRCODE_RES_MASK			999	en-US	Out of string space.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_TOO_MANY_DLL & ERRCODE_RES_MASK			999	cs	PÅÃliÅ mnoho DLL aplikaÄnÃch klientÅ.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_TOO_MANY_DLL & ERRCODE_RES_MASK			999	en-US	Too many DLL application clients.				2002-02-02 02:02:02
+extensions	source\propctrlr\formres.src	0	string	RID_STR_GROUP_NAME				999	cs	JmÃno skupiny.				2002-02-02 02:02:02
+extensions	source\propctrlr\formres.src	0	string	RID_STR_GROUP_NAME				999	en-US	Group name				2002-02-02 02:02:02
+filter	source\config\fragments\internalgraphicfilters\svg_Import.xcu	0	value	svg_Import	UIName			999	cs	SVG - ZvÄtÅitelnà vektorovà obrÃzek				2002-02-02 02:02:02
+filter	source\config\fragments\internalgraphicfilters\svg_Import.xcu	0	value	svg_Import	UIName			999	en-US	SVG - Scalable Vector Graphics				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\CalcCommands.xcu	0	value	..CalcCommands.UserInterface.Commands..uno:DataForm	Label			999	cs	D~atovÃFormulÃÅ...				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\CalcCommands.xcu	0	value	..CalcCommands.UserInterface.Commands..uno:DataForm	Label			999	en-US	D~ataForm...				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\CalcCommands.xcu	0	value	..CalcCommands.UserInterface.Commands..uno:ToggleMergeCells	Label			999	cs	Spoj a umÃsti buÅky na stÅed				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\CalcCommands.xcu	0	value	..CalcCommands.UserInterface.Commands..uno:ToggleMergeCells	Label			999	en-US	M~erge and Center Cells				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\CalcCommands.xcu	0	value	..CalcCommands.UserInterface.Commands..uno:ToggleSheetGrid	Label			999	cs	PÅepni ÄÃry mÅÃÅky pro tento seÅit				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\CalcCommands.xcu	0	value	..CalcCommands.UserInterface.Commands..uno:ToggleSheetGrid	Label			999	en-US	Toggle Grid Lines for Current Sheet				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.Presets.Misc.media	Label			999	cs	MÃdia				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.Presets.Misc.media	Label			999	en-US	Media				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Effects.ooo-media-start	Label			999	cs	SpusÅ pÅehrÃvÃnÃ.				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Effects.ooo-media-start	Label			999	en-US	Start media				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Effects.ooo-media-stop	Label			999	cs	UkonÄi pÅehrÃvÃnÃ				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Effects.ooo-media-stop	Label			999	en-US	End media				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Effects.ooo-media-toggle-pause	Label			999	cs	PÅepÃnaÄ pauzy				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Effects.ooo-media-toggle-pause	Label			999	en-US	Toggle pause				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.fall	Label			999	en-US	Fall				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.finedissolve	Label			999	en-US	Fine Dissolve				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.inside-cube	Label			999	en-US	Inside turning cube				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.iris	Label			999	en-US	Iris				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.outside-cube	Label			999	en-US	Outside turning cube				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.revolving-circles	Label			999	en-US	Revolving circles				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.rochade	Label			999	en-US	Rochade				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.static	Label			999	en-US	Static				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.tile-flip	Label			999	en-US	Flipping tiles				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.turn-around	Label			999	en-US	Turn around				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.turn-down	Label			999	en-US	Turn down				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.turning-helix	Label			999	en-US	Turning helix				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.venetian3dh	Label			999	en-US	Venetian Blinds 3D Horizontal				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.venetian3dv	Label			999	en-US	Venetian Blinds 3D Vertical				2002-02-02 02:02:02
+scp2	source\scsolver\module_scsolver.ulf	0	LngText	STR_DESC_MODULE_OPTIONAL_SCSOLVER				999	en-US	The linear and non-linear optimization solver for Calc.				2002-02-02 02:02:02
+scp2	source\scsolver\module_scsolver.ulf	0	LngText	STR_NAME_MODULE_OPTIONAL_SCSOLVER				999	en-US	%PRODUCTNAME Calc Solver				2002-02-02 02:02:02
+sc	source\ui\dbgui\pivot.src	0	fixedtext	RID_SCDLG_PIVOT_LAYOUT	FT_INAREA			999	en-US	Selection from				2002-02-02 02:02:02
+sc	source\ui\dbgui\pivot.src	0	imagebutton	RID_SCDLG_PIVOT_LAYOUT	RB_INAREA			999	en-US	-		Shrink		2002-02-02 02:02:02
+sc	source\ui\drawfunc\objdraw.src	0	menuitem	MN_DELLNK	SID_DRAW_HLINK_DELETE	SID_DRAW_HLINK_DELETE		999	en-US	~Remove Hyperlink				2002-02-02 02:02:02
+sc	source\ui\drawfunc\objdraw.src	0	menuitem	MN_EDITLNK	SID_DRAW_HLINK_EDIT	SID_DRAW_HLINK_EDIT		999	en-US	~Hyperlink...				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	fixedline	RID_SCDLG_TABPROTECTION	FL_OPTIONS			999	en-US	Options				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	fixedtext	RID_SCDLG_TABPROTECTION	FT_OPTIONS			999	en-US	Allow all users of this sheet to:				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	fixedtext	RID_SCDLG_TABPROTECTION	FT_PASSWORD1			999	en-US	~Password				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	fixedtext	RID_SCDLG_TABPROTECTION	FT_PASSWORD2			999	en-US	~Confirm				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	checkbox	RID_SCDLG_TABPROTECTION	BTN_PROTECT			999	en-US	P~rotect this sheet and the contents of locked cells				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	modaldialog	RID_SCDLG_TABPROTECTION				999	en-US	Protect Sheet				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	string	RID_SCDLG_TABPROTECTION	ST_SELECT_LOCKED_CELLS			999	en-US	Select locked cells				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	string	RID_SCDLG_TABPROTECTION	ST_SELECT_UNLOCKED_CELLS			999	en-US	Select unlocked cells				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedline	RID_SCDLG_RETYPEPASS	FL_DOCUMENT			999	en-US	Document protection				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedline	RID_SCDLG_RETYPEPASS	FL_SHEET			999	en-US	Sheet protection				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_DESC			999	en-US	The document you are about to export has one or more protected items with an incompatible password hash.  Please re-type your password to re-generate password hash that is compatible with the exported format.				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_DOCSTATUS			999	en-US	Status unknown				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETNAME1			999	en-US	Sheet1 has a really long name				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETNAME2			999	en-US	Sheet2				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETNAME3			999	en-US	Sheet3				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETNAME4			999	en-US	Sheet4				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETSTATUS1			999	en-US	Status unknown				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETSTATUS2			999	en-US	Status unknown				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETSTATUS3			999	en-US	Status unknown				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETSTATUS4			999	en-US	Status unknown				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS_INPUT	FT_PASSWORD1			999	en-US	~Password				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS_INPUT	FT_PASSWORD2			999	en-US	~Confirm				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	checkbox	RID_SCDLG_RETYPEPASS_INPUT	BTN_MATCH_OLD_PASSWORD			999	en-US	New password must match the original password.				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	modaldialog	RID_SCDLG_RETYPEPASS_INPUT				999	en-US	Re-type Password				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	modaldialog	RID_SCDLG_RETYPEPASS				999	en-US	Re-type Password				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	pushbutton	RID_SCDLG_RETYPEPASS	BTN_RETYPE_DOC			999	en-US	Re-type				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	pushbutton	RID_SCDLG_RETYPEPASS	BTN_RETYPE_SHEET1			999	en-US	Re-type				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	pushbutton	RID_SCDLG_RETYPEPASS	BTN_RETYPE_SHEET2			999	en-US	Re-type				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	pushbutton	RID_SCDLG_RETYPEPASS	BTN_RETYPE_SHEET3			999	en-US	Re-type				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	pushbutton	RID_SCDLG_RETYPEPASS	BTN_RETYPE_SHEET4			999	en-US	Re-type				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	radiobutton	RID_SCDLG_RETYPEPASS_INPUT	BTN_REMOVE_PASSWORD			999	en-US	Remove password from this protected item.				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	radiobutton	RID_SCDLG_RETYPEPASS_INPUT	BTN_RETYPE_PASSWORD			999	en-US	Re-type password				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	string	RID_SCDLG_RETYPEPASS	STR_HASH_BAD			999	en-US	Hash incompatible				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	string	RID_SCDLG_RETYPEPASS	STR_HASH_GOOD			999	en-US	Hash compatible				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	string	RID_SCDLG_RETYPEPASS	STR_HASH_REGENERATED			999	en-US	Hash re-generated				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	string	RID_SCDLG_RETYPEPASS	STR_NOT_PASS_PROTECTED			999	en-US	Not password-protected				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	string	RID_SCDLG_RETYPEPASS	STR_NOT_PROTECTED			999	en-US	Not protected				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	fixedtext	RID_SCDLG_DATAFORM	LAB_DATAFORM_RECORDNO			999	en-US	/				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	modaldialog	RID_SCDLG_DATAFORM				999	en-US	Data Form				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	pushbutton	RID_SCDLG_DATAFORM	BTN_DATAFORM_CLOSE			999	en-US	Close				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	pushbutton	RID_SCDLG_DATAFORM	BTN_DATAFORM_DELETE			999	en-US	Delete				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	pushbutton	RID_SCDLG_DATAFORM	BTN_DATAFORM_LAST			999	en-US	Last Record				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	pushbutton	RID_SCDLG_DATAFORM	BTN_DATAFORM_NEW			999	en-US	New				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	pushbutton	RID_SCDLG_DATAFORM	BTN_DATAFORM_NEXT			999	en-US	Next Record				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	pushbutton	RID_SCDLG_DATAFORM	BTN_DATAFORM_RESTORE			999	en-US	Restore				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND1	11			999	en-US	Contains				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND1	12			999	en-US	Does not Contain				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND1	13			999	en-US	Begins with				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND1	14			999	en-US	Ends with				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND1	1			999	en-US	Equals				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND1	6			999	en-US	Not equals				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND2	11			999	en-US	Contains				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND2	12			999	en-US	Does not Contain				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND2	13			999	en-US	Begins with				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND2	14			999	en-US	Ends with				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND2	1			999	en-US	Equals				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND2	6			999	en-US	Not equals				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND3	11			999	en-US	Contains				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND3	12			999	en-US	Does not Contain				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND3	13			999	en-US	Begins with				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND3	14			999	en-US	Ends with				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND3	1			999	en-US	Equals				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND3	6			999	en-US	Not equals				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_BUTTON			999	en-US	Button 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_DROPDOWN			999	en-US	Drop Down 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_GROUPBOX			999	en-US	Group Box 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_CHECKBOX			999	en-US	Check Box 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_LABEL			999	en-US	Label 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_LISTBOX			999	en-US	List Box 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_OPTIONBOX			999	en-US	Option Box 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_SCROLLBAR			999	en-US	Scroll Bar 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_SPINNER			999	en-US	Spinner 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_SHAPE_AUTOSHAPE			999	en-US	AutoShape 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_SHAPE_LINE			999	en-US	Line 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_SHAPE_OVAL			999	en-US	Oval 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_SHAPE_RECTANGLE			999	en-US	Rectangle 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_SHAPE_TEXTBOX			999	en-US	Text Box 				2002-02-02 02:02:02
+sc	source\ui\src\optdlg.src	0	fixedtext	RID_SCPAGE_CALC	FT_FORMULA_SYNTAX			999	en-US	~Formula syntax				2002-02-02 02:02:02
+sc	source\ui\src\optdlg.src	0	stringlist	RID_SCPAGE_CALC.LB_FORMULA_SYNTAX	1			999	en-US	Calc A1				2002-02-02 02:02:02
+sc	source\ui\src\optdlg.src	0	stringlist	RID_SCPAGE_CALC.LB_FORMULA_SYNTAX	2			999	en-US	Excel A1				2002-02-02 02:02:02
+sc	source\ui\src\optdlg.src	0	stringlist	RID_SCPAGE_CALC.LB_FORMULA_SYNTAX	3			999	en-US	Excel R1C1				2002-02-02 02:02:02
+sc	source\ui\src\popup.src	0	menuitem	RID_POPUP_PIVOT	SID_PIVOT_AFMT	SID_PIVOT_AFMT		999	en-US	~AutoFormat...				2002-02-02 02:02:02
+sc	source\ui\src\sortdlg.src	0	checkbox	RID_SCPAGE_SORT_OPTIONS	BTN_NATURALSORT			999	en-US	Enable ~natural sort				2002-02-02 02:02:02
+sd	source\ui\animations\CustomAnimationCreateDialog.src	0	pageitem	DLG_CUSTOMANIMATION_CREATE.1	RID_TP_CUSTOMANIMATION_MISCEFFECTS			999	en-US	Misc Effects				2002-02-02 02:02:02
+sd	source\ui\dlg\prltempl.src	0	pageitem	TAB_PRES_LAYOUT_TEMPLATE.1	RID_SVXPAGE_TEXTATTR			999	en-US	Text				2002-02-02 02:02:02
+sd	source\ui\dlg\prltempl.src	0	pageitem	TAB_PRES_LAYOUT_TEMPLATE_3.1	RID_SVXPAGE_TEXTATTR			999	en-US	Text				2002-02-02 02:02:02
+sfx2	source\dialog\passwd.src	0	string	DLG_PASSWD	STR_PASSWD_EMPTY			999	en-US	(The password can be empty)				2002-02-02 02:02:02
+sfx2	source\dialog\passwd.src	0	string	DLG_PASSWD	STR_PASSWD_MIN_LEN			999	en-US	(Minimum $(MINLEN) characters)				2002-02-02 02:02:02
+sfx2	source\doc\doctempl.src	0	itemlist	TEMPLATE_LONG_NAMES_ARY	11			999	en-US	Labels				2002-02-02 02:02:02
+svtools	source\misc1\mediatyp.src	0	string	STR_SVT_MIMETYPE_AUDIO_VORBIS				999	en-US	Audio file				2002-02-02 02:02:02
+svtools	source\misc1\mediatyp.src	0	string	STR_SVT_MIMETYPE_VIDEO_THEORA				999	en-US	Video file				2002-02-02 02:02:02
+svx	source\dialog\autocdlg.src	0	string	COMMON_CLB_ENTRIES	ST_CORRECT_ACCIDENTAL_CAPS_LOCK			999	en-US	Correct accidental use of cAPS LOCK key				2002-02-02 02:02:02
+svx	source\dialog\linkwarn.src	0	cancelbutton	RID_SVXDLG_LINK_WARNING	PB_NO			999	en-US	~Embed Graphic				2002-02-02 02:02:02
+svx	source\dialog\linkwarn.src	0	fixedtext	RID_SVXDLG_LINK_WARNING	FT_INFOTEXT			999	en-US	The file %FILENAME will not be stored along with your document, but only referenced as a link. This is dangerous if you move and/or rename the files. Do you want to embed the graphic instead?				2002-02-02 02:02:02
+svx	source\dialog\linkwarn.src	0	checkbox	RID_SVXDLG_LINK_WARNING	CB_WARNING_OFF			999	en-US	~Ask when linking a graphic				2002-02-02 02:02:02
+svx	source\dialog\linkwarn.src	0	okbutton	RID_SVXDLG_LINK_WARNING	PB_OK			999	en-US	~Keep Link				2002-02-02 02:02:02
+svx	source\dialog\optgdlg.src	0	checkbox	OFA_TP_MISC	CB_ODMADLG			999	en-US	Show ODMA DMS dialogs first				2002-02-02 02:02:02
+svx	source\dialog\ruler.src	0	menuitem	RID_SVXMN_RULER	ID_CHAR			999	en-US	Char				2002-02-02 02:02:02
+svx	source\dialog\ruler.src	0	menuitem	RID_SVXMN_RULER	ID_LINE			999	en-US	Line				2002-02-02 02:02:02
+svx	source\options\optgenrl.src	0	itemlist	RID_SVXSTR_FIELDUNIT_TABLE	10			999	en-US	Char				2002-02-02 02:02:02
+svx	source\options\optgenrl.src	0	itemlist	RID_SVXSTR_FIELDUNIT_TABLE	11			999	en-US	Line				2002-02-02 02:02:02
+svx	source\tbxctrls\tbcontrl.src	0	string	RID_SVX_ZOOM_OPTIMAL				999	en-US	~Optimal				2002-02-02 02:02:02
+svx	source\tbxctrls\tbcontrl.src	0	string	RID_SVX_ZOOM_PAGEWIDTH				999	en-US	~Page Width				2002-02-02 02:02:02
+svx	source\tbxctrls\tbcontrl.src	0	string	RID_SVX_ZOOM_WHOLEPAGE				999	en-US	~Entire Page				2002-02-02 02:02:02
+sw	source\ui\config\optload.src	0	checkbox	TP_OPTLOAD_PAGE	CB_USE_CHAR_UNIT			999	en-US	Enable char unit				2002-02-02 02:02:02
+sw	source\ui\config\optload.src	0	itemlist	STR_ARR_METRIC	10			999	en-US	Char				2002-02-02 02:02:02
+sw	source\ui\config\optload.src	0	itemlist	STR_ARR_METRIC	11			999	en-US	Line				2002-02-02 02:02:02
+sw	source\ui\misc\pggrid.src	0	fixedtext	TP_TEXTGRID_PAGE	FT_CHARRANGE			999	en-US	( 1 - 45 )				2002-02-02 02:02:02
+sw	source\ui\misc\pggrid.src	0	fixedtext	TP_TEXTGRID_PAGE	FT_LINERANGE			999	en-US	( 1 - 48 )				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	fixedline	RID_SCPAGE_SORT_FIELDS	FL_SORT1			999	en-US	Sort ~by				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	fixedline	RID_SCPAGE_SORT_FIELDS	FL_SORT2			999	en-US	Then b~y				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	fixedline	RID_SCPAGE_SORT_FIELDS	FL_SORT3			999	en-US	T~hen by				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	fixedline	RID_SCPAGE_SORT_OPTIONS	FL_DIRECTION			999	en-US	Direction				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	fixedtext	RID_SCPAGE_SORT_OPTIONS	FT_ALGORITHM			999	en-US	O~ptions				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	fixedtext	RID_SCPAGE_SORT_OPTIONS	FT_LANGUAGE			999	en-US	~Language				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	checkbox	RID_SCPAGE_SORT_OPTIONS	BTN_CASESENSITIVE			999	en-US	Case ~sensitive				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	checkbox	RID_SCPAGE_SORT_OPTIONS	BTN_COPYRESULT			999	en-US	~Copy sort results to:				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	checkbox	RID_SCPAGE_SORT_OPTIONS	BTN_FORMATS			999	en-US	Include ~formats				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	checkbox	RID_SCPAGE_SORT_OPTIONS	BTN_NATURALSORT			999	en-US	Enable ~natural sort				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	checkbox	RID_SCPAGE_SORT_OPTIONS	BTN_SORT_USER			999	en-US	Custom sort ~order				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	pageitem	RID_SCDLG_SORT.1	TP_FIELDS			999	en-US	Sort Criteria				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	pageitem	RID_SCDLG_SORT.1	TP_OPTIONS			999	en-US	Options				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_FIELDS	BTN_DOWN1			999	en-US	~Descending				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_FIELDS	BTN_DOWN2			999	en-US	D~escending				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_FIELDS	BTN_DOWN3			999	en-US	Desce~nding				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_FIELDS	BTN_UP1			999	en-US	~Ascending				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_FIELDS	BTN_UP2			999	en-US	A~scending				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_FIELDS	BTN_UP3			999	en-US	As~cending				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_OPTIONS	BTN_LEFT_RIGHT			999	en-US	L~eft to right (sort columns)				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_OPTIONS	BTN_TOP_DOWN			999	en-US	~Top to bottom (sort rows)				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	string	RID_SCPAGE_SORT_OPTIONS	STR_COL_LABEL			999	en-US	Range contains column la~bels				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	string	RID_SCPAGE_SORT_OPTIONS	STR_ROW_LABEL			999	en-US	Range contains ~row labels				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	tabdialog	RID_SCDLG_SORT				999	en-US	Sort				2002-02-02 02:02:02
+vcl	source\src\units.src	0	itemlist	SV_FUNIT_STRINGS	18			999	en-US	ch				2002-02-02 02:02:02
+vcl	source\src\units.src	0	itemlist	SV_FUNIT_STRINGS	19			999	en-US	line				2002-02-02 02:02:02
+vcl	source\src\units.src	0	itemlist	SV_FUNIT_STRINGS	20			999	en-US	%				2002-02-02 02:02:02

Added: trunk/po/ooo-build.pot
==============================================================================
--- (empty file)
+++ trunk/po/ooo-build.pot	Mon Aug 25 15:50:58 2008
@@ -0,0 +1,761 @@
+#. extracted from (input file name not known)
+#, fuzzy
+msgid ""
+msgstr ""
+"Project-Id-Version: PACKAGE VERSION\n"
+"Report-Msgid-Bugs-To: http://qa.openoffice.org/issues/enter_bug.cgi?subcompo";
+"nent=ui&comment=&short_desc=Localization%20issue%20in%20file%3A%20(input%20f"
+"ile%20name%20not%20known)&component=l10n&form_name=enter_issue\n"
+"POT-Creation-Date: 2008-08-25 17:33+0200\n"
+"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
+"Last-Translator: FULL NAME <EMAIL ADDRESS>\n"
+"Language-Team: LANGUAGE <LL li org>\n"
+"MIME-Version: 1.0\n"
+"Content-Type: text/plain; charset=UTF-8\n"
+"Content-Transfer-Encoding: 8bit\n"
+"X-Generator: Translate Toolkit 1.1.1\n"
+"X-Accelerator-Marker: ~\n"
+
+#: basic/source/classes/sb.src#RID_BASIC_START.ERRCODE_BASIC_ARRAY_FIX___ERRCODE_RES_MASK.string.text
+msgid "This array is fixed or temporarily locked."
+msgstr ""
+
+#: basic/source/classes/sb.src#RID_BASIC_START.ERRCODE_BASIC_COMPAT___ERRCODE_RES_MASK.string.text
+msgid "$(ARG1)."
+msgstr ""
+
+#: basic/source/classes/sb.src#RID_BASIC_START.ERRCODE_BASIC_EXPR_TOO_COMPLEX___ERRCODE_RES_MASK.string.text
+msgid "Expression Too Complex."
+msgstr ""
+
+#: basic/source/classes/sb.src#RID_BASIC_START.ERRCODE_BASIC_LOOP_NOT_INIT___ERRCODE_RES_MASK.string.text
+msgid "For loop not initialized."
+msgstr ""
+
+#: basic/source/classes/sb.src#RID_BASIC_START.ERRCODE_BASIC_OPER_NOT_PERFORM___ERRCODE_RES_MASK.string.text
+msgid "Can't perform requested operation."
+msgstr ""
+
+#: basic/source/classes/sb.src#RID_BASIC_START.ERRCODE_BASIC_STRING_OVERFLOW___ERRCODE_RES_MASK.string.text
+msgid "Out of string space."
+msgstr ""
+
+#: basic/source/classes/sb.src#RID_BASIC_START.ERRCODE_BASIC_TOO_MANY_DLL___ERRCODE_RES_MASK.string.text
+msgid "Too many DLL application clients."
+msgstr ""
+
+#: extensions/source/propctrlr/formres.src#RID_STR_GROUP_NAME.string.text
+msgid "Group name"
+msgstr ""
+
+#: filter/source/config/fragments/internalgraphicfilters/svg_Import.xcu#svg_Import.UIName.value.text
+msgid "SVG - Scalable Vector Graphics"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_DataForm.Label.value.text
+msgid "D~ataForm..."
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ToggleMergeCells.Label.value.text
+msgid "M~erge and Center Cells"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/CalcCommands.xcu#..CalcCommands.UserInterface.Commands..uno_ToggleSheetGrid.Label.value.text
+msgid "Toggle Grid Lines for Current Sheet"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.Presets.Misc.media.Label.value.text
+msgid "Media"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Effects.ooo_media_start.Label.value.text
+msgid "Start media"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Effects.ooo_media_stop.Label.value.text
+msgid "End media"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Effects.ooo_media_toggle_pause.Label.value.text
+msgid "Toggle pause"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.fall.Label.value.text
+msgid "Fall"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.finedissolve.Label.value.text
+msgid "Fine Dissolve"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.inside_cube.Label.value.text
+msgid "Inside turning cube"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.iris.Label.value.text
+msgid "Iris"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.outside_cube.Label.value.text
+msgid "Outside turning cube"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.revolving_circles.Label.value.text
+msgid "Revolving circles"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.rochade.Label.value.text
+msgid "Rochade"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.static.Label.value.text
+msgid "Static"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.tile_flip.Label.value.text
+msgid "Flipping tiles"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.turn_around.Label.value.text
+msgid "Turn around"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.turn_down.Label.value.text
+msgid "Turn down"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.turning_helix.Label.value.text
+msgid "Turning helix"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.venetian3dh.Label.value.text
+msgid "Venetian Blinds 3D Horizontal"
+msgstr ""
+
+#: officecfg/registry/data/org/openoffice/Office/UI/Effects.xcu#..Effects.UserInterface.Transitions.venetian3dv.Label.value.text
+msgid "Venetian Blinds 3D Vertical"
+msgstr ""
+
+#: scp2/source/scsolver/module_scsolver.ulf#STR_DESC_MODULE_OPTIONAL_SCSOLVER.LngText.text
+msgid "The linear and non-linear optimization solver for Calc."
+msgstr ""
+
+#: scp2/source/scsolver/module_scsolver.ulf#STR_NAME_MODULE_OPTIONAL_SCSOLVER.LngText.text
+msgid "%PRODUCTNAME Calc Solver"
+msgstr ""
+
+#: sc/source/ui/dbgui/pivot.src#RID_SCDLG_PIVOT_LAYOUT.FT_INAREA.fixedtext.text
+msgid "Selection from"
+msgstr ""
+
+#: sc/source/ui/dbgui/pivot.src#RID_SCDLG_PIVOT_LAYOUT.RB_INAREA.imagebutton.text
+msgid "-"
+msgstr ""
+
+#: sc/source/ui/dbgui/pivot.src#RID_SCDLG_PIVOT_LAYOUT.RB_INAREA.imagebutton.quickhelptext
+msgid "Shrink"
+msgstr ""
+
+#: sc/source/ui/drawfunc/objdraw.src#MN_DELLNK.SID_DRAW_HLINK_DELETE.menuitem.text
+msgid "~Remove Hyperlink"
+msgstr ""
+
+#: sc/source/ui/drawfunc/objdraw.src#MN_EDITLNK.SID_DRAW_HLINK_EDIT.menuitem.text
+msgid "~Hyperlink..."
+msgstr ""
+
+#: sc/source/ui/miscdlgs/protectiondlg.src#RID_SCDLG_TABPROTECTION.FL_OPTIONS.fixedline.text
+msgctxt "sc/source/ui/miscdlgs/protectiondlg.src#RID_SCDLG_TABPROTECTION.FL_OPTIONS.fixedline.text"
+msgid "Options"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/protectiondlg.src#RID_SCDLG_TABPROTECTION.FT_OPTIONS.fixedtext.text
+msgid "Allow all users of this sheet to:"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/protectiondlg.src#RID_SCDLG_TABPROTECTION.FT_PASSWORD1.fixedtext.text
+msgctxt "sc/source/ui/miscdlgs/protectiondlg.src#RID_SCDLG_TABPROTECTION.FT_PASSWORD1.fixedtext.text"
+msgid "~Password"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/protectiondlg.src#RID_SCDLG_TABPROTECTION.FT_PASSWORD2.fixedtext.text
+msgctxt "sc/source/ui/miscdlgs/protectiondlg.src#RID_SCDLG_TABPROTECTION.FT_PASSWORD2.fixedtext.text"
+msgid "~Confirm"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/protectiondlg.src#RID_SCDLG_TABPROTECTION.BTN_PROTECT.checkbox.text
+msgid "P~rotect this sheet and the contents of locked cells"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/protectiondlg.src#RID_SCDLG_TABPROTECTION.modaldialog.text
+msgid "Protect Sheet"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/protectiondlg.src#RID_SCDLG_TABPROTECTION.ST_SELECT_LOCKED_CELLS.string.text
+msgid "Select locked cells"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/protectiondlg.src#RID_SCDLG_TABPROTECTION.ST_SELECT_UNLOCKED_CELLS.string.text
+msgid "Select unlocked cells"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FL_DOCUMENT.fixedline.text
+msgid "Document protection"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FL_SHEET.fixedline.text
+msgid "Sheet protection"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_DESC.fixedtext.text
+msgid ""
+"The document you are about to export has one or more protected items with an "
+"incompatible password hash.  Please re-type your password to re-generate "
+"password hash that is compatible with the exported format."
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_DOCSTATUS.fixedtext.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_DOCSTATUS.fixedtext.text"
+msgid "Status unknown"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_SHEETNAME1.fixedtext.text
+msgid "Sheet1 has a really long name"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_SHEETNAME2.fixedtext.text
+msgid "Sheet2"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_SHEETNAME3.fixedtext.text
+msgid "Sheet3"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_SHEETNAME4.fixedtext.text
+msgid "Sheet4"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_SHEETSTATUS1.fixedtext.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_SHEETSTATUS1.fixedtext.text"
+msgid "Status unknown"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_SHEETSTATUS2.fixedtext.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_SHEETSTATUS2.fixedtext.text"
+msgid "Status unknown"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_SHEETSTATUS3.fixedtext.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_SHEETSTATUS3.fixedtext.text"
+msgid "Status unknown"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_SHEETSTATUS4.fixedtext.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.FT_SHEETSTATUS4.fixedtext.text"
+msgid "Status unknown"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS_INPUT.FT_PASSWORD1.fixedtext.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS_INPUT.FT_PASSWORD1.fixedtext.text"
+msgid "~Password"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS_INPUT.FT_PASSWORD2.fixedtext.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS_INPUT.FT_PASSWORD2.fixedtext.text"
+msgid "~Confirm"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS_INPUT.BTN_MATCH_OLD_PASSWORD.checkbox.text
+msgid "New password must match the original password."
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS_INPUT.modaldialog.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS_INPUT.modaldialog.text"
+msgid "Re-type Password"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.modaldialog.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.modaldialog.text"
+msgid "Re-type Password"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.BTN_RETYPE_DOC.pushbutton.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.BTN_RETYPE_DOC.pushbutton.text"
+msgid "Re-type"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.BTN_RETYPE_SHEET1.pushbutton.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.BTN_RETYPE_SHEET1.pushbutton.text"
+msgid "Re-type"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.BTN_RETYPE_SHEET2.pushbutton.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.BTN_RETYPE_SHEET2.pushbutton.text"
+msgid "Re-type"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.BTN_RETYPE_SHEET3.pushbutton.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.BTN_RETYPE_SHEET3.pushbutton.text"
+msgid "Re-type"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.BTN_RETYPE_SHEET4.pushbutton.text
+msgctxt "sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.BTN_RETYPE_SHEET4.pushbutton.text"
+msgid "Re-type"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS_INPUT.BTN_REMOVE_PASSWORD.radiobutton.text
+msgid "Remove password from this protected item."
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS_INPUT.BTN_RETYPE_PASSWORD.radiobutton.text
+msgid "Re-type password"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.STR_HASH_BAD.string.text
+msgid "Hash incompatible"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.STR_HASH_GOOD.string.text
+msgid "Hash compatible"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.STR_HASH_REGENERATED.string.text
+msgid "Hash re-generated"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.STR_NOT_PASS_PROTECTED.string.text
+msgid "Not password-protected"
+msgstr ""
+
+#: sc/source/ui/miscdlgs/retypepassdlg.src#RID_SCDLG_RETYPEPASS.STR_NOT_PROTECTED.string.text
+msgid "Not protected"
+msgstr ""
+
+#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.LAB_DATAFORM_RECORDNO.fixedtext.text
+msgid "/"
+msgstr ""
+
+#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.modaldialog.text
+msgid "Data Form"
+msgstr ""
+
+#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.BTN_DATAFORM_CLOSE.pushbutton.text
+msgid "Close"
+msgstr ""
+
+#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.BTN_DATAFORM_DELETE.pushbutton.text
+msgid "Delete"
+msgstr ""
+
+#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.BTN_DATAFORM_LAST.pushbutton.text
+msgid "Last Record"
+msgstr ""
+
+#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.BTN_DATAFORM_NEW.pushbutton.text
+msgid "New"
+msgstr ""
+
+#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.BTN_DATAFORM_NEXT.pushbutton.text
+msgid "Next Record"
+msgstr ""
+
+#: sc/source/ui/src/datafdlg.src#RID_SCDLG_DATAFORM.BTN_DATAFORM_RESTORE.pushbutton.text
+msgid "Restore"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND1.11.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND1.11.stringlist.text"
+msgid "Contains"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND1.12.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND1.12.stringlist.text"
+msgid "Does not Contain"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND1.13.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND1.13.stringlist.text"
+msgid "Begins with"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND1.14.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND1.14.stringlist.text"
+msgid "Ends with"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND1.1.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND1.1.stringlist.text"
+msgid "Equals"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND1.6.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND1.6.stringlist.text"
+msgid "Not equals"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND2.11.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND2.11.stringlist.text"
+msgid "Contains"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND2.12.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND2.12.stringlist.text"
+msgid "Does not Contain"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND2.13.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND2.13.stringlist.text"
+msgid "Begins with"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND2.14.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND2.14.stringlist.text"
+msgid "Ends with"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND2.1.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND2.1.stringlist.text"
+msgid "Equals"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND2.6.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND2.6.stringlist.text"
+msgid "Not equals"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND3.11.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND3.11.stringlist.text"
+msgid "Contains"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND3.12.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND3.12.stringlist.text"
+msgid "Does not Contain"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND3.13.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND3.13.stringlist.text"
+msgid "Begins with"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND3.14.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND3.14.stringlist.text"
+msgid "Ends with"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND3.1.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND3.1.stringlist.text"
+msgid "Equals"
+msgstr ""
+
+#: sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND3.6.stringlist.text
+msgctxt "sc/source/ui/src/filter.src#RID_SCDLG_FILTER.LB_COND3.6.stringlist.text"
+msgid "Not equals"
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_BUTTON.string.text
+msgid "Button "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_DROPDOWN.string.text
+msgid "Drop Down "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_GROUPBOX.string.text
+msgid "Group Box "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_CHECKBOX.string.text
+msgid "Check Box "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_LABEL.string.text
+msgid "Label "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_LISTBOX.string.text
+msgid "List Box "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_OPTIONBOX.string.text
+msgid "Option Box "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_SCROLLBAR.string.text
+msgid "Scroll Bar "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_FORM_SPINNER.string.text
+msgid "Spinner "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_SHAPE_AUTOSHAPE.string.text
+msgid "AutoShape "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_SHAPE_LINE.string.text
+msgid "Line "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_SHAPE_OVAL.string.text
+msgid "Oval "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_SHAPE_RECTANGLE.string.text
+msgid "Rectangle "
+msgstr ""
+
+#: sc/source/ui/src/globstr.src#RID_GLOBSTR.STR_SHAPE_TEXTBOX.string.text
+msgid "Text Box "
+msgstr ""
+
+#: sc/source/ui/src/optdlg.src#RID_SCPAGE_CALC.FT_FORMULA_SYNTAX.fixedtext.text
+msgid "~Formula syntax"
+msgstr ""
+
+#: sc/source/ui/src/optdlg.src#RID_SCPAGE_CALC.LB_FORMULA_SYNTAX.1.stringlist.text
+msgid "Calc A1"
+msgstr ""
+
+#: sc/source/ui/src/optdlg.src#RID_SCPAGE_CALC.LB_FORMULA_SYNTAX.2.stringlist.text
+msgid "Excel A1"
+msgstr ""
+
+#: sc/source/ui/src/optdlg.src#RID_SCPAGE_CALC.LB_FORMULA_SYNTAX.3.stringlist.text
+msgid "Excel R1C1"
+msgstr ""
+
+#: sc/source/ui/src/popup.src#RID_POPUP_PIVOT.SID_PIVOT_AFMT.menuitem.text
+msgid "~AutoFormat..."
+msgstr ""
+
+#: sc/source/ui/src/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_NATURALSORT.checkbox.text
+msgctxt "sc/source/ui/src/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_NATURALSORT.checkbox.text"
+msgid "Enable ~natural sort"
+msgstr ""
+
+#: sd/source/ui/animations/CustomAnimationCreateDialog.src#DLG_CUSTOMANIMATION_CREATE.1.RID_TP_CUSTOMANIMATION_MISCEFFECTS.pageitem.text
+msgid "Misc Effects"
+msgstr ""
+
+#: sd/source/ui/dlg/prltempl.src#TAB_PRES_LAYOUT_TEMPLATE.1.RID_SVXPAGE_TEXTATTR.pageitem.text
+msgctxt "sd/source/ui/dlg/prltempl.src#TAB_PRES_LAYOUT_TEMPLATE.1.RID_SVXPAGE_TEXTATTR.pageitem.text"
+msgid "Text"
+msgstr ""
+
+#: sd/source/ui/dlg/prltempl.src#TAB_PRES_LAYOUT_TEMPLATE_3.1.RID_SVXPAGE_TEXTATTR.pageitem.text
+msgctxt "sd/source/ui/dlg/prltempl.src#TAB_PRES_LAYOUT_TEMPLATE_3.1.RID_SVXPAGE_TEXTATTR.pageitem.text"
+msgid "Text"
+msgstr ""
+
+#: sfx2/source/dialog/passwd.src#DLG_PASSWD.STR_PASSWD_EMPTY.string.text
+msgid "(The password can be empty)"
+msgstr ""
+
+#: sfx2/source/dialog/passwd.src#DLG_PASSWD.STR_PASSWD_MIN_LEN.string.text
+msgid "(Minimum $(MINLEN) characters)"
+msgstr ""
+
+#: sfx2/source/doc/doctempl.src#TEMPLATE_LONG_NAMES_ARY.11.itemlist.text
+msgid "Labels"
+msgstr ""
+
+#: svtools/source/misc1/mediatyp.src#STR_SVT_MIMETYPE_AUDIO_VORBIS.string.text
+msgid "Audio file"
+msgstr ""
+
+#: svtools/source/misc1/mediatyp.src#STR_SVT_MIMETYPE_VIDEO_THEORA.string.text
+msgid "Video file"
+msgstr ""
+
+#: svx/source/dialog/autocdlg.src#COMMON_CLB_ENTRIES.ST_CORRECT_ACCIDENTAL_CAPS_LOCK.string.text
+msgid "Correct accidental use of cAPS LOCK key"
+msgstr ""
+
+#: svx/source/dialog/linkwarn.src#RID_SVXDLG_LINK_WARNING.PB_NO.cancelbutton.text
+msgid "~Embed Graphic"
+msgstr ""
+
+#: svx/source/dialog/linkwarn.src#RID_SVXDLG_LINK_WARNING.FT_INFOTEXT.fixedtext.text
+msgid ""
+"The file %FILENAME will not be stored along with your document, but only "
+"referenced as a link. This is dangerous if you move and/or rename the files. "
+"Do you want to embed the graphic instead?"
+msgstr ""
+
+#: svx/source/dialog/linkwarn.src#RID_SVXDLG_LINK_WARNING.CB_WARNING_OFF.checkbox.text
+msgid "~Ask when linking a graphic"
+msgstr ""
+
+#: svx/source/dialog/linkwarn.src#RID_SVXDLG_LINK_WARNING.PB_OK.okbutton.text
+msgid "~Keep Link"
+msgstr ""
+
+#: svx/source/dialog/optgdlg.src#OFA_TP_MISC.CB_ODMADLG.checkbox.text
+msgid "Show ODMA DMS dialogs first"
+msgstr ""
+
+#: svx/source/dialog/ruler.src#RID_SVXMN_RULER.ID_CHAR.menuitem.text
+msgctxt "svx/source/dialog/ruler.src#RID_SVXMN_RULER.ID_CHAR.menuitem.text"
+msgid "Char"
+msgstr ""
+
+#: svx/source/dialog/ruler.src#RID_SVXMN_RULER.ID_LINE.menuitem.text
+msgctxt "svx/source/dialog/ruler.src#RID_SVXMN_RULER.ID_LINE.menuitem.text"
+msgid "Line"
+msgstr ""
+
+#: svx/source/options/optgenrl.src#RID_SVXSTR_FIELDUNIT_TABLE.10.itemlist.text
+msgctxt "svx/source/options/optgenrl.src#RID_SVXSTR_FIELDUNIT_TABLE.10.itemlist.text"
+msgid "Char"
+msgstr ""
+
+#: svx/source/options/optgenrl.src#RID_SVXSTR_FIELDUNIT_TABLE.11.itemlist.text
+msgctxt "svx/source/options/optgenrl.src#RID_SVXSTR_FIELDUNIT_TABLE.11.itemlist.text"
+msgid "Line"
+msgstr ""
+
+#: svx/source/tbxctrls/tbcontrl.src#RID_SVX_ZOOM_OPTIMAL.string.text
+msgid "~Optimal"
+msgstr ""
+
+#: svx/source/tbxctrls/tbcontrl.src#RID_SVX_ZOOM_PAGEWIDTH.string.text
+msgid "~Page Width"
+msgstr ""
+
+#: svx/source/tbxctrls/tbcontrl.src#RID_SVX_ZOOM_WHOLEPAGE.string.text
+msgid "~Entire Page"
+msgstr ""
+
+#: sw/source/ui/config/optload.src#TP_OPTLOAD_PAGE.CB_USE_CHAR_UNIT.checkbox.text
+msgid "Enable char unit"
+msgstr ""
+
+#: sw/source/ui/config/optload.src#STR_ARR_METRIC.10.itemlist.text
+msgctxt "sw/source/ui/config/optload.src#STR_ARR_METRIC.10.itemlist.text"
+msgid "Char"
+msgstr ""
+
+#: sw/source/ui/config/optload.src#STR_ARR_METRIC.11.itemlist.text
+msgctxt "sw/source/ui/config/optload.src#STR_ARR_METRIC.11.itemlist.text"
+msgid "Line"
+msgstr ""
+
+#: sw/source/ui/misc/pggrid.src#TP_TEXTGRID_PAGE.FT_CHARRANGE.fixedtext.text
+msgid "( 1 - 45 )"
+msgstr ""
+
+#: sw/source/ui/misc/pggrid.src#TP_TEXTGRID_PAGE.FT_LINERANGE.fixedtext.text
+msgid "( 1 - 48 )"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_FIELDS.FL_SORT1.fixedline.text
+msgid "Sort ~by"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_FIELDS.FL_SORT2.fixedline.text
+msgid "Then b~y"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_FIELDS.FL_SORT3.fixedline.text
+msgid "T~hen by"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.FL_DIRECTION.fixedline.text
+msgid "Direction"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.FT_ALGORITHM.fixedtext.text
+msgid "O~ptions"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.FT_LANGUAGE.fixedtext.text
+msgid "~Language"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_CASESENSITIVE.checkbox.text
+msgid "Case ~sensitive"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_COPYRESULT.checkbox.text
+msgid "~Copy sort results to:"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_FORMATS.checkbox.text
+msgid "Include ~formats"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_NATURALSORT.checkbox.text
+msgctxt "toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_NATURALSORT.checkbox.text"
+msgid "Enable ~natural sort"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_SORT_USER.checkbox.text
+msgid "Custom sort ~order"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCDLG_SORT.1.TP_FIELDS.pageitem.text
+msgid "Sort Criteria"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCDLG_SORT.1.TP_OPTIONS.pageitem.text
+msgctxt "toolkit/workben/layout/sortdlg.src#RID_SCDLG_SORT.1.TP_OPTIONS.pageitem.text"
+msgid "Options"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_FIELDS.BTN_DOWN1.radiobutton.text
+msgid "~Descending"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_FIELDS.BTN_DOWN2.radiobutton.text
+msgid "D~escending"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_FIELDS.BTN_DOWN3.radiobutton.text
+msgid "Desce~nding"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_FIELDS.BTN_UP1.radiobutton.text
+msgid "~Ascending"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_FIELDS.BTN_UP2.radiobutton.text
+msgid "A~scending"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_FIELDS.BTN_UP3.radiobutton.text
+msgid "As~cending"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_LEFT_RIGHT.radiobutton.text
+msgid "L~eft to right (sort columns)"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.BTN_TOP_DOWN.radiobutton.text
+msgid "~Top to bottom (sort rows)"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.STR_COL_LABEL.string.text
+msgid "Range contains column la~bels"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCPAGE_SORT_OPTIONS.STR_ROW_LABEL.string.text
+msgid "Range contains ~row labels"
+msgstr ""
+
+#: toolkit/workben/layout/sortdlg.src#RID_SCDLG_SORT.tabdialog.text
+msgid "Sort"
+msgstr ""
+
+#: vcl/source/src/units.src#SV_FUNIT_STRINGS.18.itemlist.text
+msgid "ch"
+msgstr ""
+
+#: vcl/source/src/units.src#SV_FUNIT_STRINGS.19.itemlist.text
+msgid "line"
+msgstr ""
+
+#: vcl/source/src/units.src#SV_FUNIT_STRINGS.20.itemlist.text
+msgid "%"
+msgstr ""

Added: trunk/po/ooo-build.sdf
==============================================================================
--- (empty file)
+++ trunk/po/ooo-build.sdf	Mon Aug 25 15:50:58 2008
@@ -0,0 +1,172 @@
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_ARRAY_FIX & ERRCODE_RES_MASK			999	en-US	This array is fixed or temporarily locked.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_COMPAT & ERRCODE_RES_MASK			999	en-US	$(ARG1).				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_EXPR_TOO_COMPLEX & ERRCODE_RES_MASK			999	en-US	Expression Too Complex.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_LOOP_NOT_INIT & ERRCODE_RES_MASK			999	en-US	For loop not initialized.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_OPER_NOT_PERFORM & ERRCODE_RES_MASK			999	en-US	Can't perform requested operation.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_STRING_OVERFLOW & ERRCODE_RES_MASK			999	en-US	Out of string space.				2002-02-02 02:02:02
+basic	source\classes\sb.src	0	string	RID_BASIC_START	ERRCODE_BASIC_TOO_MANY_DLL & ERRCODE_RES_MASK			999	en-US	Too many DLL application clients.				2002-02-02 02:02:02
+extensions	source\propctrlr\formres.src	0	string	RID_STR_GROUP_NAME				999	en-US	Group name				2002-02-02 02:02:02
+filter	source\config\fragments\internalgraphicfilters\svg_Import.xcu	0	value	svg_Import	UIName			999	en-US	SVG - Scalable Vector Graphics				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\CalcCommands.xcu	0	value	..CalcCommands.UserInterface.Commands..uno:DataForm	Label			999	en-US	D~ataForm...				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\CalcCommands.xcu	0	value	..CalcCommands.UserInterface.Commands..uno:ToggleMergeCells	Label			999	en-US	M~erge and Center Cells				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\CalcCommands.xcu	0	value	..CalcCommands.UserInterface.Commands..uno:ToggleSheetGrid	Label			999	en-US	Toggle Grid Lines for Current Sheet				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.Presets.Misc.media	Label			999	en-US	Media				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Effects.ooo-media-start	Label			999	en-US	Start media				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Effects.ooo-media-stop	Label			999	en-US	End media				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Effects.ooo-media-toggle-pause	Label			999	en-US	Toggle pause				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.fall	Label			999	en-US	Fall				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.finedissolve	Label			999	en-US	Fine Dissolve				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.inside-cube	Label			999	en-US	Inside turning cube				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.iris	Label			999	en-US	Iris				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.outside-cube	Label			999	en-US	Outside turning cube				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.revolving-circles	Label			999	en-US	Revolving circles				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.rochade	Label			999	en-US	Rochade				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.static	Label			999	en-US	Static				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.tile-flip	Label			999	en-US	Flipping tiles				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.turn-around	Label			999	en-US	Turn around				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.turn-down	Label			999	en-US	Turn down				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.turning-helix	Label			999	en-US	Turning helix				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.venetian3dh	Label			999	en-US	Venetian Blinds 3D Horizontal				2002-02-02 02:02:02
+officecfg	registry\data\org\openoffice\Office\UI\Effects.xcu	0	value	..Effects.UserInterface.Transitions.venetian3dv	Label			999	en-US	Venetian Blinds 3D Vertical				2002-02-02 02:02:02
+scp2	source\scsolver\module_scsolver.ulf	0	LngText	STR_DESC_MODULE_OPTIONAL_SCSOLVER				999	en-US	The linear and non-linear optimization solver for Calc.				2002-02-02 02:02:02
+scp2	source\scsolver\module_scsolver.ulf	0	LngText	STR_NAME_MODULE_OPTIONAL_SCSOLVER				999	en-US	%PRODUCTNAME Calc Solver				2002-02-02 02:02:02
+sc	source\ui\dbgui\pivot.src	0	fixedtext	RID_SCDLG_PIVOT_LAYOUT	FT_INAREA			999	en-US	Selection from				2002-02-02 02:02:02
+sc	source\ui\dbgui\pivot.src	0	imagebutton	RID_SCDLG_PIVOT_LAYOUT	RB_INAREA			999	en-US	-		Shrink		2002-02-02 02:02:02
+sc	source\ui\drawfunc\objdraw.src	0	menuitem	MN_DELLNK	SID_DRAW_HLINK_DELETE	SID_DRAW_HLINK_DELETE		999	en-US	~Remove Hyperlink				2002-02-02 02:02:02
+sc	source\ui\drawfunc\objdraw.src	0	menuitem	MN_EDITLNK	SID_DRAW_HLINK_EDIT	SID_DRAW_HLINK_EDIT		999	en-US	~Hyperlink...				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	fixedline	RID_SCDLG_TABPROTECTION	FL_OPTIONS			999	en-US	Options				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	fixedtext	RID_SCDLG_TABPROTECTION	FT_OPTIONS			999	en-US	Allow all users of this sheet to:				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	fixedtext	RID_SCDLG_TABPROTECTION	FT_PASSWORD1			999	en-US	~Password				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	fixedtext	RID_SCDLG_TABPROTECTION	FT_PASSWORD2			999	en-US	~Confirm				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	checkbox	RID_SCDLG_TABPROTECTION	BTN_PROTECT			999	en-US	P~rotect this sheet and the contents of locked cells				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	modaldialog	RID_SCDLG_TABPROTECTION				999	en-US	Protect Sheet				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	string	RID_SCDLG_TABPROTECTION	ST_SELECT_LOCKED_CELLS			999	en-US	Select locked cells				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\protectiondlg.src	0	string	RID_SCDLG_TABPROTECTION	ST_SELECT_UNLOCKED_CELLS			999	en-US	Select unlocked cells				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedline	RID_SCDLG_RETYPEPASS	FL_DOCUMENT			999	en-US	Document protection				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedline	RID_SCDLG_RETYPEPASS	FL_SHEET			999	en-US	Sheet protection				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_DESC			999	en-US	The document you are about to export has one or more protected items with an incompatible password hash.  Please re-type your password to re-generate password hash that is compatible with the exported format.				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_DOCSTATUS			999	en-US	Status unknown				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETNAME1			999	en-US	Sheet1 has a really long name				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETNAME2			999	en-US	Sheet2				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETNAME3			999	en-US	Sheet3				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETNAME4			999	en-US	Sheet4				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETSTATUS1			999	en-US	Status unknown				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETSTATUS2			999	en-US	Status unknown				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETSTATUS3			999	en-US	Status unknown				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS	FT_SHEETSTATUS4			999	en-US	Status unknown				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS_INPUT	FT_PASSWORD1			999	en-US	~Password				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	fixedtext	RID_SCDLG_RETYPEPASS_INPUT	FT_PASSWORD2			999	en-US	~Confirm				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	checkbox	RID_SCDLG_RETYPEPASS_INPUT	BTN_MATCH_OLD_PASSWORD			999	en-US	New password must match the original password.				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	modaldialog	RID_SCDLG_RETYPEPASS_INPUT				999	en-US	Re-type Password				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	modaldialog	RID_SCDLG_RETYPEPASS				999	en-US	Re-type Password				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	pushbutton	RID_SCDLG_RETYPEPASS	BTN_RETYPE_DOC			999	en-US	Re-type				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	pushbutton	RID_SCDLG_RETYPEPASS	BTN_RETYPE_SHEET1			999	en-US	Re-type				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	pushbutton	RID_SCDLG_RETYPEPASS	BTN_RETYPE_SHEET2			999	en-US	Re-type				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	pushbutton	RID_SCDLG_RETYPEPASS	BTN_RETYPE_SHEET3			999	en-US	Re-type				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	pushbutton	RID_SCDLG_RETYPEPASS	BTN_RETYPE_SHEET4			999	en-US	Re-type				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	radiobutton	RID_SCDLG_RETYPEPASS_INPUT	BTN_REMOVE_PASSWORD			999	en-US	Remove password from this protected item.				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	radiobutton	RID_SCDLG_RETYPEPASS_INPUT	BTN_RETYPE_PASSWORD			999	en-US	Re-type password				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	string	RID_SCDLG_RETYPEPASS	STR_HASH_BAD			999	en-US	Hash incompatible				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	string	RID_SCDLG_RETYPEPASS	STR_HASH_GOOD			999	en-US	Hash compatible				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	string	RID_SCDLG_RETYPEPASS	STR_HASH_REGENERATED			999	en-US	Hash re-generated				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	string	RID_SCDLG_RETYPEPASS	STR_NOT_PASS_PROTECTED			999	en-US	Not password-protected				2002-02-02 02:02:02
+sc	source\ui\miscdlgs\retypepassdlg.src	0	string	RID_SCDLG_RETYPEPASS	STR_NOT_PROTECTED			999	en-US	Not protected				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	fixedtext	RID_SCDLG_DATAFORM	LAB_DATAFORM_RECORDNO			999	en-US	/				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	modaldialog	RID_SCDLG_DATAFORM				999	en-US	Data Form				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	pushbutton	RID_SCDLG_DATAFORM	BTN_DATAFORM_CLOSE			999	en-US	Close				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	pushbutton	RID_SCDLG_DATAFORM	BTN_DATAFORM_DELETE			999	en-US	Delete				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	pushbutton	RID_SCDLG_DATAFORM	BTN_DATAFORM_LAST			999	en-US	Last Record				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	pushbutton	RID_SCDLG_DATAFORM	BTN_DATAFORM_NEW			999	en-US	New				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	pushbutton	RID_SCDLG_DATAFORM	BTN_DATAFORM_NEXT			999	en-US	Next Record				2002-02-02 02:02:02
+sc	source\ui\src\datafdlg.src	0	pushbutton	RID_SCDLG_DATAFORM	BTN_DATAFORM_RESTORE			999	en-US	Restore				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND1	11			999	en-US	Contains				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND1	12			999	en-US	Does not Contain				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND1	13			999	en-US	Begins with				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND1	14			999	en-US	Ends with				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND1	1			999	en-US	Equals				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND1	6			999	en-US	Not equals				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND2	11			999	en-US	Contains				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND2	12			999	en-US	Does not Contain				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND2	13			999	en-US	Begins with				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND2	14			999	en-US	Ends with				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND2	1			999	en-US	Equals				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND2	6			999	en-US	Not equals				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND3	11			999	en-US	Contains				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND3	12			999	en-US	Does not Contain				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND3	13			999	en-US	Begins with				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND3	14			999	en-US	Ends with				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND3	1			999	en-US	Equals				2002-02-02 02:02:02
+sc	source\ui\src\filter.src	0	stringlist	RID_SCDLG_FILTER.LB_COND3	6			999	en-US	Not equals				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_BUTTON			999	en-US	Button 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_DROPDOWN			999	en-US	Drop Down 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_GROUPBOX			999	en-US	Group Box 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_CHECKBOX			999	en-US	Check Box 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_LABEL			999	en-US	Label 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_LISTBOX			999	en-US	List Box 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_OPTIONBOX			999	en-US	Option Box 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_SCROLLBAR			999	en-US	Scroll Bar 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_FORM_SPINNER			999	en-US	Spinner 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_SHAPE_AUTOSHAPE			999	en-US	AutoShape 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_SHAPE_LINE			999	en-US	Line 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_SHAPE_OVAL			999	en-US	Oval 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_SHAPE_RECTANGLE			999	en-US	Rectangle 				2002-02-02 02:02:02
+sc	source\ui\src\globstr.src	0	string	RID_GLOBSTR	STR_SHAPE_TEXTBOX			999	en-US	Text Box 				2002-02-02 02:02:02
+sc	source\ui\src\optdlg.src	0	fixedtext	RID_SCPAGE_CALC	FT_FORMULA_SYNTAX			999	en-US	~Formula syntax				2002-02-02 02:02:02
+sc	source\ui\src\optdlg.src	0	stringlist	RID_SCPAGE_CALC.LB_FORMULA_SYNTAX	1			999	en-US	Calc A1				2002-02-02 02:02:02
+sc	source\ui\src\optdlg.src	0	stringlist	RID_SCPAGE_CALC.LB_FORMULA_SYNTAX	2			999	en-US	Excel A1				2002-02-02 02:02:02
+sc	source\ui\src\optdlg.src	0	stringlist	RID_SCPAGE_CALC.LB_FORMULA_SYNTAX	3			999	en-US	Excel R1C1				2002-02-02 02:02:02
+sc	source\ui\src\popup.src	0	menuitem	RID_POPUP_PIVOT	SID_PIVOT_AFMT	SID_PIVOT_AFMT		999	en-US	~AutoFormat...				2002-02-02 02:02:02
+sc	source\ui\src\sortdlg.src	0	checkbox	RID_SCPAGE_SORT_OPTIONS	BTN_NATURALSORT			999	en-US	Enable ~natural sort				2002-02-02 02:02:02
+sd	source\ui\animations\CustomAnimationCreateDialog.src	0	pageitem	DLG_CUSTOMANIMATION_CREATE.1	RID_TP_CUSTOMANIMATION_MISCEFFECTS			999	en-US	Misc Effects				2002-02-02 02:02:02
+sd	source\ui\dlg\prltempl.src	0	pageitem	TAB_PRES_LAYOUT_TEMPLATE.1	RID_SVXPAGE_TEXTATTR			999	en-US	Text				2002-02-02 02:02:02
+sd	source\ui\dlg\prltempl.src	0	pageitem	TAB_PRES_LAYOUT_TEMPLATE_3.1	RID_SVXPAGE_TEXTATTR			999	en-US	Text				2002-02-02 02:02:02
+sfx2	source\dialog\passwd.src	0	string	DLG_PASSWD	STR_PASSWD_EMPTY			999	en-US	(The password can be empty)				2002-02-02 02:02:02
+sfx2	source\dialog\passwd.src	0	string	DLG_PASSWD	STR_PASSWD_MIN_LEN			999	en-US	(Minimum $(MINLEN) characters)				2002-02-02 02:02:02
+sfx2	source\doc\doctempl.src	0	itemlist	TEMPLATE_LONG_NAMES_ARY	11			999	en-US	Labels				2002-02-02 02:02:02
+svtools	source\misc1\mediatyp.src	0	string	STR_SVT_MIMETYPE_AUDIO_VORBIS				999	en-US	Audio file				2002-02-02 02:02:02
+svtools	source\misc1\mediatyp.src	0	string	STR_SVT_MIMETYPE_VIDEO_THEORA				999	en-US	Video file				2002-02-02 02:02:02
+svx	source\dialog\autocdlg.src	0	string	COMMON_CLB_ENTRIES	ST_CORRECT_ACCIDENTAL_CAPS_LOCK			999	en-US	Correct accidental use of cAPS LOCK key				2002-02-02 02:02:02
+svx	source\dialog\linkwarn.src	0	cancelbutton	RID_SVXDLG_LINK_WARNING	PB_NO			999	en-US	~Embed Graphic				2002-02-02 02:02:02
+svx	source\dialog\linkwarn.src	0	fixedtext	RID_SVXDLG_LINK_WARNING	FT_INFOTEXT			999	en-US	The file %FILENAME will not be stored along with your document, but only referenced as a link. This is dangerous if you move and/or rename the files. Do you want to embed the graphic instead?				2002-02-02 02:02:02
+svx	source\dialog\linkwarn.src	0	checkbox	RID_SVXDLG_LINK_WARNING	CB_WARNING_OFF			999	en-US	~Ask when linking a graphic				2002-02-02 02:02:02
+svx	source\dialog\linkwarn.src	0	okbutton	RID_SVXDLG_LINK_WARNING	PB_OK			999	en-US	~Keep Link				2002-02-02 02:02:02
+svx	source\dialog\optgdlg.src	0	checkbox	OFA_TP_MISC	CB_ODMADLG			999	en-US	Show ODMA DMS dialogs first				2002-02-02 02:02:02
+svx	source\dialog\ruler.src	0	menuitem	RID_SVXMN_RULER	ID_CHAR			999	en-US	Char				2002-02-02 02:02:02
+svx	source\dialog\ruler.src	0	menuitem	RID_SVXMN_RULER	ID_LINE			999	en-US	Line				2002-02-02 02:02:02
+svx	source\options\optgenrl.src	0	itemlist	RID_SVXSTR_FIELDUNIT_TABLE	10			999	en-US	Char				2002-02-02 02:02:02
+svx	source\options\optgenrl.src	0	itemlist	RID_SVXSTR_FIELDUNIT_TABLE	11			999	en-US	Line				2002-02-02 02:02:02
+svx	source\tbxctrls\tbcontrl.src	0	string	RID_SVX_ZOOM_OPTIMAL				999	en-US	~Optimal				2002-02-02 02:02:02
+svx	source\tbxctrls\tbcontrl.src	0	string	RID_SVX_ZOOM_PAGEWIDTH				999	en-US	~Page Width				2002-02-02 02:02:02
+svx	source\tbxctrls\tbcontrl.src	0	string	RID_SVX_ZOOM_WHOLEPAGE				999	en-US	~Entire Page				2002-02-02 02:02:02
+sw	source\ui\config\optload.src	0	checkbox	TP_OPTLOAD_PAGE	CB_USE_CHAR_UNIT			999	en-US	Enable char unit				2002-02-02 02:02:02
+sw	source\ui\config\optload.src	0	itemlist	STR_ARR_METRIC	10			999	en-US	Char				2002-02-02 02:02:02
+sw	source\ui\config\optload.src	0	itemlist	STR_ARR_METRIC	11			999	en-US	Line				2002-02-02 02:02:02
+sw	source\ui\misc\pggrid.src	0	fixedtext	TP_TEXTGRID_PAGE	FT_CHARRANGE			999	en-US	( 1 - 45 )				2002-02-02 02:02:02
+sw	source\ui\misc\pggrid.src	0	fixedtext	TP_TEXTGRID_PAGE	FT_LINERANGE			999	en-US	( 1 - 48 )				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	fixedline	RID_SCPAGE_SORT_FIELDS	FL_SORT1			999	en-US	Sort ~by				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	fixedline	RID_SCPAGE_SORT_FIELDS	FL_SORT2			999	en-US	Then b~y				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	fixedline	RID_SCPAGE_SORT_FIELDS	FL_SORT3			999	en-US	T~hen by				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	fixedline	RID_SCPAGE_SORT_OPTIONS	FL_DIRECTION			999	en-US	Direction				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	fixedtext	RID_SCPAGE_SORT_OPTIONS	FT_ALGORITHM			999	en-US	O~ptions				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	fixedtext	RID_SCPAGE_SORT_OPTIONS	FT_LANGUAGE			999	en-US	~Language				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	checkbox	RID_SCPAGE_SORT_OPTIONS	BTN_CASESENSITIVE			999	en-US	Case ~sensitive				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	checkbox	RID_SCPAGE_SORT_OPTIONS	BTN_COPYRESULT			999	en-US	~Copy sort results to:				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	checkbox	RID_SCPAGE_SORT_OPTIONS	BTN_FORMATS			999	en-US	Include ~formats				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	checkbox	RID_SCPAGE_SORT_OPTIONS	BTN_NATURALSORT			999	en-US	Enable ~natural sort				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	checkbox	RID_SCPAGE_SORT_OPTIONS	BTN_SORT_USER			999	en-US	Custom sort ~order				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	pageitem	RID_SCDLG_SORT.1	TP_FIELDS			999	en-US	Sort Criteria				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	pageitem	RID_SCDLG_SORT.1	TP_OPTIONS			999	en-US	Options				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_FIELDS	BTN_DOWN1			999	en-US	~Descending				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_FIELDS	BTN_DOWN2			999	en-US	D~escending				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_FIELDS	BTN_DOWN3			999	en-US	Desce~nding				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_FIELDS	BTN_UP1			999	en-US	~Ascending				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_FIELDS	BTN_UP2			999	en-US	A~scending				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_FIELDS	BTN_UP3			999	en-US	As~cending				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_OPTIONS	BTN_LEFT_RIGHT			999	en-US	L~eft to right (sort columns)				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	radiobutton	RID_SCPAGE_SORT_OPTIONS	BTN_TOP_DOWN			999	en-US	~Top to bottom (sort rows)				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	string	RID_SCPAGE_SORT_OPTIONS	STR_COL_LABEL			999	en-US	Range contains column la~bels				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	string	RID_SCPAGE_SORT_OPTIONS	STR_ROW_LABEL			999	en-US	Range contains ~row labels				2002-02-02 02:02:02
+toolkit	workben\layout\sortdlg.src	0	tabdialog	RID_SCDLG_SORT				999	en-US	Sort				2002-02-02 02:02:02
+vcl	source\src\units.src	0	itemlist	SV_FUNIT_STRINGS	18			999	en-US	ch				2002-02-02 02:02:02
+vcl	source\src\units.src	0	itemlist	SV_FUNIT_STRINGS	19			999	en-US	line				2002-02-02 02:02:02
+vcl	source\src\units.src	0	itemlist	SV_FUNIT_STRINGS	20			999	en-US	%				2002-02-02 02:02:02



[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]