Changeset 1ad81b4b7466c033997bcdb72448b496e638d06c
- Timestamp:
- 06/26/07 00:22:23
(1 year ago)
- Author:
- Christophe Mutricy <xtophe@videolan.org>
- git-committer:
- Christophe Mutricy <xtophe@videolan.org> 1182810143 +0000
- git-parent:
[ca827aa8fe039bcf6a00a565a3b5055440bb8b45]
- git-author:
- Christophe Mutricy <xtophe@videolan.org> 1182810143 +0000
- Message:
i18n fixes
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| rfa0c3cd |
r1ad81b4 |
|
| 92 | 92 | |
|---|
| 93 | 93 | /* add the tabs to the Tabwidget */ |
|---|
| 94 | | tab->addTab( NULL, _( "Information" ) ); |
|---|
| 95 | | tab->addTab( NULL, _( "Authors" ) ); |
|---|
| | 94 | tab->addTab( NULL, qtr( "Information" ) ); |
|---|
| | 95 | tab->addTab( NULL, qtr( "Authors" ) ); |
|---|
| 96 | 96 | tab->addTab( thanksEdit, qtr("Thanks") ); |
|---|
| 97 | 97 | tab->addTab( licenseEdit, qtr("Distribution License") ); |
|---|
| r4936cc7 |
r1ad81b4 |
|
| 301 | 301 | static void openDirectory( intf_thread_t* p_intf, bool pl, bool go ) |
|---|
| 302 | 302 | { |
|---|
| 303 | | QString dir = QFileDialog::getExistingDirectory ( 0, _("Open directory") ); |
|---|
| | 303 | QString dir = QFileDialog::getExistingDirectory ( 0, qtr("Open directory") ); |
|---|
| 304 | 304 | if (!dir.isEmpty()) { |
|---|
| 305 | 305 | input_item_t *p_input = input_ItemNewExt( THEPL, qtu(dir), NULL, |
|---|