summaryrefslogtreecommitdiff
path: root/wizards/source/template
diff options
context:
space:
mode:
authorCaolán McNamara <caolanm@redhat.com>2017-05-24 17:33:50 +0100
committerCaolán McNamara <caolanm@redhat.com>2017-05-25 14:53:07 +0100
commitda543e4efbb53e25a60f8557a0b8cd307e46ebf4 (patch)
treeb973a6c31cf3432b9ed81ca0d9f40bf150a7fec0 /wizards/source/template
parent264ac75d4ddba5ef35105689df3c51d45c259b17 (diff)
convert starbasic wizards to .properties for translations
Change-Id: I165f85ee993995b54163061c7d378eea90eb276a
Diffstat (limited to 'wizards/source/template')
-rw-r--r--wizards/source/template/Autotext.xba8
-rw-r--r--wizards/source/template/Correspondence.xba86
-rw-r--r--wizards/source/template/ModuleAgenda.xba18
-rw-r--r--wizards/source/template/Samples.xba20
-rw-r--r--wizards/source/template/template.src459
5 files changed, 65 insertions, 526 deletions
diff --git a/wizards/source/template/Autotext.xba b/wizards/source/template/Autotext.xba
index f99a54f13f65..35b3fdf62ce4 100644
--- a/wizards/source/template/Autotext.xba
+++ b/wizards/source/template/Autotext.xba
@@ -41,9 +41,9 @@ Sub Main()
On Local Error Goto GENERALERROR
&apos; Initialization...
BasicLibraries.LoadLibrary(&quot;Tools&quot;)
- If InitResources(&quot;&apos;Template&apos;&quot;, &quot;tpl&quot;) Then
- sGeneralError = GetResText(1302)
- sTextFieldNotDefined = GetResText(1400)
+ If InitResources(&quot;&apos;Template&apos;&quot;) Then
+ sGeneralError = GetResText(&quot;CorrespondenceMsgError&quot;)
+ sTextFieldNotDefined = GetResText(&quot;TextField&quot;)
End If
UserfieldDatatype(0) = &quot;COMPANY&quot;
@@ -187,4 +187,4 @@ Sub CreatePlaceholder(oCursor as Object, sFoundContent as String)
End Sub
-</script:module> \ No newline at end of file
+</script:module>
diff --git a/wizards/source/template/Correspondence.xba b/wizards/source/template/Correspondence.xba
index 0d98846436a1..01da7f3d83e7 100644
--- a/wizards/source/template/Correspondence.xba
+++ b/wizards/source/template/Correspondence.xba
@@ -59,16 +59,16 @@ End Sub
Function LoadLanguageCorrespondence() as Boolean
- If InitResources(&quot;&apos;Template&apos;&quot;, &quot;tpl&quot;) Then
- msgNoTextmark$ = GetResText(1303) &amp; Chr(13) &amp; Chr(10) &amp; GetResText(1301)
- msgError$ = GetResText(1302)
+ If InitResources(&quot;&apos;Template&apos;&quot;) Then
+ msgNoTextmark$ = GetResText(&quot;CorrespondenceDialog_0&quot;) &amp; Chr(13) &amp; Chr(10) &amp; GetResText(&quot;CorrespondenceNoTextmark_1&quot;)
+ msgError$ = GetResText(&quot;CorrespondenceMsgError&quot;)
If bTemplate Then
- DialogModel.Title = GetResText(1303+3)
- DialogModel.CmdCancel.Label = GetResText(1102)
- DialogModel.CmdCorrGoOn.Label = GetResText(1103)
- DialogModel.OptSingle.Label = GetResText(1303 + 1)
- DialogModel.Optmerge.Label = GetResText(1303 + 2)
- DialogModel.FrmLetter.Label = GetResText(1303)
+ DialogModel.Title = GetResText(&quot;CorrespondenceDialog_3&quot;)
+ DialogModel.CmdCancel.Label = GetResText(&quot;STYLES_2&quot;)
+ DialogModel.CmdCorrGoOn.Label = GetResText(&quot;STYLES_3&quot;)
+ DialogModel.OptSingle.Label = GetResText(&quot;CorrespondenceDialog_1&quot;)
+ DialogModel.Optmerge.Label = GetResText(&quot;CorrespondenceDialog_2&quot;)
+ DialogModel.FrmLetter.Label = GetResText(&quot;CorrespondenceDialog_0&quot;)
End If
LoadLanguageCorrespondence() = True
Else
@@ -130,7 +130,7 @@ Dim bDBvalid as Boolean
oDBAccess = GetRegistryKeyContent(&quot;org.openoffice.Office.DataAccess/AddressBook/&quot;)
sAddressbook = oDBAccess.DataSourceName
If sAddressbook = &quot;&quot; Then
- MsgBox(GetResText(1301))
+ MsgBox(GetResText(&quot;CorrespondenceNoTextmark_1&quot;))
Exit Sub
End If
End If
@@ -230,74 +230,74 @@ Dim bCorrectField as Boolean
oFieldMaster = oDocument.createInstance(&quot;com.sun.star.text.TextField.JumpEdit&quot;)
Select Case sColName
Case &quot;Company&quot;
- oFieldMaster.PlaceHolder = getResText(1350+1)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_1&quot;)
Case &quot;Department&quot;
- oFieldMaster.PlaceHolder = getResText(1350+2)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_2&quot;)
Case &quot;FirstName&quot;
- oFieldMaster.PlaceHolder = getResText(1350+3)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_3&quot;)
Case &quot;LastName&quot;
- oFieldMaster.PlaceHolder = getResText(1350+4)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_4&quot;)
Case &quot;Street&quot;
- oFieldMaster.PlaceHolder = getResText(1350+5)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_5&quot;)
Case &quot;Country&quot;
- oFieldMaster.PlaceHolder = getResText(1350+6)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_6&quot;)
Case &quot;Zip&quot;
- oFieldMaster.PlaceHolder = getResText(1350+7)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_7&quot;)
Case &quot;City&quot;
- oFieldMaster.PlaceHolder = getResText(1350+8)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_8&quot;)
Case &quot;Title&quot;
- oFieldMaster.PlaceHolder = getResText(1350+9)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_9&quot;)
Case &quot;Position&quot;
- oFieldMaster.PlaceHolder = getResText(1350+10)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_10&quot;)
Case &quot;AddrForm&quot;
- oFieldMaster.PlaceHolder = getResText(1350+11)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_11&quot;)
Case &quot;Code&quot;
- oFieldMaster.PlaceHolder = getResText(1350+12)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_12&quot;)
Case &quot;AddrFormMail&quot;
- oFieldMaster.PlaceHolder = getResText(1350+13)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_13&quot;)
Case &quot;PhonePriv&quot;
- oFieldMaster.PlaceHolder = getResText(1350+14)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_14&quot;)
Case &quot;PhoneComp&quot;
- oFieldMaster.PlaceHolder = getResText(1350+15)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_15&quot;)
Case &quot;Fax&quot;
- oFieldMaster.PlaceHolder = getResText(1350+16)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_16&quot;)
Case &quot;EMail&quot;
- oFieldMaster.PlaceHolder = getResText(1350+17)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_17&quot;)
Case &quot;URL&quot;
- oFieldMaster.PlaceHolder = getResText(1350+18)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_18&quot;)
Case &quot;Note&quot;
- oFieldMaster.PlaceHolder = getResText(1350+19)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_19&quot;)
Case &quot;Altfield1&quot;
- oFieldMaster.PlaceHolder = getResText(1350+20)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_20&quot;)
Case &quot;Altfield2&quot;
- oFieldMaster.PlaceHolder = getResText(1350+21)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_21&quot;)
Case &quot;Altfield3&quot;
- oFieldMaster.PlaceHolder = getResText(1350+22)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_22&quot;)
Case &quot;Altfield4&quot;
- oFieldMaster.PlaceHolder = getResText(1350+23)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_23&quot;)
Case &quot;Id&quot;
- oFieldMaster.PlaceHolder = getResText(1350+24)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_24&quot;)
Case &quot;State&quot;
- oFieldMaster.PlaceHolder = getResText(1350+25)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_25&quot;)
Case &quot;PhoneOffice&quot;
- oFieldMaster.PlaceHolder = getResText(1350+26)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_26&quot;)
Case &quot;Pager&quot;
- oFieldMaster.PlaceHolder = getResText(1350+27)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_27&quot;)
Case &quot;PhoneCell&quot;
- oFieldMaster.PlaceHolder = getResText(1350+28)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_28&quot;)
Case &quot;PhoneOther&quot;
- oFieldMaster.PlaceHolder = getResText(1350+29)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_29&quot;)
Case &quot;CalendarURL&quot;
- oFieldMaster.PlaceHolder = getResText(1350+30)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_30&quot;)
Case &quot;InviteParticipant&quot;
- oFieldMaster.PlaceHolder = getResText(1350+31)
+ oFieldMaster.PlaceHolder = getResText(&quot;CorrespondenceFields_31&quot;)
Case Else
bCorrectField = False
End Select
If bCorrectField Then
- oFieldMaster.Hint = getResText(1350)
+ oFieldMaster.Hint = getResText(&quot;CorrespondenceFields_0&quot;)
oBookText.InsertTextContent(oBookMarkCursor, oFieldMaster, True)
End If
End If
End Sub
-</script:module> \ No newline at end of file
+</script:module>
diff --git a/wizards/source/template/ModuleAgenda.xba b/wizards/source/template/ModuleAgenda.xba
index 55731dcc54c4..a17fb68cd602 100644
--- a/wizards/source/template/ModuleAgenda.xba
+++ b/wizards/source/template/ModuleAgenda.xba
@@ -45,14 +45,14 @@ End Sub
Sub LoadLanguageAgenda()
- If InitResources(&quot;&apos;Template&apos;&quot;, &quot;tpl&quot;) Then
- DlgAgenda_gMyName = GetResText(1200)
- DialogModel.CmdCancel.Label = GetResText(1102)
- DialogModel.CmdAgdGoon.Label = GetResText(1103)
-&apos; DlgAgenda_gMsgNoCancel$ = GetResText(1201)
- DialogModel.FrmAgenda.Label = GetResText(1202)
- DialogModel.OptAgenda1.Label = GetResText(1203)
- DialogModel.OptAgenda2.Label = GetResText(1204)
+ If InitResources(&quot;&apos;Template&apos;&quot;) Then
+ DlgAgenda_gMyName = GetResText(&quot;AgendaDlgName&quot;)
+ DialogModel.CmdCancel.Label = GetResText(&quot;STYLES_2&quot;)
+ DialogModel.CmdAgdGoon.Label = GetResText(&quot;STYLES_3&quot;)
+&apos; DlgAgenda_gMsgNoCancel$ = GetResText(&quot;AgendaDlgNoCancel&quot;)
+ DialogModel.FrmAgenda.Label = GetResText(&quot;AgendaDlgFrame&quot;)
+ DialogModel.OptAgenda1.Label = GetResText(&quot;AgendaDlgButton1&quot;)
+ DialogModel.OptAgenda2.Label = GetResText(&quot;AgendaDlgButton2&quot;)
&apos; DialogModel.OptAgenda1.State = 1
End If
End Sub
@@ -217,4 +217,4 @@ Dim Taglist() as String
sTrueContent = TagList(1)
End Sub
-</script:module> \ No newline at end of file
+</script:module>
diff --git a/wizards/source/template/Samples.xba b/wizards/source/template/Samples.xba
index 13fe11a09dd9..ac3431a2023b 100644
--- a/wizards/source/template/Samples.xba
+++ b/wizards/source/template/Samples.xba
@@ -19,9 +19,6 @@
-->
<script:module xmlns:script="http://openoffice.org/2000/script" script:name="Samples" script:language="StarBasic">Option Explicit
-Const STYLES = 1100
-Const STYLENAME_DEF = 1120
-Const STYLENAME = 1150
Const NumStyles = 18
Const aTempFileName = &quot;Berend_Ilko_Tom_Stella_Volker.stc&quot;
Dim oUcbObject as Object
@@ -36,7 +33,6 @@ Public aTempURL as String
Public Files(100) as String
-
&apos;--------------------------------------------------------------------------------------
&apos;Calc Style Section starts here
@@ -49,8 +45,9 @@ Dim LocalizedStyleNames(NumStyles,2) As String
Dim LocalizedStyleName As String
Dim t as Integer
Dim MaxIndex as Integer
+Dim StyleNameDef As Variant
BasicLibraries.LoadLibrary(&quot;Tools&quot;)
- If InitResources(&quot;&apos;Template&apos;&quot;, &quot;tpl&quot;) then
+ If InitResources(&quot;&apos;Template&apos;&quot;) then
oDocument = ThisComponent
If oDocument.SupportsService(&quot;com.sun.star.sheet.SpreadsheetDocument&quot;) Then
ToggleWindow(False)
@@ -62,12 +59,13 @@ Dim MaxIndex as Integer
TemplateDir = GetPathSettings(&quot;Template&quot;, False, 0)
StylesDir = GetOfficeSubPath(&quot;Template&quot;, &quot;wizard/styles/&quot;)
sQueryPath = GetOfficeSubPath(&quot;Template&quot;, &quot;../wizard/bitmap/&quot;)
- DialogModel.Title = GetResText(STYLES)
- DialogModel.cmdCancel.Label = GetResText(STYLES+2)
- DialogModel.cmdOk.Label = GetResText(STYLES+3)
+ DialogModel.Title = GetResText(&quot;STYLES_0&quot;)
+ DialogModel.cmdCancel.Label = GetResText(&quot;STYLES_2&quot;)
+ DialogModel.cmdOk.Label = GetResText(&quot;STYLES_3&quot;)
+ StyleNameDef = Array("(Standard)", "Autumn Leaves", "Be", "Black and White", "Blackberry Bush", "Blue Jeans", "Fifties Diner", "Glacier", "Green Grapes", "Marine", "Millennium", "Nature", "Neon", "Night", "PC Nostalgia", "Pastel", "Pool Party", "Pumpkin")
For t = 0 to NumStyles - 1
- LocalizedStyleNames(t,0) = GetResText(STYLENAME_DEF+t)
- LocalizedStyleNames(t,1) = GetResText(STYLENAME+t)
+ LocalizedStyleNames(t,0) = StyleNameDef(t)
+ LocalizedStyleNames(t,1) = GetResText(&quot;STYLENAME_&quot; &amp; Trim(Str(t)))
Next t
Stylenames() = ReadDirectories(StylesDir, False, False, True,)
MaxIndex = Ubound(Stylenames())
@@ -129,7 +127,7 @@ Sub SaveCurrentStyles(oDocument as Object)
Exit Sub
ErrorOcurred:
- MsgBox(GetResText( STYLES+1 ), 16, GetResText( STYLES ))
+ MsgBox(GetResText(&quot;STYLES_1&quot;), 16, GetResText(&quot;STYLES_0&quot;))
On Local Error Goto 0
End Sub
diff --git a/wizards/source/template/template.src b/wizards/source/template/template.src
deleted file mode 100644
index 9afa43b00a12..000000000000
--- a/wizards/source/template/template.src
+++ /dev/null
@@ -1,459 +0,0 @@
-/* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
-/*
- * This file is part of the LibreOffice project.
- *
- * This Source Code Form is subject to the terms of the Mozilla Public
- * License, v. 2.0. If a copy of the MPL was not distributed with this
- * file, You can obtain one at http://mozilla.org/MPL/2.0/.
- *
- * This file incorporates work covered by the following license notice:
- *
- * Licensed to the Apache Software Foundation (ASF) under one or more
- * contributor license agreements. See the NOTICE file distributed
- * with this work for additional information regarding copyright
- * ownership. The ASF licenses this file to you under the Apache
- * License, Version 2.0 (the "License"); you may not use this file
- * except in compliance with the License. You may obtain a copy of
- * the License at http://www.apache.org/licenses/LICENSE-2.0 .
- */
-#define STYLES 1100
-#define STYLENAME_DEF 1120
-#define STYLENAME 1150
-#define AgendaDlgName 1200
-#define AgendaDlgNoCancel 1201
-#define AgendaDlgFrame 1202
-#define AgendaDlgButton1 1203
-#define AgendaDlgButton2 1204
-#define CorrespondenceNoTextmark 1300
-#define CorrespondenceMsgError 1302
-#define CorrespondenceDialog 1303
-#define CorrespondenceFields 1350
-#define TextField 1400
-
-String STYLES
-{
- Text [ en-US ] = "Theme Selection";
-};
-
-String STYLES + 1
-{
- Text [ en-US ] = "Error while saving the document to the clipboard! The following action cannot be undone.";
-};
-
-String STYLES + 2
-{
- Text [ en-US ] = "~Cancel";
-};
-
-String STYLES + 3
-{
- Text [ en-US ] = "~OK";
-};
-
-String STYLENAME_DEF
-{
- Text = "(Standard)";
-};
-
-String STYLENAME_DEF + 1
-{
- Text = "Autumn Leaves";
-};
-
-String STYLENAME_DEF + 2
-{
- Text = "Be";
-};
-
-String STYLENAME_DEF + 3
-{
- Text = "Black and White";
-};
-
-String STYLENAME_DEF + 4
-{
- Text = "Blackberry Bush";
-};
-
-String STYLENAME_DEF + 5
-{
- Text = "Blue Jeans";
-};
-
-String STYLENAME_DEF + 6
-{
- Text = "Fifties Diner";
-};
-
-String STYLENAME_DEF + 7
-{
- Text = "Glacier";
-};
-
-String STYLENAME_DEF + 8
-{
- Text = "Green Grapes";
-};
-
-String STYLENAME_DEF + 9
-{
- Text = "Marine";
-};
-
-String STYLENAME_DEF + 10
-{
- Text = "Millennium";
-};
-
-String STYLENAME_DEF + 11
-{
- Text = "Nature";
-};
-
-String STYLENAME_DEF + 12
-{
- Text = "Neon";
-};
-
-String STYLENAME_DEF + 13
-{
- Text = "Night";
-};
-
-String STYLENAME_DEF + 14
-{
- Text = "PC Nostalgia";
-};
-
-String STYLENAME_DEF + 15
-{
- Text = "Pastel";
-};
-
-String STYLENAME_DEF + 16
-{
- Text = "Pool Party";
-};
-
-String STYLENAME_DEF + 17
-{
- Text = "Pumpkin";
-};
-
-String STYLENAME
-{
- Text [ en-US ] = "(Standard)";
-};
-
-String STYLENAME + 1
-{
- Text [ en-US ] = "Autumn Leaves";
-};
-
-String STYLENAME + 2
-{
- Text [ en-US ] = "Be";
-};
-
-String STYLENAME + 3
-{
- Text [ en-US ] = "Black and White";
-};
-
-String STYLENAME + 4
-{
- Text [ en-US ] = "Blackberry Bush";
-};
-
-String STYLENAME + 5
-{
- Text [ en-US ] = "Blue Jeans";
-};
-
-String STYLENAME + 6
-{
- Text [ en-US ] = "Fifties Diner";
-};
-
-String STYLENAME + 7
-{
- Text [ en-US ] = "Glacier";
-};
-
-String STYLENAME + 8
-{
- Text [ en-US ] = "Green Grapes";
-};
-
-String STYLENAME + 9
-{
- Text [ en-US ] = "Marine";
-};
-
-String STYLENAME + 10
-{
- Text [ en-US ] = "Millennium";
-};
-
-String STYLENAME + 11
-{
- Text [ en-US ] = "Nature";
-};
-
-String STYLENAME + 12
-{
- Text [ en-US ] = "Neon";
-};
-
-String STYLENAME + 13
-{
- Text [ en-US ] = "Night";
-};
-
-String STYLENAME + 14
-{
- Text [ en-US ] = "PC Nostalgia";
-};
-
-String STYLENAME + 15
-{
- Text [ en-US ] = "Pastel";
-};
-
-String STYLENAME + 16
-{
- Text [ en-US ] = "Pool Party";
-};
-
-String STYLENAME + 17
-{
- Text [ en-US ] = "Pumpkin";
-};
-
-String AgendaDlgName
-{
- Text [ en-US ] = "Minutes Template";
-};
-
-String AgendaDlgNoCancel
-{
- Text [ en-US ] = "An option must be confirmed.";
-};
-
-String AgendaDlgFrame
-{
- Text [ en-US ] = "Minutes Type";
-};
-
-String AgendaDlgButton1
-{
- Text [ en-US ] = "Results Minutes";
-};
-
-String AgendaDlgButton2
-{
- Text [ en-US ] = "Evaluation Minutes";
-};
-
-String CorrespondenceNoTextmark
-{
- Text [ en-US ] = "The bookmark 'Recipient' is missing.";
-};
-
-String CorrespondenceNoTextmark+1
-{
- Text [ en-US ] = "Form letter fields can not be included.";
-};
-
-String CorrespondenceMsgError
-{
- Text [ en-US ] = "An error has occurred.";
-};
-
-String CorrespondenceDialog
-{
- Text [ en-US ] = "Addressee";
-};
-
-String CorrespondenceDialog+1
-{
- Text [ en-US ] = "One recipient";
-};
-
-String CorrespondenceDialog+2
-{
- Text [ en-US ] = "Several recipients (address database)";
-};
-
-String CorrespondenceDialog+3
-{
- Text [ en-US ] = "Use of This Template";
-};
-
-String CorrespondenceFields
-{
- Text [ en-US ] = "Click placeholder and overwrite";
-};
-
-String CorrespondenceFields+1
-{
- Text [ en-US ] = "Company";
-};
-
-String CorrespondenceFields+2
-{
- Text [ en-US ] = "Department";
-};
-
-String CorrespondenceFields+3
-{
- Text [ en-US ] = "First Name";
-};
-
-String CorrespondenceFields+4
-{
- Text [ en-US ] = "Last Name";
-};
-
-String CorrespondenceFields+5
-{
- Text [ en-US ] = "Street";
-};
-
-String CorrespondenceFields+6
-{
- Text [ en-US ] = "Country";
-};
-
-String CorrespondenceFields+7
-{
- Text [ en-US ] = "ZIP/Postal Code";
-};
-
-String CorrespondenceFields+8
-{
- Text [ en-US ] = "City";
-};
-
-String CorrespondenceFields+9
-{
- Text [ en-US ] = "Title";
-};
-
-String CorrespondenceFields+10
-{
- Text [ en-US ] = "Position";
-};
-
-String CorrespondenceFields+11
-{
- Text [ en-US ] = "Form of Address";
-};
-
-String CorrespondenceFields+12
-{
- Text [ en-US ] = "Initials";
-};
-
-String CorrespondenceFields+13
-{
- Text [ en-US ] = "Salutation";
-};
-
-String CorrespondenceFields+14
-{
- Text [ en-US ] = "Home Phone";
-};
-
-String CorrespondenceFields+15
-{
- Text [ en-US ] = "Work Phone";
-};
-
-String CorrespondenceFields+16
-{
- Text [ en-US ] = "Fax";
-};
-
-String CorrespondenceFields+17
-{
- Text [ en-US ] = "E-Mail";
-};
-
-String CorrespondenceFields+18
-{
- Text [ en-US ] = "URL";
-};
-
-String CorrespondenceFields+19
-{
- Text [ en-US ] = "Notes";
-};
-
-String CorrespondenceFields+20
-{
- Text [ en-US ] = "Alt. Field 1";
-};
-
-String CorrespondenceFields+21
-{
- Text [ en-US ] = "Alt. Field 2";
-};
-
-String CorrespondenceFields+22
-{
- Text [ en-US ] = "Alt. Field 3";
-};
-
-String CorrespondenceFields+23
-{
- Text [ en-US ] = "Alt. Field 4";
-};
-
-String CorrespondenceFields+24
-{
- Text [ en-US ] = "ID";
-};
-
-String CorrespondenceFields+25
-{
- Text [ en-US ] = "State";
-};
-
-String CorrespondenceFields+26
-{
- Text [ en-US ] = "Office Phone";
-};
-
-String CorrespondenceFields+27
-{
- Text [ en-US ] = "Pager";
-};
-
-String CorrespondenceFields+28
-{
- Text [ en-US ] = "Mobile Phone";
-};
-
-String CorrespondenceFields+29
-{
- Text [ en-US ] = "Other Phone";
-};
-
-String CorrespondenceFields+30
-{
- Text [ en-US ] = "Calendar URL";
-};
-
-String CorrespondenceFields+31
-{
- Text [ en-US ] = "Invite";
-};
-
-String TextField
-{
- Text [ en-US ] = "User data field is not defined!";
-
-};
-
-/* vim:set shiftwidth=4 softtabstop=4 expandtab: */