~marcustomlinson/unity-scope-youtube/install_account_service

« back to all changes in this revision

Viewing changes to include/youtube/scope/localisation.h

  • Committer: Marcus Tomlinson
  • Date: 2014-09-09 21:13:54 UTC
  • mfrom: (77.1.11 trunk)
  • Revision ID: marcus.tomlinson@canonical.com-20140909211354-6y3fd8bjxcdghtde
Merged trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
/*
 
2
 * Copyright (C) 2014 Canonical, Ltd.
 
3
 *
 
4
 * This library is free software; you can redistribute it and/or modify it under
 
5
 * the terms of version 3 of the GNU Lesser General Public License as published
 
6
 * by the Free Software Foundation.
 
7
 *
 
8
 * This library is distributed in the hope that it will be useful, but WITHOUT
 
9
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
 
10
 * FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
 
11
 * details.
 
12
 *
 
13
 * You should have received a copy of the GNU Lesser General Public License
 
14
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 
15
 *
 
16
 * Author: Pete Woods <pete.woods@canonical.com>
 
17
 */
 
18
 
 
19
#ifndef YOUTUBE_SCOPE_LOCALISATION_H_
 
20
#define YOUTUBE_SCOPE_LOCALISATION_H_
 
21
 
 
22
#include <libintl.h>
 
23
 
 
24
#include <boost/format.hpp>
 
25
 
 
26
inline char * _(const char *__msgid) {
 
27
    return dgettext(GETTEXT_PACKAGE, __msgid);
 
28
}
 
29
 
 
30
inline std::string _(const char *__msgid1, const char *__msgid2,
 
31
        unsigned long int __n) {
 
32
    boost::format fmt(dngettext(GETTEXT_PACKAGE, __msgid1, __msgid2, __n));
 
33
    return boost::str(fmt % __n);
 
34
}
 
35
 
 
36
#endif // YOUTUBE_SCOPE_LOCALISATION_H_