summaryrefslogtreecommitdiff
authorcniehaus <cniehaus>2003-01-02 12:40:28 (UTC)
committer cniehaus <cniehaus>2003-01-02 12:40:28 (UTC)
commite11e02a6b9d1a7528f0f1c196e55251e4e43f260 (patch) (unidiff)
tree2d459c571bec4c419326ef2eaac85c7c84039a1e
parenteb27dddf45ec6ab545ad8266706f55c9c4928a1f (diff)
downloadopie-e11e02a6b9d1a7528f0f1c196e55251e4e43f260.zip
opie-e11e02a6b9d1a7528f0f1c196e55251e4e43f260.tar.gz
opie-e11e02a6b9d1a7528f0f1c196e55251e4e43f260.tar.bz2
Fix some typos, as usual: found by Tais (tm)
- QMessageBox::warning(this, tr("OContacts"), + QMessageBox::warning(this, tr("Contacts"), - cmbCountry->insertItem( tr ( "Afganistan" ) ); + cmbCountry->insertItem( tr ( "Afghanistan" ) ); - cmbCountry->insertItem( tr ( "Antartica" ) ); + cmbCountry->insertItem( tr ( "Antarctica" ) ); - cmbCountry->insertItem( tr ( "Armania" ) ); + cmbCountry->insertItem( tr ( "Armenia" ) ); - cmbCountry->insertItem( tr ( "Boliva" ) ); + cmbCountry->insertItem( tr ( "Bolivia" ) ); - cmbCountry->insertItem( tr ( "Camaroon" ) ); + cmbCountry->insertItem( tr ( "Cameroon" ) ); - cmbCountry->insertItem( tr ( "Gahna" ) ); + cmbCountry->insertItem( tr ( "Ghana" ) ); - cmbCountry->insertItem( tr ( "Guadelupe" ) ); + cmbCountry->insertItem( tr ( "Guadeloupe" ) ); - cmbCountry->insertItem( tr ( "Guinea-bissau" ) ); + cmbCountry->insertItem( tr ( "Guinea-Bissau" ) ); - cmbCountry->insertItem( tr ( "Jamacia" ) ); + cmbCountry->insertItem( tr ( "Jamaica" ) ); - cmbCountry->insertItem( tr ( "Kribati" ) ); + cmbCountry->insertItem( tr ( "Kiribati" ) ); - cmbCountry->insertItem( tr ( "Kyrgystan" ) ); + cmbCountry->insertItem( tr ( "Kyrgyzstan" ) ); - cmbCountry->insertItem( tr ( "Palestinian Territory" ) ); + cmbCountry->insertItem( tr ( "Palestinian Sovereign Areas" ) ); - cmbCountry->insertItem( tr ( "Pitcairn" ) ); + cmbCountry->insertItem( tr ( "Pitcairn Islands" ) ); - cmbCountry->insertItem( tr ( "Viet Nam" ) ); + cmbCountry->insertItem( tr ( "Vietnam" ) );
Diffstat (more/less context) (show whitespace changes)
-rw-r--r--core/pim/addressbook/addressbook.cpp2
-rw-r--r--core/pim/addressbook/contacteditor.cpp28
2 files changed, 15 insertions, 15 deletions
diff --git a/core/pim/addressbook/addressbook.cpp b/core/pim/addressbook/addressbook.cpp
index ea87e51..8888611 100644
--- a/core/pim/addressbook/addressbook.cpp
+++ b/core/pim/addressbook/addressbook.cpp
@@ -410,25 +410,25 @@ AddressbookWindow::~AddressbookWindow()
410void AddressbookWindow::slotUpdateToolbar() 410void AddressbookWindow::slotUpdateToolbar()
411{ 411{
412 OContact ce = m_abView->currentEntry(); 412 OContact ce = m_abView->currentEntry();
413 actionMail->setEnabled( !ce.defaultEmail().isEmpty() ); 413 actionMail->setEnabled( !ce.defaultEmail().isEmpty() );
414} 414}
415 415
416void AddressbookWindow::slotListNew() 416void AddressbookWindow::slotListNew()
417{ 417{
418 OContact cnt; 418 OContact cnt;
419 if( !syncing ) { 419 if( !syncing ) {
420 editEntry( NewEntry ); 420 editEntry( NewEntry );
421 } else { 421 } else {
422 QMessageBox::warning(this, tr("OContacts"), 422 QMessageBox::warning(this, tr("Contacts"),
423 tr("Can not edit data, currently syncing")); 423 tr("Can not edit data, currently syncing"));
424 } 424 }
425} 425}
426 426
427// void AddressbookWindow::slotListView() 427// void AddressbookWindow::slotListView()
428// { 428// {
429 // m_abView -> init( abList->currentEntry() ); 429 // m_abView -> init( abList->currentEntry() );
430 // // :SX mView->sync(); 430 // // :SX mView->sync();
431 // //:SXshowView(); 431 // //:SXshowView();
432// } 432// }
433 433
434void AddressbookWindow::slotListDelete() 434void AddressbookWindow::slotListDelete()
diff --git a/core/pim/addressbook/contacteditor.cpp b/core/pim/addressbook/contacteditor.cpp
index b68d88c..c5ad0c4 100644
--- a/core/pim/addressbook/contacteditor.cpp
+++ b/core/pim/addressbook/contacteditor.cpp
@@ -225,58 +225,58 @@ void ContactEditor::init() {
225 225
226 l = new QLabel( tr( "Zip Code" ), container ); 226 l = new QLabel( tr( "Zip Code" ), container );
227 gl->addWidget( l, 4, 0 ); 227 gl->addWidget( l, 4, 0 );
228 txtZip = new QLineEdit( container ); 228 txtZip = new QLineEdit( container );
229 gl->addMultiCellWidget( txtZip, 4, 4, 1, 2 ); 229 gl->addMultiCellWidget( txtZip, 4, 4, 1, 2 );
230 230
231 l = new QLabel( tr( "Country" ), container ); 231 l = new QLabel( tr( "Country" ), container );
232 gl->addWidget( l, 5, 0 ); 232 gl->addWidget( l, 5, 0 );
233 cmbCountry = new QComboBox( TRUE, container ); 233 cmbCountry = new QComboBox( TRUE, container );
234 cmbCountry->insertItem( tr( "" ) ); 234 cmbCountry->insertItem( tr( "" ) );
235 cmbCountry->insertItem( tr ( "United States" ) ); 235 cmbCountry->insertItem( tr ( "United States" ) );
236 cmbCountry->insertItem( tr ( "United Kingdom" ) ); 236 cmbCountry->insertItem( tr ( "United Kingdom" ) );
237 cmbCountry->insertItem( tr ( "Afganistan" ) ); 237 cmbCountry->insertItem( tr ( "Afghanistan" ) );
238 cmbCountry->insertItem( tr ( "Albania" ) ); 238 cmbCountry->insertItem( tr ( "Albania" ) );
239 cmbCountry->insertItem( tr ( "Algeria" ) ); 239 cmbCountry->insertItem( tr ( "Algeria" ) );
240 cmbCountry->insertItem( tr ( "American Samoa" ) ); 240 cmbCountry->insertItem( tr ( "American Samoa" ) );
241 cmbCountry->insertItem( tr ( "Andorra" ) ); 241 cmbCountry->insertItem( tr ( "Andorra" ) );
242 cmbCountry->insertItem( tr ( "Angola" ) ); 242 cmbCountry->insertItem( tr ( "Angola" ) );
243 cmbCountry->insertItem( tr ( "Anguilla" ) ); 243 cmbCountry->insertItem( tr ( "Anguilla" ) );
244 cmbCountry->insertItem( tr ( "Antartica" ) ); 244 cmbCountry->insertItem( tr ( "Antarctica" ) );
245 cmbCountry->insertItem( tr ( "Argentina" ) ); 245 cmbCountry->insertItem( tr ( "Argentina" ) );
246 cmbCountry->insertItem( tr ( "Armania" ) ); 246 cmbCountry->insertItem( tr ( "Armenia" ) );
247 cmbCountry->insertItem( tr ( "Aruba" ) ); 247 cmbCountry->insertItem( tr ( "Aruba" ) );
248 cmbCountry->insertItem( tr ( "Australia" ) ); 248 cmbCountry->insertItem( tr ( "Australia" ) );
249 cmbCountry->insertItem( tr ( "Austria" ) ); 249 cmbCountry->insertItem( tr ( "Austria" ) );
250 cmbCountry->insertItem( tr ( "Azerbaijan" ) ); 250 cmbCountry->insertItem( tr ( "Azerbaijan" ) );
251 cmbCountry->insertItem( tr ( "Bahamas" ) ); 251 cmbCountry->insertItem( tr ( "Bahamas" ) );
252 cmbCountry->insertItem( tr ( "Bahrain" ) ); 252 cmbCountry->insertItem( tr ( "Bahrain" ) );
253 cmbCountry->insertItem( tr ( "Bangladesh" ) ); 253 cmbCountry->insertItem( tr ( "Bangladesh" ) );
254 cmbCountry->insertItem( tr ( "Barbados" ) ); 254 cmbCountry->insertItem( tr ( "Barbados" ) );
255 cmbCountry->insertItem( tr ( "Belarus" ) ); 255 cmbCountry->insertItem( tr ( "Belarus" ) );
256 cmbCountry->insertItem( tr ( "Belgium" ) ); 256 cmbCountry->insertItem( tr ( "Belgium" ) );
257 cmbCountry->insertItem( tr ( "Belize" ) ); 257 cmbCountry->insertItem( tr ( "Belize" ) );
258 cmbCountry->insertItem( tr ( "Benin" ) ); 258 cmbCountry->insertItem( tr ( "Benin" ) );
259 cmbCountry->insertItem( tr ( "Bermuda" ) ); 259 cmbCountry->insertItem( tr ( "Bermuda" ) );
260 cmbCountry->insertItem( tr ( "Bhutan" ) ); 260 cmbCountry->insertItem( tr ( "Bhutan" ) );
261 cmbCountry->insertItem( tr ( "Boliva" ) ); 261 cmbCountry->insertItem( tr ( "Bolivia" ) );
262 cmbCountry->insertItem( tr ( "Botswana" ) ); 262 cmbCountry->insertItem( tr ( "Botswana" ) );
263 cmbCountry->insertItem( tr ( "Bouvet Island" ) ); 263 cmbCountry->insertItem( tr ( "Bouvet Island" ) );
264 cmbCountry->insertItem( tr ( "Brazil" ) ); 264 cmbCountry->insertItem( tr ( "Brazil" ) );
265 cmbCountry->insertItem( tr ( "Brunei Darussalam" ) ); 265 cmbCountry->insertItem( tr ( "Brunei Darussalam" ) );
266 cmbCountry->insertItem( tr ( "Bulgaria" ) ); 266 cmbCountry->insertItem( tr ( "Bulgaria" ) );
267 cmbCountry->insertItem( tr ( "Burkina Faso" ) ); 267 cmbCountry->insertItem( tr ( "Burkina Faso" ) );
268 cmbCountry->insertItem( tr ( "Burundi" ) ); 268 cmbCountry->insertItem( tr ( "Burundi" ) );
269 cmbCountry->insertItem( tr ( "Cambodia" ) ); 269 cmbCountry->insertItem( tr ( "Cambodia" ) );
270 cmbCountry->insertItem( tr ( "Camaroon" ) ); 270 cmbCountry->insertItem( tr ( "Cameroon" ) );
271 cmbCountry->insertItem( tr ( "Canada" ) ); 271 cmbCountry->insertItem( tr ( "Canada" ) );
272 cmbCountry->insertItem( tr ( "Cape Verde" ) ); 272 cmbCountry->insertItem( tr ( "Cape Verde" ) );
273 cmbCountry->insertItem( tr ( "Cayman Islands" ) ); 273 cmbCountry->insertItem( tr ( "Cayman Islands" ) );
274 cmbCountry->insertItem( tr ( "Chad" ) ); 274 cmbCountry->insertItem( tr ( "Chad" ) );
275 cmbCountry->insertItem( tr ( "Chile" ) ); 275 cmbCountry->insertItem( tr ( "Chile" ) );
276 cmbCountry->insertItem( tr ( "China" ) ); 276 cmbCountry->insertItem( tr ( "China" ) );
277 cmbCountry->insertItem( tr ( "Christmas Island" ) ); 277 cmbCountry->insertItem( tr ( "Christmas Island" ) );
278 cmbCountry->insertItem( tr ( "Colombia" ) ); 278 cmbCountry->insertItem( tr ( "Colombia" ) );
279 cmbCountry->insertItem( tr ( "Comoros" ) ); 279 cmbCountry->insertItem( tr ( "Comoros" ) );
280 cmbCountry->insertItem( tr ( "Congo" ) ); 280 cmbCountry->insertItem( tr ( "Congo" ) );
281 cmbCountry->insertItem( tr ( "Cook Island" ) ); 281 cmbCountry->insertItem( tr ( "Cook Island" ) );
282 cmbCountry->insertItem( tr ( "Costa Rica" ) ); 282 cmbCountry->insertItem( tr ( "Costa Rica" ) );
@@ -299,55 +299,55 @@ void ContactEditor::init() {
299 cmbCountry->insertItem( tr ( "Ethiopia" ) ); 299 cmbCountry->insertItem( tr ( "Ethiopia" ) );
300 cmbCountry->insertItem( tr ( "Falkland Islands" ) ); 300 cmbCountry->insertItem( tr ( "Falkland Islands" ) );
301 cmbCountry->insertItem( tr ( "Faroe Islands" ) ); 301 cmbCountry->insertItem( tr ( "Faroe Islands" ) );
302 cmbCountry->insertItem( tr ( "Fiji" ) ); 302 cmbCountry->insertItem( tr ( "Fiji" ) );
303 cmbCountry->insertItem( tr ( "Finland" ) ); 303 cmbCountry->insertItem( tr ( "Finland" ) );
304 cmbCountry->insertItem( tr ( "France" ) ); 304 cmbCountry->insertItem( tr ( "France" ) );
305 cmbCountry->insertItem( tr ( "French Guiana" ) ); 305 cmbCountry->insertItem( tr ( "French Guiana" ) );
306 cmbCountry->insertItem( tr ( "French Polynesia" ) ); 306 cmbCountry->insertItem( tr ( "French Polynesia" ) );
307 cmbCountry->insertItem( tr ( "Gabon" ) ); 307 cmbCountry->insertItem( tr ( "Gabon" ) );
308 cmbCountry->insertItem( tr ( "Gambia" ) ); 308 cmbCountry->insertItem( tr ( "Gambia" ) );
309 cmbCountry->insertItem( tr ( "Georgia" ) ); 309 cmbCountry->insertItem( tr ( "Georgia" ) );
310 cmbCountry->insertItem( tr ( "Germany" ) ); 310 cmbCountry->insertItem( tr ( "Germany" ) );
311 cmbCountry->insertItem( tr ( "Gahna" ) ); 311 cmbCountry->insertItem( tr ( "Ghana" ) );
312 cmbCountry->insertItem( tr ( "Gibraltar" ) ); 312 cmbCountry->insertItem( tr ( "Gibraltar" ) );
313 cmbCountry->insertItem( tr ( "Greece" ) ); 313 cmbCountry->insertItem( tr ( "Greece" ) );
314 cmbCountry->insertItem( tr ( "Greenland" ) ); 314 cmbCountry->insertItem( tr ( "Greenland" ) );
315 cmbCountry->insertItem( tr ( "Grenada" ) ); 315 cmbCountry->insertItem( tr ( "Grenada" ) );
316 cmbCountry->insertItem( tr ( "Guadelupe" ) ); 316 cmbCountry->insertItem( tr ( "Guadeloupe" ) );
317 cmbCountry->insertItem( tr ( "Guam" ) ); 317 cmbCountry->insertItem( tr ( "Guam" ) );
318 cmbCountry->insertItem( tr ( "Guatemala" ) ); 318 cmbCountry->insertItem( tr ( "Guatemala" ) );
319 cmbCountry->insertItem( tr ( "Guinea" ) ); 319 cmbCountry->insertItem( tr ( "Guinea" ) );
320 cmbCountry->insertItem( tr ( "Guinea-bissau" ) ); 320 cmbCountry->insertItem( tr ( "Guinea-Bissau" ) );
321 cmbCountry->insertItem( tr ( "Guyana" ) ); 321 cmbCountry->insertItem( tr ( "Guyana" ) );
322 cmbCountry->insertItem( tr ( "Haiti" ) ); 322 cmbCountry->insertItem( tr ( "Haiti" ) );
323 cmbCountry->insertItem( tr ( "Holy See" ) ); 323 cmbCountry->insertItem( tr ( "Holy See" ) );
324 cmbCountry->insertItem( tr ( "Honduras" ) ); 324 cmbCountry->insertItem( tr ( "Honduras" ) );
325 cmbCountry->insertItem( tr ( "Hong Kong" ) ); 325 cmbCountry->insertItem( tr ( "Hong Kong" ) );
326 cmbCountry->insertItem( tr ( "Hungary" ) ); 326 cmbCountry->insertItem( tr ( "Hungary" ) );
327 cmbCountry->insertItem( tr ( "Iceland" ) ); 327 cmbCountry->insertItem( tr ( "Iceland" ) );
328 cmbCountry->insertItem( tr ( "India" ) ); 328 cmbCountry->insertItem( tr ( "India" ) );
329 cmbCountry->insertItem( tr ( "Indonesia" ) ); 329 cmbCountry->insertItem( tr ( "Indonesia" ) );
330 cmbCountry->insertItem( tr ( "Ireland" ) ); 330 cmbCountry->insertItem( tr ( "Ireland" ) );
331 cmbCountry->insertItem( tr ( "Israel" ) ); 331 cmbCountry->insertItem( tr ( "Israel" ) );
332 cmbCountry->insertItem( tr ( "Italy" ) ); 332 cmbCountry->insertItem( tr ( "Italy" ) );
333 cmbCountry->insertItem( tr ( "Jamacia" ) ); 333 cmbCountry->insertItem( tr ( "Jamaica" ) );
334 cmbCountry->insertItem( tr ( "Japan" ) ); 334 cmbCountry->insertItem( tr ( "Japan" ) );
335 cmbCountry->insertItem( tr ( "Jordan" ) ); 335 cmbCountry->insertItem( tr ( "Jordan" ) );
336 cmbCountry->insertItem( tr ( "Kazakhstan" ) ); 336 cmbCountry->insertItem( tr ( "Kazakhstan" ) );
337 cmbCountry->insertItem( tr ( "Kenya" ) ); 337 cmbCountry->insertItem( tr ( "Kenya" ) );
338 cmbCountry->insertItem( tr ( "Kribati" ) ); 338 cmbCountry->insertItem( tr ( "Kiribati" ) );
339 cmbCountry->insertItem( tr ( "Korea" ) ); 339 cmbCountry->insertItem( tr ( "Korea" ) );
340 cmbCountry->insertItem( tr ( "Kuwait" ) ); 340 cmbCountry->insertItem( tr ( "Kuwait" ) );
341 cmbCountry->insertItem( tr ( "Kyrgystan" ) ); 341 cmbCountry->insertItem( tr ( "Kyrgyzstan" ) );
342 cmbCountry->insertItem( tr ( "Laos" ) ); 342 cmbCountry->insertItem( tr ( "Laos" ) );
343 cmbCountry->insertItem( tr ( "Latvia" ) ); 343 cmbCountry->insertItem( tr ( "Latvia" ) );
344 cmbCountry->insertItem( tr ( "Lebanon" ) ); 344 cmbCountry->insertItem( tr ( "Lebanon" ) );
345 cmbCountry->insertItem( tr ( "Lesotho" ) ); 345 cmbCountry->insertItem( tr ( "Lesotho" ) );
346 cmbCountry->insertItem( tr ( "Liberia" ) ); 346 cmbCountry->insertItem( tr ( "Liberia" ) );
347 cmbCountry->insertItem( tr ( "Liechtenstein" ) ); 347 cmbCountry->insertItem( tr ( "Liechtenstein" ) );
348 cmbCountry->insertItem( tr ( "Lithuania" ) ); 348 cmbCountry->insertItem( tr ( "Lithuania" ) );
349 cmbCountry->insertItem( tr ( "Luxembourg" ) ); 349 cmbCountry->insertItem( tr ( "Luxembourg" ) );
350 cmbCountry->insertItem( tr ( "Macau" ) ); 350 cmbCountry->insertItem( tr ( "Macau" ) );
351 cmbCountry->insertItem( tr ( "Macedonia" ) ); 351 cmbCountry->insertItem( tr ( "Macedonia" ) );
352 cmbCountry->insertItem( tr ( "Madagascar" ) ); 352 cmbCountry->insertItem( tr ( "Madagascar" ) );
353 cmbCountry->insertItem( tr ( "Malawi" ) ); 353 cmbCountry->insertItem( tr ( "Malawi" ) );
@@ -373,31 +373,31 @@ void ContactEditor::init() {
373 cmbCountry->insertItem( tr ( "Nepal" ) ); 373 cmbCountry->insertItem( tr ( "Nepal" ) );
374 cmbCountry->insertItem( tr ( "Netherlands" ) ); 374 cmbCountry->insertItem( tr ( "Netherlands" ) );
375 cmbCountry->insertItem( tr ( "New Caledonia" ) ); 375 cmbCountry->insertItem( tr ( "New Caledonia" ) );
376 cmbCountry->insertItem( tr ( "New Zealand" ) ); 376 cmbCountry->insertItem( tr ( "New Zealand" ) );
377 cmbCountry->insertItem( tr ( "Nicaragua" ) ); 377 cmbCountry->insertItem( tr ( "Nicaragua" ) );
378 cmbCountry->insertItem( tr ( "Niger" ) ); 378 cmbCountry->insertItem( tr ( "Niger" ) );
379 cmbCountry->insertItem( tr ( "Nigeria" ) ); 379 cmbCountry->insertItem( tr ( "Nigeria" ) );
380 cmbCountry->insertItem( tr ( "Niue" ) ); 380 cmbCountry->insertItem( tr ( "Niue" ) );
381 cmbCountry->insertItem( tr ( "Norway" ) ); 381 cmbCountry->insertItem( tr ( "Norway" ) );
382 cmbCountry->insertItem( tr ( "Oman" ) ); 382 cmbCountry->insertItem( tr ( "Oman" ) );
383 cmbCountry->insertItem( tr ( "Pakistan" ) ); 383 cmbCountry->insertItem( tr ( "Pakistan" ) );
384 cmbCountry->insertItem( tr ( "Palau" ) ); 384 cmbCountry->insertItem( tr ( "Palau" ) );
385 cmbCountry->insertItem( tr ( "Palestinian Territory" ) ); 385 cmbCountry->insertItem( tr ( "Palestinian Sovereign Areas" ) );
386 cmbCountry->insertItem( tr ( "Panama" ) ); 386 cmbCountry->insertItem( tr ( "Panama" ) );
387 cmbCountry->insertItem( tr ( "Papua New Guinea" ) ); 387 cmbCountry->insertItem( tr ( "Papua New Guinea" ) );
388 cmbCountry->insertItem( tr ( "Paraguay" ) ); 388 cmbCountry->insertItem( tr ( "Paraguay" ) );
389 cmbCountry->insertItem( tr ( "Peru" ) ); 389 cmbCountry->insertItem( tr ( "Peru" ) );
390 cmbCountry->insertItem( tr ( "Philippines" ) ); 390 cmbCountry->insertItem( tr ( "Philippines" ) );
391 cmbCountry->insertItem( tr ( "Pitcairn" ) ); 391 cmbCountry->insertItem( tr ( "Pitcairn Islands" ) );
392 cmbCountry->insertItem( tr ( "Poland" ) ); 392 cmbCountry->insertItem( tr ( "Poland" ) );
393 cmbCountry->insertItem( tr ( "Portugal" ) ); 393 cmbCountry->insertItem( tr ( "Portugal" ) );
394 cmbCountry->insertItem( tr ( "Puerto Rico" ) ); 394 cmbCountry->insertItem( tr ( "Puerto Rico" ) );
395 cmbCountry->insertItem( tr ( "Qatar" ) ); 395 cmbCountry->insertItem( tr ( "Qatar" ) );
396 cmbCountry->insertItem( tr ( "Reunion" ) ); 396 cmbCountry->insertItem( tr ( "Reunion" ) );
397 cmbCountry->insertItem( tr ( "Romania" ) ); 397 cmbCountry->insertItem( tr ( "Romania" ) );
398 cmbCountry->insertItem( tr ( "Russia" ) ); 398 cmbCountry->insertItem( tr ( "Russia" ) );
399 cmbCountry->insertItem( tr ( "Rwanda" ) ); 399 cmbCountry->insertItem( tr ( "Rwanda" ) );
400 cmbCountry->insertItem( tr ( "Saint Lucia" ) ); 400 cmbCountry->insertItem( tr ( "Saint Lucia" ) );
401 cmbCountry->insertItem( tr ( "Samoa" ) ); 401 cmbCountry->insertItem( tr ( "Samoa" ) );
402 cmbCountry->insertItem( tr ( "San Marino" ) ); 402 cmbCountry->insertItem( tr ( "San Marino" ) );
403 cmbCountry->insertItem( tr ( "Saudi Arabia" ) ); 403 cmbCountry->insertItem( tr ( "Saudi Arabia" ) );
@@ -426,25 +426,25 @@ void ContactEditor::init() {
426 cmbCountry->insertItem( tr ( "Tokelau" ) ); 426 cmbCountry->insertItem( tr ( "Tokelau" ) );
427 cmbCountry->insertItem( tr ( "Tonga" ) ); 427 cmbCountry->insertItem( tr ( "Tonga" ) );
428 cmbCountry->insertItem( tr ( "Tunisia" ) ); 428 cmbCountry->insertItem( tr ( "Tunisia" ) );
429 cmbCountry->insertItem( tr ( "Turkey" ) ); 429 cmbCountry->insertItem( tr ( "Turkey" ) );
430 cmbCountry->insertItem( tr ( "Turkmenistan" ) ); 430 cmbCountry->insertItem( tr ( "Turkmenistan" ) );
431 cmbCountry->insertItem( tr ( "Tuvalu" ) ); 431 cmbCountry->insertItem( tr ( "Tuvalu" ) );
432 cmbCountry->insertItem( tr ( "Uganda" ) ); 432 cmbCountry->insertItem( tr ( "Uganda" ) );
433 cmbCountry->insertItem( tr ( "Ukraine" ) ); 433 cmbCountry->insertItem( tr ( "Ukraine" ) );
434 cmbCountry->insertItem( tr ( "Uruguay" ) ); 434 cmbCountry->insertItem( tr ( "Uruguay" ) );
435 cmbCountry->insertItem( tr ( "Uzbekistan" ) ); 435 cmbCountry->insertItem( tr ( "Uzbekistan" ) );
436 cmbCountry->insertItem( tr ( "Vanuatu" ) ); 436 cmbCountry->insertItem( tr ( "Vanuatu" ) );
437 cmbCountry->insertItem( tr ( "Venezuela" ) ); 437 cmbCountry->insertItem( tr ( "Venezuela" ) );
438 cmbCountry->insertItem( tr ( "Viet Nam" ) ); 438 cmbCountry->insertItem( tr ( "Vietnam" ) );
439 cmbCountry->insertItem( tr ( "Virgin Islands" ) ); 439 cmbCountry->insertItem( tr ( "Virgin Islands" ) );
440 cmbCountry->insertItem( tr ( "Western Sahara" ) ); 440 cmbCountry->insertItem( tr ( "Western Sahara" ) );
441 cmbCountry->insertItem( tr ( "Yemen" ) ); 441 cmbCountry->insertItem( tr ( "Yemen" ) );
442 cmbCountry->insertItem( tr ( "Yugoslavia" ) ); 442 cmbCountry->insertItem( tr ( "Yugoslavia" ) );
443 cmbCountry->insertItem( tr ( "Zambia" ) ); 443 cmbCountry->insertItem( tr ( "Zambia" ) );
444 cmbCountry->insertItem( tr ( "Zimbabwe" ) ); 444 cmbCountry->insertItem( tr ( "Zimbabwe" ) );
445 if (cmbCountry->listBox()!=0) 445 if (cmbCountry->listBox()!=0)
446 cmbCountry->listBox()->sort(); 446 cmbCountry->listBox()->sort();
447 447
448 cmbCountry->setMaximumWidth( 135 ); 448 cmbCountry->setMaximumWidth( 135 );
449 449
450 gl->addMultiCellWidget( cmbCountry, 5, 5, 1, 2 ); 450 gl->addMultiCellWidget( cmbCountry, 5, 5, 1, 2 );