- Timestamp:
- Jun 7, 2023, 12:17:48 AM (18 months ago)
- Location:
- trunk
- Files:
-
- 7 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/Forms/FormContacts.pas
r149 r157 383 383 procedure TFormContacts.FormShow(Sender: TObject); 384 384 begin 385 LoadFromRegistry(Context); 386 UpdateColumns; 385 387 Core.Core.Translator.TranslateComponentRecursive(Self); 386 388 Core.Core.ThemeManager1.UseTheme(Self); 387 389 Core.Core.PersistentForm1.Load(Self); 388 LoadFromRegistry(Context);389 390 ReloadList; 390 391 UpdateInterface; -
trunk/Forms/FormGenerate.lfm
r155 r157 14 14 object Label1: TLabel 15 15 Left = 19 16 Height = 2 516 Height = 26 17 17 Top = 19 18 Width = 5 218 Width = 55 19 19 Caption = 'Count:' 20 20 ParentColor = False … … 23 23 object SpinEditCount: TSpinEdit 24 24 Left = 155 25 Height = 3325 Height = 43 26 26 Top = 18 27 27 Width = 152 -
trunk/Forms/FormGenerate.pas
r149 r157 32 32 Core; 33 33 34 const 35 Names: array[0..100] of string = ('Peter', 'Susan', 'Luis', 'Jane', 'Bill', 'Jeniffer', 36 'Leo', 'Veronica', 'Stephan', 'Adele', 'Elvis', 'Caroline', 'John', 'Elisabeth', 37 'Joseph', 'Michaele', 'Bruce', 'Eva', 'Samuel', 'Olivie', 'Fred', 'Maria', 38 'Jose', 'David', 'Michael', 'Anna', 'Mary', 'Juan', 'Robert', 'Daniel', 'James', 39 'Richard', 'Paul', 'Olga', 'William', 'Sergey', 'Anita', 'Victor', 'Sarah', 40 'Mark', 'Rita', 'Martin', 'Patrick', 'Andrea', 'Vladimir', 'Barbara', 'Angela', 41 'Ivan', 'Jesus', 'Marian', 'Eric', 'Diana', 'Claudia', 'Gloria', 'Teresa', 42 'Francis', 'Andrew', 'Eduardo', 'Steven', 'Karen', 'Brian', 'Monica', 'Sonia', 43 'Alberto', 'Alex', 'Julio', 'Juana', 'Adam', 'Kevin', 'Edward', 'Roland', 44 'Cheng', 'Roman', 'Silvia', 'Marta', 'Lisa', 'Alice', 'Felix', 'Jan', 'Lucia', 45 'Janet', 'Sharon', 'Paula', 'Helen', 'Anton', 'Henry', 'Antonia', 'Adriana', 46 'Brenda', 'Nicole', 'Tatina', 'Gary', 'Dennis', 'Isaac', 'Luiz', 'Erika', 47 'Amanda', 'Donald', 'Edgar', 'Ruben', 'Jason'); 48 49 LastNames: array[0..80] of string = ('Gates', 'Simmons', 'Eliott', 'Onion', 50 'Presleys', 'Clinton', 'Dell', 'Ford', 'Miles', 'Young', 'Newton', 'Smith', 51 'Williams', 'Johnson', 'Brown', 'Jones', 'Garcia', 'Miller', 'Davis', 52 'Lopez', 'Wilson', 'Taylor', 'Moore', 'Jackson', 'Lee', 'White', 'Lewis', 53 'Robinson', 'Walker', 'King', 'Wright', 'Scott', 'Torres', 'Green', 54 'Adams', 'Nelson', 'Baker', 'Hall', 'Rivera', 'Carter', 'Evans', 'Diaz', 55 'Collins', 'Edwards', 'Stewart', 'Murphy', 'Cook', 'Ortiz', 'Morgan', 'Cooper', 56 'Peterson', 'Reed', 'Kim', 'Watson', 'Brooks', 'Wood', 'James', 'Gray', 57 'Hughes', 'Long', 'Powell', 'Jenkins', 'Perry', 'Bell', 'Butler', 'Romero', 58 'Jordan', 'Hamilton', 'Moreno', 'West', 'Cole', 'Hayes', 'Gibson', 'Medina', 59 'Owens', 'Harrison', 'Woods', 'Wells', 'Chen', 'Webb', 'Tucker'); 60 34 61 { TFormGenerate } 35 62 … … 43 70 with Contact do begin 44 71 Fields[cfVersion] := Core.Core.DefaultVcardVersion; 45 Fields[cfFirstName] := 'First ' + IntToStr(Random(10000));46 Fields[cfLastName] := 'Last ' + IntToStr(Random(10000));47 Fields[cfFullName] := 'FullName ' + IntToStr(Random(100));72 Fields[cfFirstName] := Names[Random(Length(Names))]; 73 Fields[cfLastName] := LastNames[Random(Length(LastNames))]; 74 Fields[cfFullName] := Fields[cfFirstName] + ' ' +Fields[cfLastName]; 48 75 Fields[cfTelCell] := IntToStr(Random(1000000000)); 49 76 Fields[cfTelHome] := IntToStr(Random(1000000000)); 50 77 Fields[cfTelWork] := IntToStr(Random(1000000000)); 51 78 Fields[cfNote] := 'Some contact notes'; 52 Fields[cfEmail] := 'user@email.com';53 Fields[cfEmailHome] := 'home@email.com';54 Fields[cfEmailWork] := 'home@email.com';79 Fields[cfEmail] := LowerCase(Fields[cfFirstName] + '.' + Fields[cfLastName]) + '@email.com'; 80 Fields[cfEmailHome] := Fields[cfEmail]; 81 Fields[cfEmailWork] := Fields[cfEmail]; 55 82 Fields[cfUrl] := 'https://url.com'; 56 83 Fields[cfUrlWork] := 'https://work.com'; -
trunk/Languages/vCardStudio.sv.po
r153 r157 328 328 329 329 #: tformcompare.buttoncancel.caption 330 #, fuzzy331 330 msgctxt "tformcompare.buttoncancel.caption" 332 331 msgid "Cancel" … … 390 389 391 390 #: tformcomparesidebyside.menuitem1.caption 392 #, fuzzy393 391 msgctxt "tformcomparesidebyside.menuitem1.caption" 394 392 msgid "File" … … 396 394 397 395 #: tformcomparesidebyside.menuitemclose.caption 398 #, fuzzy399 396 msgctxt "tformcomparesidebyside.menuitemclose.caption" 400 397 msgid "Close" … … 421 418 422 419 #: tformcontact.aphotoshow.caption 423 #, fuzzy424 420 msgctxt "tformcontact.aphotoshow.caption" 425 421 msgid "Show" … … 431 427 432 428 #: tformcontact.buttoncancel.caption 433 #, fuzzy434 429 msgctxt "tformcontact.buttoncancel.caption" 435 430 msgid "Cancel" … … 450 445 451 446 #: tformcontact.buttonok.caption 452 #, fuzzy453 447 msgctxt "tformcontact.buttonok.caption" 454 448 msgid "OK" … … 465 459 466 460 #: tformcontact.calendardialog1.cancelcaption 467 #, fuzzy468 461 msgctxt "tformcontact.calendardialog1.cancelcaption" 469 462 msgid "Cancel" … … 480 473 481 474 #: tformcontact.caption 482 #, fuzzy483 475 msgctxt "tformcontact.caption" 484 476 msgid "Contact" … … 798 790 799 791 #: tformcontact.openpicturedialog1.title 800 #, fuzzy801 792 msgctxt "tformcontact.openpicturedialog1.title" 802 793 msgid "Open existing file" … … 804 795 805 796 #: tformcontact.savepicturedialog1.title 806 #, fuzzy807 797 msgctxt "tformcontact.savepicturedialog1.title" 808 798 msgid "Save file as" … … 982 972 983 973 #: tformfind.buttonfind.caption 984 #, fuzzy985 974 msgctxt "tformfind.buttonfind.caption" 986 975 msgid "Find" … … 988 977 989 978 #: tformfind.caption 990 #, fuzzy991 979 msgctxt "tformfind.caption" 992 980 msgid "Find" … … 1007 995 1008 996 #: tformfindduplicity.caption 1009 #, fuzzy1010 997 msgctxt "tformfindduplicity.caption" 1011 998 msgid "Find duplicities" … … 1023 1010 1024 1011 #: tformfindduplicity.listview1.columns[1].caption 1025 #, fuzzy1026 1012 msgctxt "tformfindduplicity.listview1.columns[1].caption" 1027 1013 msgid "Contacts" … … 1037 1023 1038 1024 #: tformgenerate.caption 1039 #, fuzzy1040 1025 msgctxt "tformgenerate.caption" 1041 1026 msgid "Generate contacts" … … 1047 1032 1048 1033 #: tformimage.buttoncancel.caption 1049 #, fuzzy1050 1034 msgctxt "tformimage.buttoncancel.caption" 1051 1035 msgid "Cancel" … … 1063 1047 1064 1048 #: tformimage.buttonok.caption 1065 #, fuzzy1066 1049 msgctxt "tformimage.buttonok.caption" 1067 1050 msgid "OK" … … 1124 1107 1125 1108 #: tformnamedetails.buttoncancel.caption 1126 #, fuzzy1127 1109 msgctxt "tformnamedetails.buttoncancel.caption" 1128 1110 msgid "Cancel" … … 1130 1112 1131 1113 #: tformnamedetails.buttonok.caption 1132 #, fuzzy1133 1114 msgctxt "tformnamedetails.buttonok.caption" 1134 1115 msgid "OK" … … 1161 1142 1162 1143 #: tformnormalize.buttoncancel.caption 1163 #, fuzzy1164 1144 msgctxt "tformnormalize.buttoncancel.caption" 1165 1145 msgid "Cancel" … … 1197 1177 1198 1178 #: tformproperties.aadd.caption 1199 #, fuzzy1200 1179 msgctxt "tformproperties.aadd.caption" 1201 1180 msgid "Add" … … 1203 1182 1204 1183 #: tformproperties.aclone.caption 1205 #, fuzzy1206 1184 msgctxt "tformproperties.aclone.caption" 1207 1185 msgid "Clone" … … 1213 1191 1214 1192 #: tformproperties.amodify.caption 1215 #, fuzzy1216 1193 msgctxt "tformproperties.amodify.caption" 1217 1194 msgid "Modify" … … 1219 1196 1220 1197 #: tformproperties.aremove.caption 1221 #, fuzzy1222 1198 msgctxt "tformproperties.aremove.caption" 1223 1199 msgid "Remove" … … 1229 1205 1230 1206 #: tformproperties.aselectall.caption 1231 #, fuzzy1232 1207 msgctxt "tformproperties.aselectall.caption" 1233 1208 msgid "Select all" … … 1235 1210 1236 1211 #: tformproperties.caption 1237 #, fuzzy1238 1212 msgctxt "tformproperties.caption" 1239 1213 msgid "Contacts" … … 1241 1215 1242 1216 #: tformproperties.listview1.columns[0].caption 1243 #, fuzzy1244 1217 msgctxt "tformproperties.listview1.columns[0].caption" 1245 1218 msgid "Name" … … 1255 1228 1256 1229 #: tformproperty.buttoncancel.caption 1257 #, fuzzy1258 1230 msgctxt "tformproperty.buttoncancel.caption" 1259 1231 msgid "Cancel" … … 1261 1233 1262 1234 #: tformproperty.buttonok.caption 1263 #, fuzzy1264 1235 msgctxt "tformproperty.buttonok.caption" 1265 1236 msgid "OK" … … 1421 1392 msgid "vCard file" 1422 1393 msgstr "" 1423 -
trunk/Packages/VCard/Languages
-
Property svn:ignore
set to
*.mo
-
Property svn:ignore
set to
-
trunk/Packages/VCard/Languages/QuotedPrintable.cs.po
r148 r157 1 1 msgid "" 2 2 msgstr "" 3 "Content-Type: text/plain; charset=UTF-8\n"4 3 "Project-Id-Version: \n" 5 4 "POT-Creation-Date: \n" … … 7 6 "Last-Translator: \n" 8 7 "Language-Team: \n" 8 "Language: cs\n" 9 9 "MIME-Version: 1.0\n" 10 "Content-Type: text/plain; charset=UTF-8\n" 10 11 "Content-Transfer-Encoding: 8bit\n" 11 "Language: cs\n" 12 "X-Generator: Poedit 3.0\n" 12 "X-Generator: Poedit 3.0.1\n" 13 13 14 14 #: quotedprintable.sdecodeerror 15 #, fuzzy16 15 msgctxt "quotedprintable.sdecodeerror" 17 16 msgid "Decode error" 18 17 msgstr "Chyba dekódování" 19 -
trunk/Packages/VCard/Languages/VCard.cs.po
r148 r157 1 1 msgid "" 2 2 msgstr "" 3 "Content-Type: text/plain; charset=UTF-8\n"4 3 "Project-Id-Version: \n" 5 4 "POT-Creation-Date: \n" … … 7 6 "Last-Translator: \n" 8 7 "Language-Team: \n" 8 "Language: cs\n" 9 9 "MIME-Version: 1.0\n" 10 "Content-Type: text/plain; charset=UTF-8\n" 10 11 "Content-Transfer-Encoding: 8bit\n" 11 "Language: cs\n" 12 "X-Generator: Poedit 3.0\n" 12 "X-Generator: Poedit 3.0.1\n" 13 13 14 14 #: vcard.saim 15 #, fuzzy16 15 msgctxt "vcard.saim" 17 16 msgid "AIM" … … 19 18 20 19 #: vcard.sanniversary 21 #, fuzzy22 20 msgctxt "vcard.sanniversary" 23 21 msgid "Anniversary" … … 25 23 26 24 #: vcard.scategories 27 #, fuzzy28 25 msgctxt "vcard.scategories" 29 26 msgid "Categories" … … 31 28 32 29 #: vcard.scontacthasnoparent 33 #, fuzzy34 30 msgctxt "vcard.scontacthasnoparent" 35 31 msgid "Contact has no parent" … … 37 33 38 34 #: vcard.sdayofbirth 39 #, fuzzy40 35 msgctxt "vcard.sdayofbirth" 41 36 msgid "Day of birth" … … 43 38 44 39 #: vcard.sdepartement 45 #, fuzzy46 40 msgctxt "vcard.sdepartement" 47 41 msgid "Departement" … … 49 43 50 44 #: vcard.semail 51 #, fuzzy52 45 msgctxt "vcard.semail" 53 46 msgid "E-mail" … … 55 48 56 49 #: vcard.sexpectedproperty 57 #, fuzzy58 50 msgctxt "vcard.sexpectedproperty" 59 51 msgid "Expected contact property" … … 61 53 62 54 #: vcard.sexpectedvcardbegin 63 #, fuzzy64 55 msgctxt "vcard.sexpectedvcardbegin" 65 56 msgid "Expected vCard begin" … … 67 58 68 59 #: vcard.sfacebook 69 #, fuzzy70 60 msgctxt "vcard.sfacebook" 71 61 msgid "Facebook" … … 73 63 74 64 #: vcard.sfax 75 #, fuzzy76 65 msgctxt "vcard.sfax" 77 66 msgid "Fax" … … 79 68 80 69 #: vcard.sfieldindexnotdefined 81 #, fuzzy82 70 msgctxt "vcard.sfieldindexnotdefined" 83 71 msgid "Field index not defined" … … 85 73 86 74 #: vcard.sfieldindexredefined 87 #, object-pascal-format , fuzzy75 #, object-pascal-format 88 76 msgctxt "vcard.sfieldindexredefined" 89 77 msgid "Field index %d redefined" … … 91 79 92 80 #: vcard.sfirstname 93 #, fuzzy94 81 msgctxt "vcard.sfirstname" 95 82 msgid "First Name" … … 97 84 98 85 #: vcard.sfullname 99 #, fuzzy100 86 msgctxt "vcard.sfullname" 101 87 msgid "Full Name" … … 103 89 104 90 #: vcard.sgadugadu 105 #, fuzzy106 91 msgctxt "vcard.sgadugadu" 107 92 msgid "GaduGadu" … … 109 94 110 95 #: vcard.sgender 111 #, fuzzy112 96 msgctxt "vcard.sgender" 113 97 msgid "Gender" … … 115 99 116 100 #: vcard.sgoogletalk 117 #, fuzzy118 101 msgctxt "vcard.sgoogletalk" 119 102 msgid "Google Talk" … … 121 104 122 105 #: vcard.sgroupwise 123 #, fuzzy124 106 msgctxt "vcard.sgroupwise" 125 107 msgid "GroupWise" … … 127 109 128 110 #: vcard.shomeaddresscity 129 #, fuzzy130 111 msgctxt "vcard.shomeaddresscity" 131 112 msgid "Home address city" … … 133 114 134 115 #: vcard.shomeaddresscountry 135 #, fuzzy136 116 msgctxt "vcard.shomeaddresscountry" 137 117 msgid "Home address country" … … 139 119 140 120 #: vcard.shomeaddresspostalcode 141 #, fuzzy142 121 msgctxt "vcard.shomeaddresspostalcode" 143 122 msgid "Home address postal code" … … 145 124 146 125 #: vcard.shomeaddresspostofficebox 147 #, fuzzy148 126 msgctxt "vcard.shomeaddresspostofficebox" 149 127 msgid "Home address post office box" … … 151 129 152 130 #: vcard.shomeaddressregion 153 #, fuzzy154 131 msgctxt "vcard.shomeaddressregion" 155 132 msgid "Home address region" … … 157 134 158 135 #: vcard.shomeaddressstreet 159 #, fuzzy160 136 msgctxt "vcard.shomeaddressstreet" 161 137 msgid "Home address street" … … 163 139 164 140 #: vcard.shomeaddressstreetextended 165 #, fuzzy166 141 msgctxt "vcard.shomeaddressstreetextended" 167 142 msgid "Home address extended street" … … 169 144 170 145 #: vcard.shomeemail 171 #, fuzzy172 146 msgctxt "vcard.shomeemail" 173 147 msgid "Home E-mail" … … 175 149 176 150 #: vcard.shomefax 177 #, fuzzy178 151 msgctxt "vcard.shomefax" 179 152 msgid "Home fax" … … 181 154 182 155 #: vcard.shomemobile 183 #, fuzzy184 156 msgctxt "vcard.shomemobile" 185 157 msgid "Home mobile" … … 187 159 188 160 #: vcard.shomepager 189 #, fuzzy190 161 msgctxt "vcard.shomepager" 191 162 msgid "Home pager" … … 193 164 194 165 #: vcard.shomephone 195 #, fuzzy196 166 msgctxt "vcard.shomephone" 197 167 msgid "Home phone" … … 199 169 200 170 #: vcard.shomephone2 201 #, fuzzy202 171 msgctxt "vcard.shomephone2" 203 172 msgid "Home phone 2" … … 205 174 206 175 #: vcard.sicq 207 #, fuzzy208 176 msgctxt "vcard.sicq" 209 177 msgid "ICQ" … … 211 179 212 180 #: vcard.sinstagram 213 #, fuzzy214 181 msgctxt "vcard.sinstagram" 215 182 msgid "Instagram" … … 217 184 218 185 #: vcard.sinternetemail 219 #, fuzzy220 186 msgctxt "vcard.sinternetemail" 221 187 msgid "Internet E-mail" … … 223 189 224 190 #: vcard.sirc 225 #, fuzzy226 191 msgctxt "vcard.sirc" 227 192 msgid "IRC" … … 229 194 230 195 #: vcard.sjabber 231 #, fuzzy232 196 msgctxt "vcard.sjabber" 233 197 msgid "Jabber" … … 235 199 236 200 #: vcard.slastname 237 #, fuzzy238 201 msgctxt "vcard.slastname" 239 202 msgid "Last Name" … … 241 204 242 205 #: vcard.slasttimecontacted 243 #, fuzzy244 206 msgctxt "vcard.slasttimecontacted" 245 207 msgid "Last Time Contacted" … … 247 209 248 210 #: vcard.slinkedin 249 #, fuzzy250 211 msgctxt "vcard.slinkedin" 251 212 msgid "LinkedIn" … … 253 214 254 215 #: vcard.slogo 255 #, fuzzy256 216 msgctxt "vcard.slogo" 257 217 msgid "Logo" … … 259 219 260 220 #: vcard.smainphone 261 #, fuzzy262 221 msgctxt "vcard.smainphone" 263 222 msgid "Main phone" … … 265 224 266 225 #: vcard.smastodon 267 #, fuzzy268 226 msgctxt "vcard.smastodon" 269 227 msgid "Mastodon" … … 271 229 272 230 #: vcard.smatrix 273 #, fuzzy274 231 msgctxt "vcard.smatrix" 275 232 msgid "Matrix" … … 277 234 278 235 #: vcard.smiddlename 279 #, fuzzy280 236 msgctxt "vcard.smiddlename" 281 237 msgid "Middle Name" … … 283 239 284 240 #: vcard.smobilephone 285 #, fuzzy286 241 msgctxt "vcard.smobilephone" 287 242 msgid "Mobile phone" … … 289 244 290 245 #: vcard.smsn 291 #, fuzzy292 246 msgctxt "vcard.smsn" 293 247 msgid "MSN" … … 295 249 296 250 #: vcard.smyspace 297 #, fuzzy298 251 msgctxt "vcard.smyspace" 299 252 msgid "MySpace" … … 301 254 302 255 #: vcard.snickname 303 #, fuzzy304 256 msgctxt "vcard.snickname" 305 257 msgid "Nick name" … … 307 259 308 260 #: vcard.snote 309 #, fuzzy310 261 msgctxt "vcard.snote" 311 262 msgid "Note" … … 313 264 314 265 #: vcard.sorganization 315 #, fuzzy316 266 msgctxt "vcard.sorganization" 317 267 msgid "Organization" … … 319 269 320 270 #: vcard.spager 321 #, fuzzy322 271 msgctxt "vcard.spager" 323 272 msgid "Pager" … … 325 274 326 275 #: vcard.speertube 327 #, fuzzy328 276 msgctxt "vcard.speertube" 329 277 msgid "PeerTube" … … 331 279 332 280 #: vcard.sphoto 333 #, fuzzy334 281 msgctxt "vcard.sphoto" 335 282 msgid "Photo" … … 337 284 338 285 #: vcard.sqq 339 #, fuzzy340 286 msgctxt "vcard.sqq" 341 287 msgid "QQ" … … 343 289 344 290 #: vcard.sreddit 345 #, fuzzy346 291 msgctxt "vcard.sreddit" 347 292 msgid "Reddit" … … 349 294 350 295 #: vcard.srevision 351 #, fuzzy352 296 msgctxt "vcard.srevision" 353 297 msgid "Revision" … … 355 299 356 300 #: vcard.srole 357 #, fuzzy358 301 msgctxt "vcard.srole" 359 302 msgid "Role" … … 361 304 362 305 #: vcard.sskype 363 #, fuzzy364 306 msgctxt "vcard.sskype" 365 307 msgid "Skype" … … 367 309 368 310 #: vcard.ssnapchat 369 #, fuzzy370 311 msgctxt "vcard.ssnapchat" 371 312 msgid "Snapchat" … … 373 314 374 315 #: vcard.stelephone 375 #, fuzzy376 316 msgctxt "vcard.stelephone" 377 317 msgid "Telephone" … … 379 319 380 320 #: vcard.stimescontacted 381 #, fuzzy382 321 msgctxt "vcard.stimescontacted" 383 322 msgid "Times Contacted" … … 385 324 386 325 #: vcard.stitle 387 #, fuzzy388 326 msgctxt "vcard.stitle" 389 327 msgid "Title" … … 391 329 392 330 #: vcard.stitleafter 393 #, fuzzy394 331 msgctxt "vcard.stitleafter" 395 332 msgid "Title After" … … 397 334 398 335 #: vcard.stitlebefore 399 #, fuzzy400 336 msgctxt "vcard.stitlebefore" 401 337 msgid "Title Before" … … 403 339 404 340 #: vcard.stwitter 405 #, fuzzy406 341 msgctxt "vcard.stwitter" 407 342 msgid "Twitter" … … 409 344 410 345 #: vcard.suniqueidentifier 411 #, fuzzy412 346 msgctxt "vcard.suniqueidentifier" 413 347 msgid "Unique identifier" … … 415 349 416 350 #: vcard.sversion 417 #, fuzzy418 351 msgctxt "vcard.sversion" 419 352 msgid "Version" … … 421 354 422 355 #: vcard.svoipphone 423 #, fuzzy424 356 msgctxt "vcard.svoipphone" 425 357 msgid "VoIP phone" … … 427 359 428 360 #: vcard.swebaddress 429 #, fuzzy430 361 msgctxt "vcard.swebaddress" 431 362 msgid "Web address" … … 433 364 434 365 #: vcard.swebaddresshome 435 #, fuzzy436 366 msgctxt "vcard.swebaddresshome" 437 367 msgid "Web address home" … … 439 369 440 370 #: vcard.swebaddresswork 441 #, fuzzy442 371 msgctxt "vcard.swebaddresswork" 443 372 msgid "Web address work" … … 445 374 446 375 #: vcard.swindowslive 447 #, fuzzy448 376 msgctxt "vcard.swindowslive" 449 377 msgid "Windows Live" … … 451 379 452 380 #: vcard.sworkaddresscity 453 #, fuzzy454 381 msgctxt "vcard.sworkaddresscity" 455 382 msgid "Work address city" … … 457 384 458 385 #: vcard.sworkaddresscountry 459 #, fuzzy460 386 msgctxt "vcard.sworkaddresscountry" 461 387 msgid "Work address country" … … 463 389 464 390 #: vcard.sworkaddresspostalcode 465 #, fuzzy466 391 msgctxt "vcard.sworkaddresspostalcode" 467 392 msgid "Work address postal code" … … 469 394 470 395 #: vcard.sworkaddresspostofficebox 471 #, fuzzy472 396 msgctxt "vcard.sworkaddresspostofficebox" 473 397 msgid "Work address post office box" … … 475 399 476 400 #: vcard.sworkaddressregion 477 #, fuzzy478 401 msgctxt "vcard.sworkaddressregion" 479 402 msgid "Work address region" … … 481 404 482 405 #: vcard.sworkaddressstreet 483 #, fuzzy484 406 msgctxt "vcard.sworkaddressstreet" 485 407 msgid "Work address street" … … 487 409 488 410 #: vcard.sworkaddressstreetextended 489 #, fuzzy490 411 msgctxt "vcard.sworkaddressstreetextended" 491 412 msgid "Work address extended street" … … 493 414 494 415 #: vcard.sworkemail 495 #, fuzzy496 416 msgctxt "vcard.sworkemail" 497 417 msgid "Work E-mail" … … 499 419 500 420 #: vcard.sworkfax 501 #, fuzzy502 421 msgctxt "vcard.sworkfax" 503 422 msgid "Work fax" … … 505 424 506 425 #: vcard.sworkmobile 507 #, fuzzy508 426 msgctxt "vcard.sworkmobile" 509 427 msgid "Work mobile" … … 511 429 512 430 #: vcard.sworkpager 513 #, fuzzy514 431 msgctxt "vcard.sworkpager" 515 432 msgid "Work pager" … … 517 434 518 435 #: vcard.sworkphone 519 #, fuzzy520 436 msgctxt "vcard.sworkphone" 521 437 msgid "Work phone" … … 523 439 524 440 #: vcard.syahoo 525 #, fuzzy526 441 msgctxt "vcard.syahoo" 527 442 msgid "Yahoo!" … … 529 444 530 445 #: vcard.syoutube 531 #, fuzzy532 446 msgctxt "vcard.syoutube" 533 447 msgid "YouTube" 534 448 msgstr "YouTube" 535
Note:
See TracChangeset
for help on using the changeset viewer.