Kaydet (Commit) 6742500c authored tarafından Noel Grandin's avatar Noel Grandin

remove unused defines from HRC files in sw/

Change-Id: I74fb244b2440ddf7682362444c20730ac0e58cea
Reviewed-on: https://gerrit.libreoffice.org/35212Tested-by: 's avatarJenkins <ci@libreoffice.org>
Reviewed-by: 's avatarNoel Grandin <noel.grandin@collabora.co.uk>
üst 64ea8306
......@@ -57,7 +57,27 @@ exclusionSet = set([
# other places doing calculations
"RID_SVXSTR_DEPTH",
"RID_SUBSETSTR_",
"ANALYSIS_"
"ANALYSIS_",
"FLD_DOCINFO_CHANGE",
"FLD_EU_",
"FLD_INPUT_",
"FLD_PAGEREF_",
"FLD_STAT_",
"FMT_AUTHOR_",
"FMT_CHAPTER_",
"FMT_DBFLD_",
"FMT_FF_",
"FMT_GETVAR_",
"FMT_MARK_",
"FMT_REF_",
"FMT_SETVAR_",
"STR_AUTH_FIELD_ADDRESS_",
"STR_AUTH_TYPE_",
"STR_AUTOFMTREDL_",
"STR_CONTENT_TYPE_",
"STR_UPDATE_ALL",
"STR_UPDATE_INDEX",
"STR_UPDATE_LINK",
])
......@@ -73,7 +93,7 @@ with a.stdout as txt:
for line in txt:
idx1 = line.find("#define ")
idx2 = line.find(" ", idx1 + 9)
idName = line[idx1+8 : idx2]
idName = line[idx1+8 : idx2].strip()
# the various _START and _END constants are normally unused outside of the .hrc and .src files, and that's fine
if idName.endswith("_START"): continue
if idName.endswith("_BEGIN"): continue
......@@ -83,23 +103,33 @@ with a.stdout as txt:
if idName == "RID_SVX_FIRSTFREE": continue
if in_exclusion_set(idName): continue
# search for the constant
b = subprocess.Popen(["git", "grep", "-wl", idName], stdout=subprocess.PIPE)
b = subprocess.Popen(["git", "grep", "-w", idName], stdout=subprocess.PIPE)
found_reason_to_exclude = False
with b.stdout as txt2:
for line2 in txt2:
line2 = line2.strip() # otherwise the comparisons below will not work
# check if we found one in actual code
if not line2.endswith(".hrc") and not line2.endswith(".src"): found_reason_to_exclude = True
if not ".hrc:" in line2 and not ".src:" in line2: found_reason_to_exclude = True
if idName.startswith("RID_"):
# check that the constant is not being used as an identifier by entries in .src files
if line2.endswith(".src") and line2.find("Identifier = ") != -1: found_reason_to_exclude = True
# check that the constant is not being used by the property controller extension or reportdesigner inspection,
# is the constant being used as an identifier by entries in .src files?
if ".src:" in line2 and "Identifier = " in line2: found_reason_to_exclude = True
# is the constant being used by the property controller extension or reportdesigner inspection,
# which use macros to declare constants, hiding them from a search
if line2.find("extensions/source/propctrlr") != -1: found_reason_to_exclude = True
if line2.find("reportdesign/source/ui/inspection/inspection.src") != -1: found_reason_to_exclude = True
if "extensions/source/propctrlr" in line2: found_reason_to_exclude = True
if "reportdesign/source/ui/inspection/inspection.src" in line2: found_reason_to_exclude = True
if idName.startswith("HID_"):
# check that the constant is not being used as an identifier by entries in .src files
if line2.endswith(".src") and line2.find("HelpId = ") != -1: found_reason_to_exclude = True
# is the constant being used as an identifier by entries in .src files
if ".src:" in line2 and "HelpId = " in line2: found_reason_to_exclude = True
# is it being used as a constant in an ItemList in .src files?
if ".src:" in line2 and ";> ;" in line2: found_reason_to_exclude = True
# these are used in calculations in other .hrc files
if "sw/inc/rcid.hrc:" in line2: found_reason_to_exclude = True
# calculations
if "sw/source/uibase/inc/ribbar.hrc:" in line2 and "ST_" in line2: found_reason_to_exclude = True
if "sw/source/uibase/inc/ribbar.hrc:" in line2 and "STR_IMGBTN_" in line2: found_reason_to_exclude = True
if "sw/source/core/undo/undo.hrc:" in line2: found_reason_to_exclude = True
if "sw/inc/poolfmt.hrc:" in line2: found_reason_to_exclude = True
if not found_reason_to_exclude:
sys.stdout.write(idName + '\n')
# otherwise the previous line of output will be incorrectly mixed into the below git output, because of buffering
......
......@@ -24,7 +24,6 @@
#define STR_ACCESS_DOC_NAME (RC_ACCESS_BEGIN + 1)
#define STR_ACCESS_DOC_DESC (RC_ACCESS_BEGIN + 2)
#define STR_ACCESS_HEADING_WITH_NUM_DESC (RC_ACCESS_BEGIN + 3)
#define STR_ACCESS_HEADER_NAME (RC_ACCESS_BEGIN + 4)
#define STR_ACCESS_HEADER_DESC (RC_ACCESS_BEGIN + 5)
#define STR_ACCESS_FOOTER_NAME (RC_ACCESS_BEGIN + 6)
......@@ -44,7 +43,6 @@
#define STR_ACCESS_PREVIEW_DOC_NAME (RC_ACCESS_BEGIN + 22)
#define STR_ACCESS_PREVIEW_DOC_SUFFIX (RC_ACCESS_BEGIN + 24)
#define STR_ACCESS_DOC_WORDPROCESSING (RC_ACCESS_BEGIN + 25)
#define STR_ACCESS_DOC_WORDPROCESSING_READONLY (RC_ACCESS_BEGIN + 26)
#define STR_ACCESS_COLUMN_WIDTH (RC_ACCESS_BEGIN + 27)
#define STR_ACCESS_PAGESETUP_SPACING (RC_ACCESS_BEGIN + 28)
......
......@@ -24,7 +24,6 @@
#define STR_ILLEGAL_PAGENUM (RC_CHRDLG_BEGIN + 1)
#define STR_TEXTCOLL_HEADER (RC_CHRDLG_BEGIN + 2)
#define STR_PAGEFMT_HEADER (RC_CHRDLG_BEGIN + 4)
#define DLG_SWDROPCAPS (RC_CHRDLG_BEGIN + 11)
......
......@@ -36,8 +36,6 @@
#define STR_EMPTYPAGE (RC_COMCORE_BEGIN + 11)
#define RID_SHELLRES_AUTOFMTSTRS (RC_COMCORE_BEGIN + 12)
#define STR_MULT_INTERACT_HYPH_WARN (RC_COMCORE_BEGIN + 13)
#define STR_MULT_INTERACT_SPELL_WARN (RC_COMCORE_BEGIN + 14)
#define STR_SPELL_TITLE (RC_COMCORE_BEGIN + 15)
#define STR_HYPH_TITLE (RC_COMCORE_BEGIN + 16)
#define STR_SHAPE_DEFNAME (RC_COMCORE_BEGIN + 17)
......@@ -46,14 +44,12 @@
#define STR_REDLINE_FORMAT (RC_COMCORE_BEGIN + 21)
#define STR_REDLINE_TABLE (RC_COMCORE_BEGIN + 22)
#define STR_REDLINE_FMTCOLL (RC_COMCORE_BEGIN + 23)
#define STR_CLIPBOARD (RC_COMCORE_BEGIN + 24)
#define STR_START_QUOTE (RC_COMCORE_BEGIN + 25)
#define STR_END_QUOTE (RC_COMCORE_BEGIN + 26)
#define STR_LDOTS (RC_COMCORE_BEGIN + 27)
#define STR_YIELDS (RC_COMCORE_BEGIN + 28)
#define STR_PARAGRAPHS (RC_COMCORE_BEGIN + 29)
#define STR_MULTISEL (RC_COMCORE_BEGIN + 30)
#define STR_REDLINE_MULTIPLE (RC_COMCORE_BEGIN + 31)
#define STR_N_REDLINES (RC_COMCORE_BEGIN + 32)
#define STR_FIELD (RC_COMCORE_BEGIN + 33)
......
......@@ -48,12 +48,6 @@
#define ST_REMOVESALUTATIONFIELD (RC_DBUI_BEGIN + 23)
#define ST_DRAGSALUTATION (RC_DBUI_BEGIN + 24)
#define ST_TITLE_EDIT (RC_DBUI_BEGIN + 25)
#define ST_SAVESTART (RC_DBUI_BEGIN + 26)
#define ST_SAVEMERGED (RC_DBUI_BEGIN + 27)
#define ST_PRINT (RC_DBUI_BEGIN + 28)
#define ST_SENDMAIL (RC_DBUI_BEGIN + 29)
#define ST_DEFAULTATTACHMENT (RC_DBUI_BEGIN + 30)
#define ST_NOSUBJECT (RC_DBUI_BEGIN + 31)
#define ST_CONFIGUREMAIL (RC_DBUI_BEGIN + 32)
#define ST_FILTERNAME (RC_DBUI_BEGIN + 33)
#define ST_TYPE (RC_DBUI_BEGIN + 34)
......@@ -69,11 +63,9 @@
#define ST_CONTINUE (RC_DBUI_BEGIN + 44)
#define ST_TASK (RC_DBUI_BEGIN + 45)
#define ST_STATUS (RC_DBUI_BEGIN + 46)
#define ST_SEND (RC_DBUI_BEGIN + 47)
#define ST_SENDINGTO (RC_DBUI_BEGIN + 48)
#define ST_COMPLETED (RC_DBUI_BEGIN + 49)
#define ST_FAILED (RC_DBUI_BEGIN + 50)
#define ST_TERMINATEQUERY (RC_DBUI_BEGIN + 51)
#define ST_STARTING (RC_DBUI_BEGIN + 52)
#define ST_DOCUMENTTYPE (RC_DBUI_BEGIN + 53)
#define ST_ADDRESSBLOCK (RC_DBUI_BEGIN + 54)
......
......@@ -29,10 +29,7 @@
// Strings ******************************************************************
#define STR_LINKEDIT_TEXT (RC_DIALOG_BEGIN + 1)
#define STR_CLOSELINKMSG (RC_DIALOG_BEGIN + 3)
#define STR_PATH_NOT_FOUND (RC_DIALOG_BEGIN + 4)
// Bereiche *****************************************************************
......@@ -42,12 +39,9 @@
#define RC_MACASSGN_END (RC_DIALOG_BEGIN + 89)
// RC_MACASSGN_END (RC_DIALOG_BEGIN + 89)
#define RC_DLG_ADDR (RC_DIALOG_BEGIN + 90)
#define RC_DLG_ADDR (RC_DIALOG_BEGIN + 90)
#define RC_SWDLG_BACKGROUND (RC_DIALOG_BEGIN + 91)
#define RC_DLG_SWNUMFMTDLG (RC_DIALOG_BEGIN + 92)
#define RC_DLG_SWBORDERDLG (RC_DIALOG_BEGIN + 93)
#define RC_DLG_SWWRAPDLG (RC_DIALOG_BEGIN + 94)
#define RC_DLG_SWFLDEDITDLG (RC_DIALOG_BEGIN + 95)
// Ueberlaufpruefung ********************************************************
#define DIALOG_ACT_END RC_MACASSGN_END
......
......@@ -22,10 +22,6 @@
#include "rcid.hrc"
// Dialoge --------------------------------------------------------------------
#define DLG_MAILMERGE (RC_ENVELP_BEGIN + 8)
// Bereiche -------------------------------------------------------------------
#define RC_ENVLOP_BEGIN (RC_ENVELP_BEGIN )
......@@ -45,10 +41,6 @@
// Strings --------------------------------------------------------------------
#define STR_DATABASE_NOT_OPENED (RC_ENVLOP_BEGIN + 63)
#define STR_NO_DRIVERS (RC_ENVLOP_BEGIN + 64)
#define STR_BTN_NEWDOC (RC_ENVLOP_BEGIN + 68)
#define STR_SENDER_TOKENS (RC_ENVLOP_BEGIN + 69)
// Ueberlaufpruefung ----------------------------------------------------------
......
......@@ -126,11 +126,9 @@
/*----------------------------------------------------------
Format-Id's
----------------------------------------------------------*/
// Text
#define FMT_TEXT FLD_PAGEREF_END
// Numbers
#define FMT_NUM_BEGIN (FMT_TEXT + 1)
#define FMT_NUM_BEGIN (FLD_PAGEREF_END + 1)
#define FMT_NUM_ABC FMT_NUM_BEGIN
#define FMT_NUM_SABC (FMT_NUM_BEGIN + 1)
#define FMT_NUM_ABC_N (FMT_NUM_BEGIN + 2)
......@@ -232,8 +230,6 @@
--------------------------------------------------------------------*/
#define STR_FLDUI FMT_MARK_END
#define STR_INSERT STR_FLDUI
#define STR_ALL (STR_FLDUI + 1)
#define STR_EXTRA (STR_FLDUI + 2)
/*--------------------------------------------------------------------
......@@ -247,13 +243,10 @@
#define STR_COMBCHRS_FT (STR_EXTRA + 4)
#define STR_PROMPT (STR_EXTRA + 5)
#define STR_MACNAME (STR_EXTRA + 6)
#define STR_SETNO (STR_EXTRA + 7)
#define STR_OFFSET (STR_EXTRA + 8)
#define STR_VALUE (STR_EXTRA + 9)
#define STR_URLPROMPT (STR_EXTRA + 11)
#define STR_FORMULA (STR_EXTRA + 12)
#define STR_ALL_DATABASE (STR_EXTRA + 13)
#endif
......
......@@ -25,7 +25,6 @@
// STRINGS -----------------------------------------------------------
#define STR_DLLNOTFOUND (RC_GLOBALS_BEGIN + 0)
#define STR_FMT_STD (RC_GLOBALS_BEGIN + 1)
#define STR_LOAD_GLOBAL_DOC (RC_GLOBALS_BEGIN + 2)
#define STR_DOC_STAT (RC_GLOBALS_BEGIN + 10)
......@@ -118,15 +117,12 @@
// INFOBOX ------------------------------------------------------------
#define STR_ERROR_CLPBRD_READ (RC_GLOBALS_BEGIN + 50)
#define STR_ERROR_PASSWD (RC_GLOBALS_BEGIN + 51)
// Strings for the context menu of the content tree
#define STR_CONTEXT_FIRST (RC_GLOBALS_BEGIN + 52)
#define STR_OUTLINE_LEVEL (STR_CONTEXT_FIRST + 0)
#define STR_DRAGMODE (STR_CONTEXT_FIRST + 1)
#define STR_HYPERLINK (STR_CONTEXT_FIRST + 2)
#define STR_LINK_REGION (STR_CONTEXT_FIRST + 3)
#define STR_COPY_REGION (STR_CONTEXT_FIRST + 4)
#define STR_DISPLAY (STR_CONTEXT_FIRST + 5)
#define STR_ACTIVE_VIEW (STR_CONTEXT_FIRST + 6)
#define STR_STATUS_FIRST (RC_GLOBALS_BEGIN + 59)
......
......@@ -30,7 +30,6 @@
#define STR_ALPHA (RC_INDEX_BEGIN + 7)
#define STR_LEVEL (RC_INDEX_BEGIN + 8)
#define DLG_EDIT_IDXMARK (RC_INDEX_BEGIN + 11)
#define DLG_EDIT_AUTHMARK (RC_INDEX_BEGIN + 12)
#define STR_IDXMRK_INSERT (RC_INDEX_BEGIN + 13)
......
......@@ -21,8 +21,6 @@
#include <sfx2/sfxsids.hrc>
#define IMAGE_MASK_COLOR Color { Red = 0xFF00; Green = 0x0000; Blue = 0xFF00; }
// Areas for the UI-Directories
#define RC_BASE RID_SW_START // From solar.hrc
......
......@@ -27,11 +27,7 @@
#define STR_STATSTR_SWGWRITE (RC_STATLIN_STR + 3)
#define STR_STATSTR_REFORMAT (RC_STATLIN_STR + 4)
#define STR_STATSTR_AUTOFORMAT (RC_STATLIN_STR + 5)
#define STR_STATSTR_IMPGRF (RC_STATLIN_STR + 6)
#define STR_STATSTR_SEARCH (RC_STATLIN_STR + 7)
#define STR_STATSTR_FORMAT (RC_STATLIN_STR + 8)
#define STR_STATSTR_PRINT (RC_STATLIN_STR + 9)
#define STR_STATSTR_LAYOUTINIT (RC_STATLIN_STR + 10)
#define STR_STATSTR_LETTER (RC_STATLIN_STR + 11)
#define STR_STATSTR_SPELL (RC_STATLIN_STR + 12)
#define STR_STATSTR_HYPHEN (RC_STATLIN_STR + 13)
......
......@@ -14,7 +14,6 @@
// Bitmaps for page shadow
#define BMP_PAGE_SHADOW_MASK RC_PAGEFRM_BEGIN + 0
#define STR_PAGE_BREAK RC_PAGEFRM_BEGIN + 1
#define STR_COLUMN_BREAK RC_PAGEFRM_BEGIN + 2
// If you add resources, don't forget to update this
......
......@@ -14,11 +14,6 @@ Bitmap BMP_PAGE_SHADOW_MASK
File = "page-shadow-mask.png";
};
String STR_PAGE_BREAK
{
Text [ en-US ] = "Manual Page Break" ;
};
String STR_COLUMN_BREAK
{
Text [ en-US ] = "Manual Column Break" ;
......
......@@ -426,10 +426,6 @@ String STR_LDOTS
{
Text [ en-US ] = "...";
};
String STR_CLIPBOARD
{
Text [ en-US ] = "clipboard";
};
String STR_MULTISEL
{
Text [ en-US ] = "multiple selection";
......@@ -486,10 +482,6 @@ String STR_REDLINE_FMTCOLL
{
Text [ en-US ] = "Style changed";
};
String STR_REDLINE_MULTIPLE
{
Text [ en-US ] = "multiple changes";
};
String STR_N_REDLINES
{
Text [ en-US ] = "$1 changes";
......
......@@ -30,16 +30,6 @@
#include "shells.hrc"
#include "helpid.h"
String STR_PRINT_MERGE_MACRO
{
Text [ en-US ] = "Print form letters" ;
};
String STR_PAGE_COUNT_MACRO
{
Text [ en-US ] = "Changing the page count" ;
};
String STR_PARAGRAPHSTYLEFAMILY
{
Text [ en-US ] = "Paragraph Styles" ;
......@@ -210,11 +200,6 @@ String STR_DLLNOTFOUND
Text [ en-US ] = "Filter not found." ;
};
String STR_UNBENANNT
{
Text [ en-US ] = "Untitled" ;
};
String STR_LOAD_GLOBAL_DOC
{
Text [ en-US ] = "Name and Path of Master Document" ;
......@@ -280,16 +265,6 @@ String STR_READONLY_PATH
Text [ en-US ] = "The 'AutoText' directories are read-only. Do you want to call the path settings dialog?";
};
String STR_ERROR_PASSWD
{
Text [ en-US ] = "Invalid password" ;
};
String STR_FMT_STD
{
Text [ en-US ] = "(none)" ;
};
String STR_DOC_STAT
{
Text [ en-US ] = "Statistics" ;
......@@ -327,31 +302,11 @@ String STR_STATSTR_AUTOFORMAT
Text [ en-US ] = "Formatting document automatically..." ;
};
String STR_STATSTR_IMPGRF
{
Text [ en-US ] = "Importing images..." ;
};
String STR_STATSTR_SEARCH
{
Text [ en-US ] = "Search..." ;
};
String STR_STATSTR_FORMAT
{
Text [ en-US ] = "Formatting..." ;
};
String STR_STATSTR_PRINT
{
Text [ en-US ] = "Printing..." ;
};
String STR_STATSTR_LAYOUTINIT
{
Text [ en-US ] = "Converting..." ;
};
String STR_STATSTR_LETTER
{
Text [ en-US ] = "Letter" ;
......@@ -442,11 +397,6 @@ String STR_ABSTRACT_TITLE
Text [ en-US ] = "Abstract: " ;
};
String STR_FDLG_TEMPLATE_BUTTON
{
Text [ en-US ] = "Style" ;
};
String STR_FDLG_TEMPLATE_NAME
{
Text [ en-US ] = "separated by: " ;
......@@ -497,11 +447,6 @@ String STR_HIDE_NOTE_AUTHOR
Text [ en-US ] = "H~ide All Comments by $1";
};
String STR_DONT_ASK_AGAIN
{
Text [ en-US ] = "~Do not show warning again" ;
};
String STR_OUTLINE_NUMBERING
{
Text [ en-US ] = "Outline Numbering";
......@@ -607,11 +552,6 @@ String STR_COL
Text [ en-US ] = "Column" ;
};
String STR_SIMPLE
{
Text [ en-US ] = "Plain" ;
};
String STR_AUTHMRK_EDIT
{
......
......@@ -23,10 +23,6 @@ String STR_TEXTCOLL_HEADER
{
Text [ en-US ] = "(Paragraph Style: " ;
};
String STR_PAGEFMT_HEADER
{
Text [ en-US ] = "(Page Style: " ;
};
String STR_ILLEGAL_PAGENUM
{
Text [ en-US ] = "Page numbers cannot be applied to the current page. Even numbers can be used on left pages, odd numbers on right pages." ;
......
......@@ -85,36 +85,6 @@ String STR_FILTER_ACCDB
Text [ en-US ] = "Microsoft Access 2007 (*.accdb,*.accde)" ;
};
String ST_SAVESTART
{
Text[ en-US ] = "Save ~starting document";
};
String ST_SAVEMERGED
{
Text[ en-US ] = "Save merged document";
};
String ST_PRINT
{
Text[ en-US ] = "Print settings";
};
String ST_SENDMAIL
{
Text[ en-US ] = "E-Mail settings";
};
String ST_DEFAULTATTACHMENT
{
Text[ en-US ] = "Untitled";
};
String ST_NOSUBJECT
{
Text[ en-US ] = "No subject";
};
String ST_CONFIGUREMAIL
{
Text[ en-US ] = "In order to be able to send mail merge documents by e-mail, %PRODUCTNAME requires information about the e-mail account to be used.\n\nDo you want to enter e-mail account information now?";
......
......@@ -18,15 +18,6 @@
*/
#include "dialog.hrc"
String STR_LINKEDIT_TEXT
{
Text [ en-US ] = "Edit links" ;
};
String STR_PATH_NOT_FOUND
{
Text [ en-US ] = "The directory '%1' does not exist." ;
};
String STR_QUERY_SPELL_CONTINUE
{
Text [ en-US ] = "Continue checking at beginning of document?" ;
......
......@@ -27,10 +27,6 @@ String STR_ACCESS_DOC_DESC
{
Text [ en-US ] = "Document view";
};
String STR_ACCESS_HEADING_WITH_NUM_DESC
{
Text [ en-US ] = "Heading number $(ARG2): $(ARG1)";
};
String STR_ACCESS_HEADER_NAME
{
Text [ en-US ] = "Header $(ARG1)";
......@@ -104,9 +100,5 @@ String STR_ACCESS_DOC_WORDPROCESSING
{
Text [ en-US ] = "%PRODUCTNAME Document";
};
String STR_ACCESS_DOC_WORDPROCESSING_READONLY
{
Text [ en-US ] = "(read-only)";
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -20,16 +20,6 @@
#include "annotation.hrc"
#include "cmdid.h"
String STR_POSTIT_TODAY
{
Text [ en-US ] = "Today," ;
};
String STR_POSTIT_YESTERDAY
{
Text [ en-US ] = "Yesterday," ;
};
String STR_DELETE_ALL_NOTES
{
Text [ en-US ] = "All Comments" ;
......
......@@ -20,22 +20,6 @@
#include "envelp.hrc"
#include "globals.hrc"
// Strings ******************************************************************
String STR_DATABASE_NOT_OPENED
{
Text [ en-US ] = "Database could not be opened." ;
};
String STR_NO_DRIVERS
{
Text [ en-US ] = "No database drivers installed." ;
};
String STR_BTN_NEWDOC
{
Text [ en-US ] = "~New Doc.";
};
String STR_SENDER_TOKENS
{
Text [ en-US ] = "COMPANY;CR;FIRSTNAME; ;LASTNAME;CR;ADDRESS;CR;CITY; ;STATEPROV; ;POSTALCODE;CR;COUNTRY;CR;";
......
......@@ -558,24 +558,6 @@ String FMT_MARK_OLE
{
Text [ en-US ] = "Object" ;
};
/*--------------------------------------------------------------------
Description: text only
--------------------------------------------------------------------*/
String FMT_TEXT
{
Text = "Text" ;
};
/*--------------------------------------------------------------------
Description: global String resources
--------------------------------------------------------------------*/
String STR_ALL
{
Text [ en-US ] = "All" ;
};
String STR_INSERT
{
Text [ en-US ] = "Insert" ;
};
/*--------------------------------------------------------------------
Description: ExchangeStrings for Edit/NameFT
--------------------------------------------------------------------*/
......@@ -607,10 +589,6 @@ String STR_COMBCHRS_FT
{
Text [ en-US ] = "Ch~aracters";
};
String STR_SETNO
{
Text [ en-US ] = "Record number" ;
};
String STR_OFFSET
{
Text [ en-US ] = "O~ffset" ;
......@@ -623,14 +601,6 @@ String STR_FORMULA
{
Text [ en-US ] = "Formula" ;
};
String STR_URLPROMPT
{
Text [ en-US ] = "~URL" ;
};
String STR_ALL_DATABASE
{
Text [ en-US ] = "<All>" ;
};
String STR_CUSTOM
{
Text [ en-US ] = "Custom" ;
......
......@@ -18,20 +18,6 @@
*/
#include "frmui.hrc"
/*-----------------------------------------------------------------------
Description: V-Rel
-----------------------------------------------------------------------*/
String STR_TOPPRT
{
Text [ en-US ] = "Upper Margin" ;
};
/*-----------------------------------------------------------------------
Description: H-Rel
-----------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
Description: V-Rel character alignment
-----------------------------------------------------------------------*/
/*-----------------------------------------------------------------------
Description: character alignment for frmsh.cxx - context menu
-----------------------------------------------------------------------*/
......@@ -59,18 +45,6 @@ String STR_LINE_CENTER
{
Text [ en-US ] = "Center of line" ;
};
String STR_CHAR_TOP
{
Text [ en-US ] = "Top of character" ;
};
String STR_CHAR_BOTTOM
{
Text [ en-US ] = "Bottom of character" ;
};
String STR_CHAR_CENTER
{
Text [ en-US ] = "Center of character" ;
};
String STR_OLE_INSERT
{
Text [ en-US ] = "Insert object" ;
......
......@@ -18,18 +18,11 @@
*/
#include "globdoc.hrc"
String STR_HUMAN_SWGLOBDOC_NAME
{
Text [ en-US ] = "Master Document" ;
};
String STR_WRITER_GLOBALDOC_FULLTYPE_40
{
Text = "%PRODUCTNAME 4.0 Global Document" ;
};
String STR_WRITER_GLOBALDOC_FULLTYPE_50
{
Text = "%PRODUCTNAME 5.0 Global Document" ;
};
String STR_WRITER_GLOBALDOC_FULLTYPE
{
Text [ en-US ] = "%PRODUCTNAME %PRODUCTVERSION Master Document";
......
......@@ -50,10 +50,6 @@ String STR_INSERT_GRAPHIC
{
Text [ en-US ] = "Insert Image" ;
};
String STR_NO_ADDRESSBOOK
{
Text [ en-US ] = "An Address Book does not exist" ;
};
String STR_REDLINE_COMMENT
{
Text [ en-US ] = "Comment: " ;
......@@ -99,12 +95,6 @@ Bitmap BMP_REDLINE_FMTCOLLSET
File = "redline_inserted.png";
};
Bitmap BMP_REDLINE_AUTOFMT
{
// FIXME
File = "redline_inserted.png";
};
String STR_REDLINE_FORMATED
{
Text [ en-US ] = "Formats" ;
......
......@@ -241,18 +241,10 @@ String RID_STR_SYSTEM
{
Text [ en-US ] = "[System]";
};
String STR_MULT_INTERACT_SPELL_WARN
{
Text [ en-US ] = "The interactive spellcheck is already active\nin a different document";
};
String STR_MULT_INTERACT_HYPH_WARN
{
Text [ en-US ] = "The interactive hyphenation is already active\nin a different document";
};
String STR_SPELL_TITLE
{
Text [ en-US ] = "Spellcheck";
};
String STR_HYPH_TITLE
{
Text [ en-US ] = "Hyphenation";
......@@ -318,13 +310,4 @@ Bitmap RID_BMP_PAGE_BREAK
File = "page_break.png" ;
};
String STR_HYPERCTRL_SEL
{
Text [ en-US ] = "SEL";
};
String STR_HYPERCTRL_HYP
{
Text [ en-US ] = "HYP";
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -28,14 +28,6 @@ String STR_HUMAN_SWWEBDOC_NAME
{
Text [ en-US ] = "HTML" ;
};
String STR_WRITER_WEBDOC_FULLTYPE_40
{
Text [ en-US ] = "%PRODUCTNAME 4.0 HTML" ;
};
String STR_WRITER_WEBDOC_FULLTYPE_50
{
Text [ en-US ] = "%PRODUCTNAME 5.0 HTML" ;
};
String STR_WRITER_WEBDOC_FULLTYPE
{
Text [ en-US ] = "%PRODUCTNAME %PRODUCTVERSION HTML Document";
......
......@@ -20,11 +20,6 @@
#include "helpid.h"
#include <cmdid.h>
String ST_SEND
{
Text[ en-US ] = "Sending e-mails...";
};
String ST_CONTINUE
{
Text[ en-US ] = "~Continue";
......@@ -70,9 +65,4 @@ String ST_FAILED
Text[ en-US ] = "Sending failed";
};
String ST_TERMINATEQUERY
{
Text[ en-US ] = "There are still e-mail messages in your %PRODUCTNAME Outbox.\nWould you like to exit anyway?";
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -21,11 +21,7 @@
#include "dialog.hrc"
#define ST_INSERT 45
/* global resources */
#define STR_REG_DUPLICATE (RC_REGIONSW_BEGIN+6)
#define STR_INFO_DUPLICATE (RC_REGIONSW_BEGIN+7)
#define STR_QUERY_CONNECT (RC_REGIONSW_BEGIN+10)
#define STR_WRONG_PASSWORD (RC_REGIONSW_BEGIN+11)
......
......@@ -42,16 +42,6 @@ Bitmap RID_BMP_PROT_NO_HIDE
File = "re04.png";
};
String STR_REG_DUPLICATE
{
Text [ en-US ] = "Section name changed:" ;
};
String STR_INFO_DUPLICATE
{
Text [ en-US ] = "Duplicate section name" ;
};
String STR_QUERY_CONNECT
{
Text[ en-US ] = "A file connection will delete the contents of the current section. Connect anyway?" ;
......
......@@ -22,9 +22,6 @@
#include "rcid.hrc"
#define STR_POSTIT_TODAY (RC_ANNOTATION_BEGIN + 1)
#define STR_POSTIT_YESTERDAY (RC_ANNOTATION_BEGIN + 2)
#define STR_DELETE_ALL_NOTES (RC_ANNOTATION_BEGIN + 3)
#define STR_DELETE_AUTHOR_NOTES (RC_ANNOTATION_BEGIN + 4)
......
......@@ -48,13 +48,6 @@
#define MN_READONLY_GRAPHICTOGALLERY (RC_DOCVW_BEGIN + 24)
#define MN_READONLY_BACKGROUNDTOGALLERY (RC_DOCVW_BEGIN + 60)
#define STR_CHAIN_OK (RC_DOCVW_BEGIN + 2)
#define STR_CHAIN_NOT_EMPTY (RC_DOCVW_BEGIN + 3)
#define STR_CHAIN_IS_IN_CHAIN (RC_DOCVW_BEGIN + 4)
#define STR_CHAIN_WRONG_AREA (RC_DOCVW_BEGIN + 5)
#define STR_CHAIN_NOT_FOUND (RC_DOCVW_BEGIN + 6)
#define STR_CHAIN_SOURCE_CHAINED (RC_DOCVW_BEGIN + 7)
#define STR_CHAIN_SELF (RC_DOCVW_BEGIN + 8)
#define STR_REDLINE_INSERT (RC_DOCVW_BEGIN + 9)
#define STR_REDLINE_DELETE (RC_DOCVW_BEGIN + 10)
#define STR_REDLINE_FORMAT (RC_DOCVW_BEGIN + 11)
......
......@@ -185,34 +185,6 @@ Menu MN_READONLY_POPUP
};
};
};
String STR_CHAIN_OK
{
Text [ en-US ] = "Click the left mouse button to link the frames." ;
};
String STR_CHAIN_NOT_EMPTY
{
Text [ en-US ] = "Target frame not empty." ;
};
String STR_CHAIN_IS_IN_CHAIN
{
Text [ en-US ] = "Target frame is already linked." ;
};
String STR_CHAIN_WRONG_AREA
{
Text [ en-US ] = "The target frame for the link is in an invalid area." ;
};
String STR_CHAIN_NOT_FOUND
{
Text [ en-US ] = "Target frame not found at current position." ;
};
String STR_CHAIN_SOURCE_CHAINED
{
Text [ en-US ] = "The source frame is already the source of a link." ;
};
String STR_CHAIN_SELF
{
Text [ en-US ] = "A closed link is not possible." ;
};
String STR_REDLINE_INSERT
{
Text [ en-US ] = "Inserted" ;
......
......@@ -25,10 +25,7 @@
#define STR_CANTCREATE (RC_APP_BEGIN + 4)
#define STR_CANTOPEN (RC_APP_BEGIN + 5)
#define STR_UNBENANNT (RC_APP_BEGIN + 13)
#define STR_VERSION (RC_APP_BEGIN + 14)
#define STR_PRINT_MERGE_MACRO (RC_APP_BEGIN + 15)
#define STR_PAGE_COUNT_MACRO (RC_APP_BEGIN + 16)
// Strings for regions in the configuration
#define STR_PAGEOFFSET (RC_APP_BEGIN + 74)
......@@ -46,13 +43,11 @@
#define RID_SW_ERRHDL (RC_APP_BEGIN + 95)
#define STR_FDLG_TEMPLATE_BUTTON (RC_APP_BEGIN + 1)
#define STR_FDLG_TEMPLATE_NAME (RC_APP_BEGIN + 2)
#define STR_WRITER_DOCUMENT_FULLTYPE (RC_APP_BEGIN + 100)
#define STR_CONVERT_TEXT_TABLE (RC_APP_BEGIN + 101)
#define STR_ABSTRACT_TITLE (RC_APP_BEGIN + 102)
#define STR_DONT_ASK_AGAIN (RC_APP_BEGIN + 103)
#define STR_OUTLINE_NUMBERING (RC_APP_BEGIN + 104)
#define STR_FDLG_OUTLINE_LEVEL (RC_APP_BEGIN + 105)
#define STR_FDLG_STYLE (RC_APP_BEGIN + 106)
......@@ -78,7 +73,6 @@
#define STR_NUMERIC (RC_APP_BEGIN + 126)
#define STR_COL (RC_APP_BEGIN + 127)
#define STR_ROW (RC_APP_BEGIN + 128)
#define STR_SIMPLE (RC_APP_BEGIN + 129)
#define STR_AUTHMRK_EDIT (RC_APP_BEGIN + 130)
#define STR_AUTHMRK_INSERT (RC_APP_BEGIN + 131)
#define STR_CAPTION_TABLE (RC_APP_BEGIN + 133)
......
......@@ -25,26 +25,14 @@
#define DLG_COLUMN (RC_FRMDLG_BEGIN + 4)
#define DLG_CAPTION (RC_FRMDLG_BEGIN + 11)
#define STR_FRMUI_BORDER (RC_FRMDLG_BEGIN + 16)
#define STR_FRMUI_PATTERN (RC_FRMDLG_BEGIN + 17)
#define BMP_BEGIN (RC_FRMDLG_BEGIN + 18)
#define BMP_NOWRAP (BMP_BEGIN+5)
#define BMP_END (BMP_NOWRAP)
#define MN_BACKGROUND (BMP_END + 4)
#define MN_FOOTNOTE (BMP_END + 7)
#define STR_FRMDLG_BEGIN (MN_FOOTNOTE + 1)
#define MN_BACKGROUND (RC_FRMDLG_BEGIN + 27)
#define STR_TOPPRT (STR_FRMDLG_BEGIN + 1)
#define STR_FRMDLG_BEGIN (RC_FRMDLG_BEGIN + 31)
#define STR_COLUMN (STR_FRMDLG_BEGIN + 17)
#define STR_CHAR (STR_FRMDLG_BEGIN + 19)
#define STR_OLE_INSERT (STR_FRMDLG_BEGIN + 45)
#define STR_OLE_EDIT (STR_FRMDLG_BEGIN + 46)
......@@ -53,11 +41,8 @@
#define STR_LINE_TOP (STR_FRMDLG_BEGIN + 50)
#define STR_LINE_BOTTOM (STR_FRMDLG_BEGIN + 51)
#define STR_LINE_CENTER (STR_FRMDLG_BEGIN + 52)
#define STR_CHAR_TOP (STR_FRMDLG_BEGIN + 53)
#define STR_CHAR_BOTTOM (STR_FRMDLG_BEGIN + 54)
#define STR_CHAR_CENTER (STR_FRMDLG_BEGIN + 55)
#define FRMDLG_ACT_END STR_CHAR_CENTER
#define FRMDLG_ACT_END STR_LINE_CENTER
#if FRMDLG_ACT_END > RC_FRMDLG_END
#error Resource-Id Ueberlauf in #file, #line
......
......@@ -23,13 +23,9 @@
#include "rcid.hrc"
#define STR_HUMAN_SWGLOBDOC_NAME (RC_GLOBDOC_BEGIN + 2)
#define STR_WRITER_GLOBALDOC_FULLTYPE_40 (RC_GLOBDOC_BEGIN + 3)
#define STR_WRITER_GLOBALDOC_FULLTYPE_50 (RC_GLOBDOC_BEGIN + 4)
#define STR_WRITER_GLOBALDOC_FULLTYPE (RC_GLOBDOC_BEGIN + 5)
#define MN_GLOBAL_TEXT_POPUPMENU (RC_GLOBDOC_BEGIN + 63)
#define GLOBDOC_ACT_END MN_GLOBAL_TEXT_POPUPMENU
#define GLOBDOC_ACT_END STR_WRITER_GLOBALDOC_FULLTYPE
#if GLOBDOC_ACT_END > RC_GLOBDOC_END
#error Resource-Id Ueberlauf in #file, #line
......
......@@ -22,8 +22,6 @@
#include "rcid.hrc"
#define DLG_INSERT_BOOKMARK (RC_MISC_BEGIN + 17)
#define DLG_SORTING (RC_MISC_BEGIN + 19)
#define DLG_TAB_OUTLINE (RC_MISC_BEGIN + 29)
......
......@@ -110,9 +110,7 @@
#define RID_BMP_RIBBAR_FORMULA (STR_IMGBTN_START +58)
#define RID_BMP_RIBBAR_ERROR (STR_IMGBTN_START +59)
#define BTN_NAVI (STR_IMGBTN_START +60)
#define RC_RIBBAR_ACT_END BTN_NAVI
#define RC_RIBBAR_ACT_END RID_BMP_RIBBAR_ERROR
#if RC_RIBBAR_ACT_END > RC_RIBBAR_END
#error Resource-Id Ueberlauf in #file, #line
......
......@@ -29,7 +29,6 @@
#define STR_GRFILTER_FILTERERROR (RC_SHELLS_BEGIN + 5)
#define STR_GRFILTER_TOOBIG (RC_SHELLS_BEGIN + 6)
#define STR_INSERT_GRAPHIC (RC_SHELLS_BEGIN + 7)
#define STR_NO_ADDRESSBOOK (RC_SHELLS_BEGIN + 10)
#define STR_REDLINE_COMMENT (RC_SHELLS_BEGIN + 11)
#define STR_REDLINE_INSERTED (RC_SHELLS_BEGIN + 12)
#define STR_REDLINE_DELETED (RC_SHELLS_BEGIN + 13)
......@@ -50,7 +49,6 @@
#define BMP_REDLINE_FORMATED (RC_SHELLS_BEGIN + 26)
#define BMP_REDLINE_TABLECHG (RC_SHELLS_BEGIN + 27)
#define BMP_REDLINE_FMTCOLLSET (RC_SHELLS_BEGIN + 28)
#define BMP_REDLINE_AUTOFMT (RC_SHELLS_BEGIN + 29)
#define RID_BEZIER_TOOLBOX (RC_SHELLS_BEGIN + 33)
......
......@@ -26,9 +26,6 @@
// Strings in NumberFormatter-Listbox
#define STR_DEFINE_NUMBERFORMAT (RC_UTLUI_BEGIN + 4)
// hyperlink status bar control
#define STR_HYPERCTRL_SEL (RC_UTLUI_BEGIN + 5)
#define STR_HYPERCTRL_HYP (RC_UTLUI_BEGIN + 6)
// names of content types (RC_UTLUI_BEGIN + 7)
#define STR_CONTENT_TYPE_FIRST (RC_UTLUI_BEGIN + 8)
......@@ -201,9 +198,7 @@
// empty
#define STR_CALC_DEFAULT (RID_SW_SHELLRES_BEGIN + 10)
#define STR_CALC_ERROR (RID_SW_SHELLRES_BEGIN + 11)
#define STR_GETREFFLD_UP (RID_SW_SHELLRES_BEGIN + 12)
#define STR_GETREFFLD_DOWN (RID_SW_SHELLRES_BEGIN + 13)
#define STR_ALLPAGE_HEADFOOT (RID_SW_SHELLRES_BEGIN + 14)
// empty
#define STR_TEMPLATE_NONE (RID_SW_SHELLRES_BEGIN + 15)
#define STR_POSTIT_LINE (RID_SW_SHELLRES_BEGIN + 16)
#define STR_FIELD_FIXED (RID_SW_SHELLRES_BEGIN + 17)
......
......@@ -25,9 +25,7 @@
#define RID_WEBTOOLS_TOOLBOX (RC_WEB_BEGIN + 2)
#define RID_WEBTEXT_TOOLBOX (RC_WEB_BEGIN + 3)
#define STR_HUMAN_SWWEBDOC_NAME (RC_WEB_BEGIN + 4)
#define STR_WRITER_WEBDOC_FULLTYPE_40 (RC_WEB_BEGIN + 5)
#define RID_WEBFRAME_TOOLBOX (RC_WEB_BEGIN + 8)
#define STR_WRITER_WEBDOC_FULLTYPE_50 (RC_WEB_BEGIN + 9)
#define RID_WEBGRAPHIC_TOOLBOX (RC_WEB_BEGIN + 10)
#define RID_WEBOLE_TOOLBOX (RC_WEB_BEGIN + 11)
#define STR_WRITER_WEBDOC_FULLTYPE (RC_WEB_BEGIN + 12)
......
......@@ -22,10 +22,7 @@
#include "rcid.hrc"
#define STR_SPELL_OK (RC_LINGU_BEGIN + 2)
#define STR_HYP_OK (RC_LINGU_BEGIN + 3)
#define STR_WORD (RC_LINGU_BEGIN + 4)
#define STR_PARAGRAPH (RC_LINGU_BEGIN + 5)
#define STR_LANGSTATUS_NONE (RC_LINGU_BEGIN + 6)
#define STR_LANGSTATUS_MORE (RC_LINGU_BEGIN + 7)
#define STR_IGNORE_SELECTION (RC_LINGU_BEGIN + 8)
......
......@@ -22,18 +22,6 @@
#include "cmdid.h"
#include "helpid.h"
String STR_WORD
{
Text [ en-US ] = "Word is " ;
};
String STR_PARAGRAPH
{
Text [ en-US ] = "Paragraph is " ;
};
String STR_SPELL_OK
{
Text [ en-US ] = "The spellcheck is complete." ;
};
String STR_HYP_OK
{
Text [ en-US ] = "Hyphenation completed" ;
......
......@@ -26,8 +26,6 @@
#define STR_NUM_LEVEL (RC_VIEW_BEGIN + 3)
#define STR_NUM_OUTLINE (RC_VIEW_BEGIN + 4)
#define STR_ERROR_NOLANG (RC_VIEW_BEGIN + 6)
#define STR_EDIT_FOOTNOTE (RC_VIEW_BEGIN + 14)
#define STR_NB_REPLACED (RC_VIEW_BEGIN + 20)
......@@ -39,11 +37,6 @@
#define STR_NO_MERGE_ENTRY (RC_VIEW_BEGIN + 25)
#define STR_PRINT_TITLE (RC_VIEW_BEGIN + 26)
#define STR_PRINT_MSG (RC_VIEW_BEGIN + 27)
#define STR_PRINT_ALL (RC_VIEW_BEGIN + 28)
#define STR_PRINT_SELECTION (RC_VIEW_BEGIN + 29)
#define RID_PVIEW_TOOLBOX (RC_VIEW_BEGIN + 31)
#define STR_WEBOPTIONS (RC_VIEW_BEGIN + 32)
#define STR_TEXTOPTIONS (RC_VIEW_BEGIN + 33)
......
......@@ -61,10 +61,6 @@ String STR_NUM_OUTLINE
{
Text [ en-US ] = "Outline ";
};
String STR_ERROR_NOLANG
{
Text [ en-US ] = "No language is selected in the proofed section." ;
};
String STR_EDIT_FOOTNOTE
{
Text [ en-US ] = "Edit Footnote/Endnote" ;
......@@ -85,22 +81,6 @@ String STR_SRCVIEW_COL
{
Text [ en-US ] = "Column " ;
};
String STR_PRINT_TITLE
{
Text [ en-US ] = "Printing selection";
};
String STR_PRINT_MSG
{
Text [ en-US ] = "Do you want to print the selection or the entire document?";
};
String STR_PRINT_ALL
{
Text [ en-US ] = "All";
};
String STR_PRINT_SELECTION
{
Text [ en-US ] = "Selection";
};
String STR_SAVEAS_SRC
{
Text [ en-US ] = "~Export source..." ;
......
......@@ -39,11 +39,8 @@
#define STR_SURROUND_NONE (RC_ATTR_BEGIN + 15)
#define STR_SURROUND_THROUGHT (RC_ATTR_BEGIN + 16)
#define STR_SURROUND_PARALLEL (RC_ATTR_BEGIN + 17)
#define STR_SURROUND_COLUMN (RC_ATTR_BEGIN + 18)
#define STR_SURROUND_LEFT (RC_ATTR_BEGIN + 19)
#define STR_SURROUND_RIGHT (RC_ATTR_BEGIN + 20)
#define STR_SURROUND_INSIDE (RC_ATTR_BEGIN + 21)
#define STR_SURROUND_OUTSIDE (RC_ATTR_BEGIN + 22)
#define STR_FRM_WIDTH (RC_ATTR_BEGIN + 23)
#define STR_FRM_FIXEDHEIGHT (RC_ATTR_BEGIN + 24)
#define STR_FRM_MINHEIGHT (RC_ATTR_BEGIN + 25)
......
......@@ -98,10 +98,6 @@ String STR_SURROUND_PARALLEL
{
Text [ en-US ] = "Parallel wrap" ;
};
String STR_SURROUND_COLUMN
{
Text [ en-US ] = "Column Wrap" ;
};
String STR_SURROUND_LEFT
{
Text [ en-US ] = "Left wrap" ;
......@@ -110,14 +106,6 @@ String STR_SURROUND_RIGHT
{
Text [ en-US ] = "Right wrap" ;
};
String STR_SURROUND_INSIDE
{
Text [ en-US ] = "Inner wrap" ;
};
String STR_SURROUND_OUTSIDE
{
Text [ en-US ] = "Outer wrap" ;
};
String STR_SURROUND_ANCHORONLY
{
Text [ en-US ] = "(Anchor only)" ;
......
......@@ -57,7 +57,6 @@
#include <unotxvw.hxx>
#include <cmdid.h>
#include <helpid.h>
#include <navipi.hrc>
#include <utlui.hrc>
#include <misc.hrc>
#include <comcore.hrc>
......
......@@ -53,7 +53,6 @@
#include <cmdid.h>
#include <helpid.h>
#include <navipi.hrc>
#include <utlui.hrc>
#include <comcore.hrc>
#include <globals.hrc>
......
......@@ -63,22 +63,10 @@ String STR_CALC_ERROR
{
Text [ en-US ] = "** Expression is faulty **" ;
};
String STR_GETREFFLD_UP
{
Text [ en-US ] = "above" ;
};
String STR_GETREFFLD_DOWN
{
Text [ en-US ] = "below" ;
};
String STR_GETREFFLD_REFITEMNOTFOUND
{
Text [ en-US ] = "Error: Reference source not found" ;
};
String STR_ALLPAGE_HEADFOOT
{
Text [ en-US ] = "All" ;
};
String STR_TEMPLATE_NONE
{
Text [ en-US ] = "None" ;
......
......@@ -50,7 +50,6 @@
#include <cmdid.h>
#include <helpid.h>
#include <ribbar.hrc>
#include <navipi.hrc>
#include <utlui.hrc>
#include "access.hrc"
......
/* -*- 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 TL_CONTENT 51
#define LB_DOCS 53
#define TL_GLOBAL 55
#define TB_GLOBAL 56
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
......@@ -20,7 +20,6 @@
#include "cmdid.h"
#include "globals.hrc"
#include "utlui.hrc"
#include "navipi.hrc"
#include "helpid.h"
#include "access.hrc"
......@@ -119,14 +118,6 @@ String STR_HYPERLINK
{
Text [ en-US ] = "Insert as Hyperlink" ;
};
String STR_LINK_REGION
{
Text [ en-US ] = "Insert as Link" ;
};
String STR_COPY_REGION
{
Text [ en-US ] = "Insert as Copy" ;
};
String STR_DISPLAY
{
Text [ en-US ] = "Display" ;
......
......@@ -21,14 +21,7 @@
#include "rcid.hrc"
#define STR_DDEERROR_APP1 (RC_WRTSH_BEGIN + 2)
#define STR_DDEERROR_APP2 (RC_WRTSH_BEGIN + 3)
#define STR_DDEERROR_DATA1 (RC_WRTSH_BEGIN + 4)
#define STR_DDEERROR_DATA2 (RC_WRTSH_BEGIN + 5)
#define STR_DDEERROR_LINK1 (RC_WRTSH_BEGIN + 6)
#define STR_DDEERROR_LINK2 (RC_WRTSH_BEGIN + 7)
#define WRTSH_ACT_END STR_DDEERROR_LINK2
#define WRTSH_ACT_END RC_WRTSH_BEGIN
#if WRTSH_ACT_END > RC_WRTSH_END
#error Resource-Id Ueberlauf
......
......@@ -18,29 +18,4 @@
*/
#include "wrtsh.hrc"
String STR_DDEERROR_APP1
{
Text[ en-US ] = "Application [" ;
};
String STR_DDEERROR_APP2
{
Text[ en-US ] = "] is not responding." ;
};
String STR_DDEERROR_DATA1
{
Text[ en-US ] = "Data for [" ;
};
String STR_DDEERROR_DATA2
{
Text[ en-US ] = "] cannot be obtained" ;
};
String STR_DDEERROR_LINK1
{
Text[ en-US ] = "Link to [" ;
};
String STR_DDEERROR_LINK2
{
Text[ en-US ] = "] cannot be established" ;
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment