Changeset 750d656b42cb85adb1b76b80fdb18f0c9355853e
- Timestamp:
- 04/13/08 10:03:12
(5 months ago)
- Author:
- Rémi Duraffort <ivoire@videolan.org>
- git-committer:
- Rémi Duraffort <ivoire@videolan.org> 1208073792 +0200
- git-parent:
[506f1e4e6d3eb56bbbd50eb38c69a050ee3e82ca]
- git-author:
- Michael Ploujnikov <ploujj@gmail.com> 1208060067 -0400
- Message:
improved QT4 strings
Signed-off-by: Rémi Duraffort <ivoire@videolan.org>
-
Files:
-
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
| r990f4ea |
r750d656 |
|
| 71 | 71 | |
|---|
| 72 | 72 | SyncControls *syncW = new SyncControls( p_intf, videoTab ); |
|---|
| 73 | | mainTabW->addTab( syncW, qtr( "Synchro." ) ); |
|---|
| | 73 | mainTabW->addTab( syncW, qtr( "Synchronisation" ) ); |
|---|
| 74 | 74 | |
|---|
| 75 | 75 | if( module_Exists( p_intf, "v4l2" ) ) |
|---|
| r5122c9d |
r750d656 |
|
| 214 | 214 | buttonBox->addButton( closeButton, QDialogButtonBox::AcceptRole ); |
|---|
| 215 | 215 | |
|---|
| 216 | | updateLabel = new QLabel( qtr( "Checking for the update..." ) ); |
|---|
| | 216 | updateLabel = new QLabel( qtr( "Checking for an update..." ) ); |
|---|
| 217 | 217 | updateLabel->setWordWrap( true ); |
|---|
| 218 | 218 | |
|---|
| … | … | |
| 250 | 250 | { |
|---|
| 251 | 251 | updateButton->setEnabled( false ); |
|---|
| 252 | | msg_Dbg( p_intf, "Launching an update Request" ); |
|---|
| | 252 | msg_Dbg( p_intf, "Launching an update request" ); |
|---|
| 253 | 253 | update_Check( p_update, UpdateCallback, this ); |
|---|
| 254 | 254 | } |
|---|
| … | … | |
| 289 | 289 | b_checked = true; |
|---|
| 290 | 290 | updateButton->setText( "Download" ); |
|---|
| 291 | | updateLabel->setText( qtr( "There is a new version of vlc :\n" ) |
|---|
| | 291 | updateLabel->setText( qtr( "There is a new version of VLC :\n" ) |
|---|
| 292 | 292 | + qfu( p_update->release.psz_desc ) ); |
|---|
| 293 | 293 | } |
|---|
| 294 | 294 | else |
|---|
| 295 | | updateLabel->setText( qtr( "You have the latest version of vlc" ) ); |
|---|
| | 295 | updateLabel->setText( qtr( "You have the latest version of VLC" ) ); |
|---|
| 296 | 296 | } |
|---|
| 297 | 297 | else |
|---|