1 /* -*- Mode: C++; tab-width: 4; indent-tabs-mode: nil; c-basic-offset: 4 -*- */
3 * This file is part of the LibreOffice project.
5 * This Source Code Form is subject to the terms of the Mozilla Public
6 * License, v. 2.0. If a copy of the MPL was not distributed with this
7 * file, You can obtain one at http://mozilla.org/MPL/2.0/.
9 * This file incorporates work covered by the following license notice:
11 * Licensed to the Apache Software Foundation (ASF) under one or more
12 * contributor license agreements. See the NOTICE file distributed
13 * with this work for additional information regarding copyright
14 * ownership. The ASF licenses this file to you under the Apache
15 * License, Version 2.0 (the "License"); you may not use this file
16 * except in compliance with the License. You may obtain a copy of
17 * the License at http://www.apache.org/licenses/LICENSE-2.0 .
22 #include <unotools/resmgr.hxx>
24 #define NC_(Context, String) TranslateId(Context, reinterpret_cast<char const *>(u8##String))
26 const TranslateId STR_IMPRESS_PRINT_UI_CONTENT_CHOICES[] =
28 NC_("STR_IMPRESS_PRINT_UI_CONTENT_CHOICES", "Slides"),
29 NC_("STR_IMPRESS_PRINT_UI_CONTENT_CHOICES", "Handouts"),
30 NC_("STR_IMPRESS_PRINT_UI_CONTENT_CHOICES", "Notes"),
31 NC_("STR_IMPRESS_PRINT_UI_CONTENT_CHOICES", "Outline")
34 const TranslateId STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES[] =
36 NC_("STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES", "According to layout"),
37 NC_("STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES", "1"),
38 NC_("STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES", "2"),
39 NC_("STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES", "3"),
40 NC_("STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES", "4"),
41 NC_("STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES", "6"),
42 NC_("STR_IMPRESS_PRINT_UI_SLIDESPERPAGE_CHOICES", "9")
45 const TranslateId STR_IMPRESS_PRINT_UI_ORDER_CHOICES[] =
47 NC_("STR_IMPRESS_PRINT_UI_ORDER_CHOICES", "Left to right, then down"),
48 NC_("STR_IMPRESS_PRINT_UI_ORDER_CHOICES", "Top to bottom, then right")
51 const TranslateId STR_IMPRESS_PRINT_UI_QUALITY_CHOICES[] =
53 NC_("STR_IMPRESS_PRINT_UI_QUALITY_CHOICES", "Original colors"),
54 NC_("STR_IMPRESS_PRINT_UI_QUALITY_CHOICES", "Grayscale"),
55 NC_("STR_IMPRESS_PRINT_UI_QUALITY_CHOICES", "Black & white")
58 const TranslateId STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES[] =
60 NC_("STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES", "Original size"),
61 NC_("STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES", "Fit to printable page"),
62 NC_("STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES", "Distribute on multiple sheets of paper"),
63 NC_("STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES", "Tile sheet of paper with repeated slides")
66 const TranslateId STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW[] =
68 NC_("STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW", "Original size"),
69 NC_("STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW", "Fit to printable page"),
70 NC_("STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW", "Distribute on multiple sheets of paper"),
71 NC_("STR_IMPRESS_PRINT_UI_PAGE_OPTIONS_CHOICES_DRAW", "Tile sheet of paper with repeated pages")
74 const TranslateId STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST[] =
76 NC_("STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST", "All pages"),
77 NC_("STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST", "Front sides / right pages"),
78 NC_("STR_IMPRESS_PRINT_UI_BROCHURE_INCLUDE_LIST", "Back sides / left pages")
81 const TranslateId STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE[] =
83 NC_("STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE", "All ~Slides"),
84 NC_("STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE", "S~lides:"),
85 NC_("STR_IMPRESS_PRINT_UI_PAGE_RANGE_CHOICE", "~Selection")
88 const TranslateId STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE[] =
90 NC_("STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE", "All ~Pages"),
91 NC_("STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE", "~Pages:"),
92 NC_("STR_DRAW_PRINT_UI_PAGE_RANGE_CHOICE", "~Selection")
95 /* vim:set shiftwidth=4 softtabstop=4 expandtab: */