Changeset 157


Ignore:
Timestamp:
Jun 7, 2023, 12:17:48 AM (11 months ago)
Author:
chronos
Message:
  • Modified: Improved new contact neme generation.
  • Fixed: Width of not all contacts columns was remembered.
Location:
trunk
Files:
7 edited

Legend:

Unmodified
Added
Removed
  • trunk/Forms/FormContacts.pas

    r149 r157  
    383383procedure TFormContacts.FormShow(Sender: TObject);
    384384begin
     385  LoadFromRegistry(Context);
     386  UpdateColumns;
    385387  Core.Core.Translator.TranslateComponentRecursive(Self);
    386388  Core.Core.ThemeManager1.UseTheme(Self);
    387389  Core.Core.PersistentForm1.Load(Self);
    388   LoadFromRegistry(Context);
    389390  ReloadList;
    390391  UpdateInterface;
  • trunk/Forms/FormGenerate.lfm

    r155 r157  
    1414  object Label1: TLabel
    1515    Left = 19
    16     Height = 25
     16    Height = 26
    1717    Top = 19
    18     Width = 52
     18    Width = 55
    1919    Caption = 'Count:'
    2020    ParentColor = False
     
    2323  object SpinEditCount: TSpinEdit
    2424    Left = 155
    25     Height = 33
     25    Height = 43
    2626    Top = 18
    2727    Width = 152
  • trunk/Forms/FormGenerate.pas

    r149 r157  
    3232  Core;
    3333
     34const
     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
    3461{ TFormGenerate }
    3562
     
    4370    with Contact do begin
    4471      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];
    4875      Fields[cfTelCell] := IntToStr(Random(1000000000));
    4976      Fields[cfTelHome] := IntToStr(Random(1000000000));
    5077      Fields[cfTelWork] := IntToStr(Random(1000000000));
    5178      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];
    5582      Fields[cfUrl] := 'https://url.com';
    5683      Fields[cfUrlWork] := 'https://work.com';
  • trunk/Languages/vCardStudio.sv.po

    r153 r157  
    328328
    329329#: tformcompare.buttoncancel.caption
    330 #, fuzzy
    331330msgctxt "tformcompare.buttoncancel.caption"
    332331msgid "Cancel"
     
    390389
    391390#: tformcomparesidebyside.menuitem1.caption
    392 #, fuzzy
    393391msgctxt "tformcomparesidebyside.menuitem1.caption"
    394392msgid "File"
     
    396394
    397395#: tformcomparesidebyside.menuitemclose.caption
    398 #, fuzzy
    399396msgctxt "tformcomparesidebyside.menuitemclose.caption"
    400397msgid "Close"
     
    421418
    422419#: tformcontact.aphotoshow.caption
    423 #, fuzzy
    424420msgctxt "tformcontact.aphotoshow.caption"
    425421msgid "Show"
     
    431427
    432428#: tformcontact.buttoncancel.caption
    433 #, fuzzy
    434429msgctxt "tformcontact.buttoncancel.caption"
    435430msgid "Cancel"
     
    450445
    451446#: tformcontact.buttonok.caption
    452 #, fuzzy
    453447msgctxt "tformcontact.buttonok.caption"
    454448msgid "OK"
     
    465459
    466460#: tformcontact.calendardialog1.cancelcaption
    467 #, fuzzy
    468461msgctxt "tformcontact.calendardialog1.cancelcaption"
    469462msgid "Cancel"
     
    480473
    481474#: tformcontact.caption
    482 #, fuzzy
    483475msgctxt "tformcontact.caption"
    484476msgid "Contact"
     
    798790
    799791#: tformcontact.openpicturedialog1.title
    800 #, fuzzy
    801792msgctxt "tformcontact.openpicturedialog1.title"
    802793msgid "Open existing file"
     
    804795
    805796#: tformcontact.savepicturedialog1.title
    806 #, fuzzy
    807797msgctxt "tformcontact.savepicturedialog1.title"
    808798msgid "Save file as"
     
    982972
    983973#: tformfind.buttonfind.caption
    984 #, fuzzy
    985974msgctxt "tformfind.buttonfind.caption"
    986975msgid "Find"
     
    988977
    989978#: tformfind.caption
    990 #, fuzzy
    991979msgctxt "tformfind.caption"
    992980msgid "Find"
     
    1007995
    1008996#: tformfindduplicity.caption
    1009 #, fuzzy
    1010997msgctxt "tformfindduplicity.caption"
    1011998msgid "Find duplicities"
     
    10231010
    10241011#: tformfindduplicity.listview1.columns[1].caption
    1025 #, fuzzy
    10261012msgctxt "tformfindduplicity.listview1.columns[1].caption"
    10271013msgid "Contacts"
     
    10371023
    10381024#: tformgenerate.caption
    1039 #, fuzzy
    10401025msgctxt "tformgenerate.caption"
    10411026msgid "Generate contacts"
     
    10471032
    10481033#: tformimage.buttoncancel.caption
    1049 #, fuzzy
    10501034msgctxt "tformimage.buttoncancel.caption"
    10511035msgid "Cancel"
     
    10631047
    10641048#: tformimage.buttonok.caption
    1065 #, fuzzy
    10661049msgctxt "tformimage.buttonok.caption"
    10671050msgid "OK"
     
    11241107
    11251108#: tformnamedetails.buttoncancel.caption
    1126 #, fuzzy
    11271109msgctxt "tformnamedetails.buttoncancel.caption"
    11281110msgid "Cancel"
     
    11301112
    11311113#: tformnamedetails.buttonok.caption
    1132 #, fuzzy
    11331114msgctxt "tformnamedetails.buttonok.caption"
    11341115msgid "OK"
     
    11611142
    11621143#: tformnormalize.buttoncancel.caption
    1163 #, fuzzy
    11641144msgctxt "tformnormalize.buttoncancel.caption"
    11651145msgid "Cancel"
     
    11971177
    11981178#: tformproperties.aadd.caption
    1199 #, fuzzy
    12001179msgctxt "tformproperties.aadd.caption"
    12011180msgid "Add"
     
    12031182
    12041183#: tformproperties.aclone.caption
    1205 #, fuzzy
    12061184msgctxt "tformproperties.aclone.caption"
    12071185msgid "Clone"
     
    12131191
    12141192#: tformproperties.amodify.caption
    1215 #, fuzzy
    12161193msgctxt "tformproperties.amodify.caption"
    12171194msgid "Modify"
     
    12191196
    12201197#: tformproperties.aremove.caption
    1221 #, fuzzy
    12221198msgctxt "tformproperties.aremove.caption"
    12231199msgid "Remove"
     
    12291205
    12301206#: tformproperties.aselectall.caption
    1231 #, fuzzy
    12321207msgctxt "tformproperties.aselectall.caption"
    12331208msgid "Select all"
     
    12351210
    12361211#: tformproperties.caption
    1237 #, fuzzy
    12381212msgctxt "tformproperties.caption"
    12391213msgid "Contacts"
     
    12411215
    12421216#: tformproperties.listview1.columns[0].caption
    1243 #, fuzzy
    12441217msgctxt "tformproperties.listview1.columns[0].caption"
    12451218msgid "Name"
     
    12551228
    12561229#: tformproperty.buttoncancel.caption
    1257 #, fuzzy
    12581230msgctxt "tformproperty.buttoncancel.caption"
    12591231msgid "Cancel"
     
    12611233
    12621234#: tformproperty.buttonok.caption
    1263 #, fuzzy
    12641235msgctxt "tformproperty.buttonok.caption"
    12651236msgid "OK"
     
    14211392msgid "vCard file"
    14221393msgstr ""
    1423 
  • trunk/Packages/VCard/Languages

    • Property svn:ignore set to
      *.mo
  • trunk/Packages/VCard/Languages/QuotedPrintable.cs.po

    r148 r157  
    11msgid ""
    22msgstr ""
    3 "Content-Type: text/plain; charset=UTF-8\n"
    43"Project-Id-Version: \n"
    54"POT-Creation-Date: \n"
     
    76"Last-Translator: \n"
    87"Language-Team: \n"
     8"Language: cs\n"
    99"MIME-Version: 1.0\n"
     10"Content-Type: text/plain; charset=UTF-8\n"
    1011"Content-Transfer-Encoding: 8bit\n"
    11 "Language: cs\n"
    12 "X-Generator: Poedit 3.0\n"
     12"X-Generator: Poedit 3.0.1\n"
    1313
    1414#: quotedprintable.sdecodeerror
    15 #, fuzzy
    1615msgctxt "quotedprintable.sdecodeerror"
    1716msgid "Decode error"
    1817msgstr "Chyba dekódování"
    19 
  • trunk/Packages/VCard/Languages/VCard.cs.po

    r148 r157  
    11msgid ""
    22msgstr ""
    3 "Content-Type: text/plain; charset=UTF-8\n"
    43"Project-Id-Version: \n"
    54"POT-Creation-Date: \n"
     
    76"Last-Translator: \n"
    87"Language-Team: \n"
     8"Language: cs\n"
    99"MIME-Version: 1.0\n"
     10"Content-Type: text/plain; charset=UTF-8\n"
    1011"Content-Transfer-Encoding: 8bit\n"
    11 "Language: cs\n"
    12 "X-Generator: Poedit 3.0\n"
     12"X-Generator: Poedit 3.0.1\n"
    1313
    1414#: vcard.saim
    15 #, fuzzy
    1615msgctxt "vcard.saim"
    1716msgid "AIM"
     
    1918
    2019#: vcard.sanniversary
    21 #, fuzzy
    2220msgctxt "vcard.sanniversary"
    2321msgid "Anniversary"
     
    2523
    2624#: vcard.scategories
    27 #, fuzzy
    2825msgctxt "vcard.scategories"
    2926msgid "Categories"
     
    3128
    3229#: vcard.scontacthasnoparent
    33 #, fuzzy
    3430msgctxt "vcard.scontacthasnoparent"
    3531msgid "Contact has no parent"
     
    3733
    3834#: vcard.sdayofbirth
    39 #, fuzzy
    4035msgctxt "vcard.sdayofbirth"
    4136msgid "Day of birth"
     
    4338
    4439#: vcard.sdepartement
    45 #, fuzzy
    4640msgctxt "vcard.sdepartement"
    4741msgid "Departement"
     
    4943
    5044#: vcard.semail
    51 #, fuzzy
    5245msgctxt "vcard.semail"
    5346msgid "E-mail"
     
    5548
    5649#: vcard.sexpectedproperty
    57 #, fuzzy
    5850msgctxt "vcard.sexpectedproperty"
    5951msgid "Expected contact property"
     
    6153
    6254#: vcard.sexpectedvcardbegin
    63 #, fuzzy
    6455msgctxt "vcard.sexpectedvcardbegin"
    6556msgid "Expected vCard begin"
     
    6758
    6859#: vcard.sfacebook
    69 #, fuzzy
    7060msgctxt "vcard.sfacebook"
    7161msgid "Facebook"
     
    7363
    7464#: vcard.sfax
    75 #, fuzzy
    7665msgctxt "vcard.sfax"
    7766msgid "Fax"
     
    7968
    8069#: vcard.sfieldindexnotdefined
    81 #, fuzzy
    8270msgctxt "vcard.sfieldindexnotdefined"
    8371msgid "Field index not defined"
     
    8573
    8674#: vcard.sfieldindexredefined
    87 #, object-pascal-format, fuzzy
     75#, object-pascal-format
    8876msgctxt "vcard.sfieldindexredefined"
    8977msgid "Field index %d redefined"
     
    9179
    9280#: vcard.sfirstname
    93 #, fuzzy
    9481msgctxt "vcard.sfirstname"
    9582msgid "First Name"
     
    9784
    9885#: vcard.sfullname
    99 #, fuzzy
    10086msgctxt "vcard.sfullname"
    10187msgid "Full Name"
     
    10389
    10490#: vcard.sgadugadu
    105 #, fuzzy
    10691msgctxt "vcard.sgadugadu"
    10792msgid "GaduGadu"
     
    10994
    11095#: vcard.sgender
    111 #, fuzzy
    11296msgctxt "vcard.sgender"
    11397msgid "Gender"
     
    11599
    116100#: vcard.sgoogletalk
    117 #, fuzzy
    118101msgctxt "vcard.sgoogletalk"
    119102msgid "Google Talk"
     
    121104
    122105#: vcard.sgroupwise
    123 #, fuzzy
    124106msgctxt "vcard.sgroupwise"
    125107msgid "GroupWise"
     
    127109
    128110#: vcard.shomeaddresscity
    129 #, fuzzy
    130111msgctxt "vcard.shomeaddresscity"
    131112msgid "Home address city"
     
    133114
    134115#: vcard.shomeaddresscountry
    135 #, fuzzy
    136116msgctxt "vcard.shomeaddresscountry"
    137117msgid "Home address country"
     
    139119
    140120#: vcard.shomeaddresspostalcode
    141 #, fuzzy
    142121msgctxt "vcard.shomeaddresspostalcode"
    143122msgid "Home address postal code"
     
    145124
    146125#: vcard.shomeaddresspostofficebox
    147 #, fuzzy
    148126msgctxt "vcard.shomeaddresspostofficebox"
    149127msgid "Home address post office box"
     
    151129
    152130#: vcard.shomeaddressregion
    153 #, fuzzy
    154131msgctxt "vcard.shomeaddressregion"
    155132msgid "Home address region"
     
    157134
    158135#: vcard.shomeaddressstreet
    159 #, fuzzy
    160136msgctxt "vcard.shomeaddressstreet"
    161137msgid "Home address street"
     
    163139
    164140#: vcard.shomeaddressstreetextended
    165 #, fuzzy
    166141msgctxt "vcard.shomeaddressstreetextended"
    167142msgid "Home address extended street"
     
    169144
    170145#: vcard.shomeemail
    171 #, fuzzy
    172146msgctxt "vcard.shomeemail"
    173147msgid "Home E-mail"
     
    175149
    176150#: vcard.shomefax
    177 #, fuzzy
    178151msgctxt "vcard.shomefax"
    179152msgid "Home fax"
     
    181154
    182155#: vcard.shomemobile
    183 #, fuzzy
    184156msgctxt "vcard.shomemobile"
    185157msgid "Home mobile"
     
    187159
    188160#: vcard.shomepager
    189 #, fuzzy
    190161msgctxt "vcard.shomepager"
    191162msgid "Home pager"
     
    193164
    194165#: vcard.shomephone
    195 #, fuzzy
    196166msgctxt "vcard.shomephone"
    197167msgid "Home phone"
     
    199169
    200170#: vcard.shomephone2
    201 #, fuzzy
    202171msgctxt "vcard.shomephone2"
    203172msgid "Home phone 2"
     
    205174
    206175#: vcard.sicq
    207 #, fuzzy
    208176msgctxt "vcard.sicq"
    209177msgid "ICQ"
     
    211179
    212180#: vcard.sinstagram
    213 #, fuzzy
    214181msgctxt "vcard.sinstagram"
    215182msgid "Instagram"
     
    217184
    218185#: vcard.sinternetemail
    219 #, fuzzy
    220186msgctxt "vcard.sinternetemail"
    221187msgid "Internet E-mail"
     
    223189
    224190#: vcard.sirc
    225 #, fuzzy
    226191msgctxt "vcard.sirc"
    227192msgid "IRC"
     
    229194
    230195#: vcard.sjabber
    231 #, fuzzy
    232196msgctxt "vcard.sjabber"
    233197msgid "Jabber"
     
    235199
    236200#: vcard.slastname
    237 #, fuzzy
    238201msgctxt "vcard.slastname"
    239202msgid "Last Name"
     
    241204
    242205#: vcard.slasttimecontacted
    243 #, fuzzy
    244206msgctxt "vcard.slasttimecontacted"
    245207msgid "Last Time Contacted"
     
    247209
    248210#: vcard.slinkedin
    249 #, fuzzy
    250211msgctxt "vcard.slinkedin"
    251212msgid "LinkedIn"
     
    253214
    254215#: vcard.slogo
    255 #, fuzzy
    256216msgctxt "vcard.slogo"
    257217msgid "Logo"
     
    259219
    260220#: vcard.smainphone
    261 #, fuzzy
    262221msgctxt "vcard.smainphone"
    263222msgid "Main phone"
     
    265224
    266225#: vcard.smastodon
    267 #, fuzzy
    268226msgctxt "vcard.smastodon"
    269227msgid "Mastodon"
     
    271229
    272230#: vcard.smatrix
    273 #, fuzzy
    274231msgctxt "vcard.smatrix"
    275232msgid "Matrix"
     
    277234
    278235#: vcard.smiddlename
    279 #, fuzzy
    280236msgctxt "vcard.smiddlename"
    281237msgid "Middle Name"
     
    283239
    284240#: vcard.smobilephone
    285 #, fuzzy
    286241msgctxt "vcard.smobilephone"
    287242msgid "Mobile phone"
     
    289244
    290245#: vcard.smsn
    291 #, fuzzy
    292246msgctxt "vcard.smsn"
    293247msgid "MSN"
     
    295249
    296250#: vcard.smyspace
    297 #, fuzzy
    298251msgctxt "vcard.smyspace"
    299252msgid "MySpace"
     
    301254
    302255#: vcard.snickname
    303 #, fuzzy
    304256msgctxt "vcard.snickname"
    305257msgid "Nick name"
     
    307259
    308260#: vcard.snote
    309 #, fuzzy
    310261msgctxt "vcard.snote"
    311262msgid "Note"
     
    313264
    314265#: vcard.sorganization
    315 #, fuzzy
    316266msgctxt "vcard.sorganization"
    317267msgid "Organization"
     
    319269
    320270#: vcard.spager
    321 #, fuzzy
    322271msgctxt "vcard.spager"
    323272msgid "Pager"
     
    325274
    326275#: vcard.speertube
    327 #, fuzzy
    328276msgctxt "vcard.speertube"
    329277msgid "PeerTube"
     
    331279
    332280#: vcard.sphoto
    333 #, fuzzy
    334281msgctxt "vcard.sphoto"
    335282msgid "Photo"
     
    337284
    338285#: vcard.sqq
    339 #, fuzzy
    340286msgctxt "vcard.sqq"
    341287msgid "QQ"
     
    343289
    344290#: vcard.sreddit
    345 #, fuzzy
    346291msgctxt "vcard.sreddit"
    347292msgid "Reddit"
     
    349294
    350295#: vcard.srevision
    351 #, fuzzy
    352296msgctxt "vcard.srevision"
    353297msgid "Revision"
     
    355299
    356300#: vcard.srole
    357 #, fuzzy
    358301msgctxt "vcard.srole"
    359302msgid "Role"
     
    361304
    362305#: vcard.sskype
    363 #, fuzzy
    364306msgctxt "vcard.sskype"
    365307msgid "Skype"
     
    367309
    368310#: vcard.ssnapchat
    369 #, fuzzy
    370311msgctxt "vcard.ssnapchat"
    371312msgid "Snapchat"
     
    373314
    374315#: vcard.stelephone
    375 #, fuzzy
    376316msgctxt "vcard.stelephone"
    377317msgid "Telephone"
     
    379319
    380320#: vcard.stimescontacted
    381 #, fuzzy
    382321msgctxt "vcard.stimescontacted"
    383322msgid "Times Contacted"
     
    385324
    386325#: vcard.stitle
    387 #, fuzzy
    388326msgctxt "vcard.stitle"
    389327msgid "Title"
     
    391329
    392330#: vcard.stitleafter
    393 #, fuzzy
    394331msgctxt "vcard.stitleafter"
    395332msgid "Title After"
     
    397334
    398335#: vcard.stitlebefore
    399 #, fuzzy
    400336msgctxt "vcard.stitlebefore"
    401337msgid "Title Before"
     
    403339
    404340#: vcard.stwitter
    405 #, fuzzy
    406341msgctxt "vcard.stwitter"
    407342msgid "Twitter"
     
    409344
    410345#: vcard.suniqueidentifier
    411 #, fuzzy
    412346msgctxt "vcard.suniqueidentifier"
    413347msgid "Unique identifier"
     
    415349
    416350#: vcard.sversion
    417 #, fuzzy
    418351msgctxt "vcard.sversion"
    419352msgid "Version"
     
    421354
    422355#: vcard.svoipphone
    423 #, fuzzy
    424356msgctxt "vcard.svoipphone"
    425357msgid "VoIP phone"
     
    427359
    428360#: vcard.swebaddress
    429 #, fuzzy
    430361msgctxt "vcard.swebaddress"
    431362msgid "Web address"
     
    433364
    434365#: vcard.swebaddresshome
    435 #, fuzzy
    436366msgctxt "vcard.swebaddresshome"
    437367msgid "Web address home"
     
    439369
    440370#: vcard.swebaddresswork
    441 #, fuzzy
    442371msgctxt "vcard.swebaddresswork"
    443372msgid "Web address work"
     
    445374
    446375#: vcard.swindowslive
    447 #, fuzzy
    448376msgctxt "vcard.swindowslive"
    449377msgid "Windows Live"
     
    451379
    452380#: vcard.sworkaddresscity
    453 #, fuzzy
    454381msgctxt "vcard.sworkaddresscity"
    455382msgid "Work address city"
     
    457384
    458385#: vcard.sworkaddresscountry
    459 #, fuzzy
    460386msgctxt "vcard.sworkaddresscountry"
    461387msgid "Work address country"
     
    463389
    464390#: vcard.sworkaddresspostalcode
    465 #, fuzzy
    466391msgctxt "vcard.sworkaddresspostalcode"
    467392msgid "Work address postal code"
     
    469394
    470395#: vcard.sworkaddresspostofficebox
    471 #, fuzzy
    472396msgctxt "vcard.sworkaddresspostofficebox"
    473397msgid "Work address post office box"
     
    475399
    476400#: vcard.sworkaddressregion
    477 #, fuzzy
    478401msgctxt "vcard.sworkaddressregion"
    479402msgid "Work address region"
     
    481404
    482405#: vcard.sworkaddressstreet
    483 #, fuzzy
    484406msgctxt "vcard.sworkaddressstreet"
    485407msgid "Work address street"
     
    487409
    488410#: vcard.sworkaddressstreetextended
    489 #, fuzzy
    490411msgctxt "vcard.sworkaddressstreetextended"
    491412msgid "Work address extended street"
     
    493414
    494415#: vcard.sworkemail
    495 #, fuzzy
    496416msgctxt "vcard.sworkemail"
    497417msgid "Work E-mail"
     
    499419
    500420#: vcard.sworkfax
    501 #, fuzzy
    502421msgctxt "vcard.sworkfax"
    503422msgid "Work fax"
     
    505424
    506425#: vcard.sworkmobile
    507 #, fuzzy
    508426msgctxt "vcard.sworkmobile"
    509427msgid "Work mobile"
     
    511429
    512430#: vcard.sworkpager
    513 #, fuzzy
    514431msgctxt "vcard.sworkpager"
    515432msgid "Work pager"
     
    517434
    518435#: vcard.sworkphone
    519 #, fuzzy
    520436msgctxt "vcard.sworkphone"
    521437msgid "Work phone"
     
    523439
    524440#: vcard.syahoo
    525 #, fuzzy
    526441msgctxt "vcard.syahoo"
    527442msgid "Yahoo!"
     
    529444
    530445#: vcard.syoutube
    531 #, fuzzy
    532446msgctxt "vcard.syoutube"
    533447msgid "YouTube"
    534448msgstr "YouTube"
    535 
Note: See TracChangeset for help on using the changeset viewer.