blob: 15f269b46349424fbd66441cbc823d88bf68aa05 (
plain)
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
|
/***************************************************************************
copyright : (C) 2003-2006 by Robby Stephenson
email : robby@periapsis.org
***************************************************************************/
/***************************************************************************
* *
* This program is free software; you can redistribute it and/or modify *
* it under the terms of version 2 of the GNU General Public License as *
* published by the Free Software Foundation; *
* *
***************************************************************************/
#include "tellico_strings.h"
#include <tdelocale.h>
const char* Tellico::errorLoad = I18N_NOOP("Tellico is unable to load the file - %1.");
const char* Tellico::errorWrite = I18N_NOOP("Tellico is unable to write the file - %1.");
const char* Tellico::errorUpload = I18N_NOOP("Tellico is unable to upload the file - %1.");
const char* Tellico::errorAppendType = I18N_NOOP("Only collections with the same type of entries as "
"the current one can be appended. No changes are being "
"made to the current collection.");
const char* Tellico::errorMergeType = I18N_NOOP("Only collections with the same type of entries as "
"the current one can be merged. No changes are being "
"made to the current collection.");
const char* Tellico::errorImageLoad = I18N_NOOP("Tellico is unable to load an image from the file - %1.");
|