summaryrefslogtreecommitdiffstats
path: root/examples/linguist/doc/snippets/doc_src_examples_hellotr.qdoc
blob: b5f931310cf538655a10180bb1d00078087a9d05 (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
28
29
30
31
32
33
34
35
36
37
38
// Copyright (C) 2016 The Qt Company Ltd.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR GFDL-1.3-no-invariants-only

//! [0]
lupdate -verbose hellotr.pro
//! [0]


//! [1]
<!DOCTYPE TS><TS>
<context>
    <name>QPushButton</name>
    <message>
        <source>Hello world!</source>
        <translation type="unfinished"></translation>
    </message>
</context>
</TS>
//! [1]


//! [2]
linguist hellotr_la.ts
//! [2]


//! [3]
<translation type='unfinished'></translation>
//! [3]


//! [4]
<translation>Orbis, te saluto!</translation>
//! [4]

//! [5]
cmake --build . --target update_translations
//! [5]