1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193
|
/* -*- 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 .
*/
#include "helpid.hrc"
#include <classes/resource.hrc>
String STR_MENU_ADDONS
{
Text [ en-US ] = "Add-Ons" ;
};
String STR_MENU_ADDONHELP
{
Text [ en-US ] = "Add-~On Help" ;
};
String STR_MENU_HEADFOOTALL
{
Text [ en-US ] = "All" ;
};
String STR_UPDATEDOC
{
Text [ en-US ] = "~Update" ;
};
String STR_CLOSEDOC_ANDRETURN
{
Text [ en-US ] = "~Close & Return to " ;
};
Menu POPUPMENU_TOOLBAR_QUICKCUSTOMIZATION
{
ItemList =
{
MenuItem
{
Identifier = MENUITEM_TOOLBAR_VISIBLEBUTTON;
SubMenu = Menu
{
};
Text[ en-US ] = "Visible ~Buttons";
};
MenuItem
{
Identifier = MENUITEM_TOOLBAR_CUSTOMIZETOOLBAR;
Command = ".uno:ConfigureToolboxVisible" ;
Text[ en-US ] = "~Customize Toolbar...";
};
MenuItem
{
Separator = TRUE ;
};
MenuItem
{
Identifier = MENUITEM_TOOLBAR_DOCKTOOLBAR;
Text[ en-US ] = "~Dock Toolbar" ;
};
MenuItem
{
Identifier = MENUITEM_TOOLBAR_DOCKALLTOOLBAR;
Text[ en-US ] = "Dock ~All Toolbars" ;
};
MenuItem
{
Separator = TRUE ;
};
MenuItem
{
Identifier = MENUITEM_TOOLBAR_LOCKTOOLBARPOSITION;
Text[ en-US ] = "~Lock Toolbar Position" ;
};
MenuItem
{
Identifier = MENUITEM_TOOLBAR_CLOSE;
Text[ en-US ] = "Close ~Toolbar" ;
};
};
};
String STR_SAVECOPYDOC
{
Text [ en-US ] = "Save Copy ~as..." ;
};
String STR_NODOCUMENT
{
Text [ en-US ] = "No Documents";
};
String STR_CLEAR_RECENT_FILES
{
Text [ en-US ] = "Clear List";
};
String STR_CLEAR_RECENT_FILES_HELP
{
Text [ en-US ] = "Clears the list with the most recently opened files. This action can not be undone.";
};
String STR_TOOLBAR_TITLE_ADDON
{
Text [ en-US ] = "Add-On %num%";
};
String STR_FULL_DISC_RETRY_BUTTON
{
Text [ en-US ] = "Retry" ;
};
String STR_FULL_DISC_MSG
{
Text [ en-US ] = "%PRODUCTNAME could not save important internal information due to insufficient free disk space at the following location:\n%PATH\n\nYou will not be able to continue working with %PRODUCTNAME without allocating more free disk space at that location.\n\nPress the 'Retry' button after you have allocated more free disk space to retry saving the data.\n\n" ;
};
String STR_RESTORE_TOOLBARS
{
Text [ en-US ] = "~Reset" ;
};
String STR_CORRUPT_UICFG_SHARE
{
Text [ en-US ] = "An error occurred while loading the user interface configuration data. The application will be terminated now.\nPlease try to reinstall the application." ;
};
String STR_CORRUPT_UICFG_USER
{
Text [ en-US ] = "An error occurred while loading the user interface configuration data. The application will be terminated now.\nPlease try to remove your user profile for the application." ;
};
String STR_CORRUPT_UICFG_GENERAL
{
Text [ en-US ] = "An error occurred while loading the user interface configuration data. The application will be terminated now.\nPlease try to remove your user profile for the application first or try to reinstall the application." ;
};
String STR_UNTITLED_DOCUMENT
{
Text [ en-US ] = "Untitled" ;
};
// for displaying 'Multiple Languages' in the language statusbar control
String STR_LANGSTATUS_MULTIPLE_LANGUAGES
{
Text [ en-US ] = "Multiple Languages" ;
};
String STR_LANGSTATUS_NONE
{
Text [ en-US ] = "None (Do not check spelling)" ;
};
String STR_RESET_TO_DEFAULT_LANGUAGE
{
Text [ en-US ] = "Reset to Default Language" ;
};
String STR_LANGSTATUS_MORE
{
Text [ en-US ] = "More..." ;
};
String STR_SET_LANGUAGE_FOR_SELECTION
{
Text [ en-US ] = "Set Language for Selection" ;
};
String STR_SET_LANGUAGE_FOR_PARAGRAPH
{
Text [ en-US ] = "Set Language for Paragraph" ;
};
String STR_SET_LANGUAGE_FOR_ALL_TEXT
{
Text [ en-US ] = "Set Language for all Text" ;
};
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|