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
|
/*
This file is part of the Grantlee template system.
Copyright (c) 2010 Stephen Kelly <steveire@gmail.com>
This library is free software; you can redistribute it and/or
modify it under the terms of the GNU Lesser General Public
License as published by the Free Software Foundation; either version
2.1 of the Licence, or (at your option) any later version.
This library is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
Lesser General Public License for more details.
You should have received a copy of the GNU Lesser General Public
License along with this library. If not, see <http://www.gnu.org/licenses/>.
*/
QCoreApplication::translate("GR_FILENAME", "Birthday");
QCoreApplication::translate("GR_FILENAME", "%n People", 0,
QCoreApplication::CodecForTr, count);
QCoreApplication::translate("GR_FILENAME", "Name", "Name of a Person");
QCoreApplication::translate("GR_FILENAME", "Name", "Name of a Book");
QCoreApplication::translate("GR_FILENAME", "%n People",
"%n people are logged in",
QCoreApplication::CodecForTr, count);
QCoreApplication::translate("GR_FILENAME", "%n file(s) copied to %1", 0,
QCoreApplication::CodecForTr, count);
QCoreApplication::translate("GR_FILENAME", "%n to %1", "Files are being copied",
QCoreApplication::CodecForTr, count);
QCoreApplication::translate("GR_FILENAME", "%n to %1",
"Files have already been copied",
QCoreApplication::CodecForTr, count);
QCoreApplication::translate("GR_FILENAME", "from %1 to %2",
"Files are being copied from %1 to %2");
QCoreApplication::translate(
"GR_FILENAME", "%1 messages at %2, fraction of total: %3. Rating : %4");
QCoreApplication::translate("GR_FILENAME", "Today");
QCoreApplication::translate("GR_FILENAME", "Today is %1");
QCoreApplication::translate("GR_FILENAME", "Today & tomorrow");
QCoreApplication::translate("GR_FILENAME", "%n people today", 0,
QCoreApplication::CodecForTr, count);
QCoreApplication::translate("GR_FILENAME", "Today is", "The current day is");
QCoreApplication::translate("GR_FILENAME", "%n people visited today",
"The number of people who have visited today",
QCoreApplication::CodecForTr, count);
QCoreApplication::translate("GR_FILENAME", "Snowman: ☃");
|