forked from amazingfate/loongoffice
Change-Id: Ie72627e708f257e7272618d90abf7b54957112b9 Reviewed-on: https://gerrit.libreoffice.org/13076 Reviewed-by: Andras Timar <andras.timar@collabora.com> Tested-by: Andras Timar <andras.timar@collabora.com>
119 lines
2.5 KiB
Plaintext
119 lines
2.5 KiB
Plaintext
/* -*- 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 "bib.hrc"
|
|
String ST_ERROR_PREFIX
|
|
{
|
|
Text [ en-US ] = "The following column names could not be assigned:\n";
|
|
};
|
|
String ST_TYPE_ARTICLE
|
|
{
|
|
Text [ en-US ] = "Article";
|
|
};
|
|
String ST_TYPE_BOOK
|
|
{
|
|
Text [ en-US ] = "Book";
|
|
};
|
|
String ST_TYPE_BOOKLET
|
|
{
|
|
Text [ en-US ] = "Brochures";
|
|
};
|
|
String ST_TYPE_CONFERENCE
|
|
{
|
|
Text [ en-US ] = "Conference proceedings";
|
|
};
|
|
String ST_TYPE_INBOOK
|
|
{
|
|
Text [ en-US ] = "Book excerpt";
|
|
};
|
|
String ST_TYPE_INCOLLECTION
|
|
{
|
|
Text [ en-US ] = "Book excerpt with title";
|
|
};
|
|
String ST_TYPE_INPROCEEDINGS
|
|
{
|
|
Text [ en-US ] = "Conference proceedings";
|
|
};
|
|
String ST_TYPE_JOURNAL
|
|
{
|
|
Text [ en-US ] = "Journal";
|
|
};
|
|
String ST_TYPE_MANUAL
|
|
{
|
|
Text [ en-US ] = "Techn. documentation";
|
|
};
|
|
String ST_TYPE_MASTERSTHESIS
|
|
{
|
|
Text [ en-US ] = "Thesis";
|
|
};
|
|
String ST_TYPE_MISC
|
|
{
|
|
Text [ en-US ] = "Miscellaneous";
|
|
};
|
|
String ST_TYPE_PHDTHESIS
|
|
{
|
|
Text [ en-US ] = "Dissertation";
|
|
};
|
|
String ST_TYPE_PROCEEDINGS
|
|
{
|
|
Text [ en-US ] = "Conference proceedings";
|
|
};
|
|
String ST_TYPE_TECHREPORT
|
|
{
|
|
Text [ en-US ] = "Research report";
|
|
};
|
|
String ST_TYPE_UNPUBLISHED
|
|
{
|
|
Text [ en-US ] = "Unpublished";
|
|
};
|
|
String ST_TYPE_EMAIL
|
|
{
|
|
Text [ en-US ] = "E-mail";
|
|
};
|
|
String ST_TYPE_WWW
|
|
{
|
|
Text [ en-US ] = "WWW document";
|
|
};
|
|
String ST_TYPE_CUSTOM1
|
|
{
|
|
Text [ en-US ] = "User-defined1";
|
|
};
|
|
String ST_TYPE_CUSTOM2
|
|
{
|
|
Text [ en-US ] = "User-defined2";
|
|
};
|
|
String ST_TYPE_CUSTOM3
|
|
{
|
|
Text [ en-US ] = "User-defined3";
|
|
};
|
|
String ST_TYPE_CUSTOM4
|
|
{
|
|
Text [ en-US ] = "User-defined4";
|
|
};
|
|
String ST_TYPE_CUSTOM5
|
|
{
|
|
Text [ en-US ] = "User-defined5";
|
|
};
|
|
String ST_TYPE_TITLE
|
|
{
|
|
Text [ en-US ] = "General";
|
|
};
|
|
/* vim:set shiftwidth=4 softtabstop=4 expandtab: */
|