From 9ac75f7f853fb1720ace1761b2ef28d96864a0c5 Mon Sep 17 00:00:00 2001 From: Peter Sanchez Date: Mon, 10 Mar 2025 17:40:54 -0600 Subject: [PATCH] Increase URL Title size from 150 characters to 500. Implements: https://todo.code.netlandish.com/~netlandish/links/101 --- api/graph/schema.resolvers.go | 12 +- cmd/migrations.go | 7 + core/import.go | 4 +- core/inputs.go | 2 +- helpers.go | 4 +- internal/translations/catalog.go | 2366 +++++++++-------- .../translations/locales/en/out.gotext.json | 13 +- .../locales/es/messages.gotext.json | 11 +- .../translations/locales/es/out.gotext.json | 11 +- migrations/0005_increase_url_title.down.sql | 2 + migrations/0005_increase_url_title.up.sql | 2 + models/schema.sql | 4 +- 12 files changed, 1235 insertions(+), 1203 deletions(-) create mode 100644 migrations/0005_increase_url_title.down.sql create mode 100644 migrations/0005_increase_url_title.up.sql diff --git a/api/graph/schema.resolvers.go b/api/graph/schema.resolvers.go index c708a12..6a3ae3b 100644 --- a/api/graph/schema.resolvers.go +++ b/api/graph/schema.resolvers.go @@ -431,8 +431,8 @@ func (r *mutationResolver) AddLink(ctx context.Context, input *model.LinkInput) validator.Expect(input.Title != "", "%s", lt.Translate("Title is required.")). WithField("title"). WithCode(valid.ErrValidationCode) - validator.Expect(len(input.Title) < 150, - "%s", lt.Translate("Title may not exceed 150 characters")). + validator.Expect(len(input.Title) < 500, + "%s", lt.Translate("Title may not exceed 500 characters")). WithField("title"). WithCode(valid.ErrValidationCode) @@ -600,8 +600,8 @@ func (r *mutationResolver) UpdateLink(ctx context.Context, input *model.UpdateLi validator.Expect(*input.Title != "", "%s", lt.Translate("Title is required.")). WithField("title"). WithCode(valid.ErrValidationCode) - validator.Expect(len(*input.Title) < 150, - "%s", lt.Translate("Title may not exceed 150 characters")). + validator.Expect(len(*input.Title) < 500, + "%s", lt.Translate("Title may not exceed 500 characters")). WithField("title"). WithCode(valid.ErrValidationCode) } @@ -916,8 +916,8 @@ func (r *mutationResolver) AddNote(ctx context.Context, input *model.NoteInput) validator.Expect(input.Title != "", "%s", lt.Translate("Title is required.")). WithField("title"). WithCode(valid.ErrValidationCode) - validator.Expect(len(input.Title) < 150, - "%s", lt.Translate("Title may not exceed 150 characters")). + validator.Expect(len(input.Title) < 500, + "%s", lt.Translate("Title may not exceed 500 characters")). WithField("title"). WithCode(valid.ErrValidationCode) validator.Expect(input.Description != "", "%s", lt.Translate("Description is required.")). diff --git a/cmd/migrations.go b/cmd/migrations.go index fa2c179..05c7bc5 100644 --- a/cmd/migrations.go +++ b/cmd/migrations.go @@ -52,5 +52,12 @@ func GetMigrations() []migrate.Migration { 0, links.MigrateFS, ), + migrate.FSFileMigration( + "0005_increase_url_title", + "migrations/0005_increase_url_title.up.sql", + "migrations/0005_increase_url_title.down.sql", + 0, + links.MigrateFS, + ), } } diff --git a/core/import.go b/core/import.go index 759c5b0..27c844d 100644 --- a/core/import.go +++ b/core/import.go @@ -306,8 +306,8 @@ func processOrgLinks(obj importObj, baseURLMap map[string]int, } title := obj.GetTitle() - if len(title) > 150 { - title = title[:146] + "..." + if len(title) > 500 { + title = title[:496] + "..." } return &models.OrgLink{ Title: links.SanitizeUTF8(title), diff --git a/core/inputs.go b/core/inputs.go index 6a17cb7..4c05ca6 100644 --- a/core/inputs.go +++ b/core/inputs.go @@ -100,7 +100,7 @@ func (a *AddMemberForm) Validate(c echo.Context) error { // LinkForm ... type LinkForm struct { URL string `form:"url" validate:"required,http_url"` - Title string `form:"title" validate:"required"` + Title string `form:"title" validate:"required,max=500"` Description string `form:"description"` OrgSlug string `form:"org_slug" validate:"required"` Visibility string `form:"visibility" validate:"oneof=PUBLIC PRIVATE RESTRICTED"` diff --git a/helpers.go b/helpers.go index 25e161c..fd41437 100644 --- a/helpers.go +++ b/helpers.go @@ -446,8 +446,8 @@ func ParseBaseURL(ctx context.Context, baseURL *models.BaseURL) error { if baseURL.Title == "" { baseURL.Title = "No Title Found: " + baseURL.URL } - if len(baseURL.Title) > 150 { - baseURL.Title = baseURL.Title[:150] + if len(baseURL.Title) > 500 { + baseURL.Title = baseURL.Title[:500] } baseURL.PublicReady = true baseURL.Data.Meta = *hm diff --git a/internal/translations/catalog.go b/internal/translations/catalog.go index 8041c77..1864107 100644 --- a/internal/translations/catalog.go +++ b/internal/translations/catalog.go @@ -39,85 +39,85 @@ func init() { } var messageKeyToIndex = map[string]int{ - " you can host your own instance if you'd like full control over your own platform.": 394, - "%s": 420, - "%s Links": 509, - "%s: domain not found": 658, - "- LinkTaco Team": 319, - "100%% open source project": 393, - "A link was successfully created.": 471, - "A list was successfully created.": 603, - "A new link was created succesfully": 643, + " you can host your own instance if you'd like full control over your own platform.": 395, + "%s": 421, + "%s Links": 510, + "%s: domain not found": 659, + "- LinkTaco Team": 320, + "100%% open source project": 394, + "A link was successfully created.": 472, + "A list was successfully created.": 604, + "A new link was created succesfully": 644, "A new member invitation was sent to %s": 152, "A new register invitation was sent to %s": 150, - "A new short was created succesfully": 641, - "A new window called Library will open": 542, - "A valid Organizaiton Slug is required.": 236, - "API Powered": 374, - "About": 571, - "Access Restricted": 254, - "Access denied.": 255, + "A new short was created succesfully": 642, + "A new window called Library will open": 543, + "A valid Organizaiton Slug is required.": 237, + "API Powered": 375, + "About": 572, + "Access Restricted": 255, + "Access denied.": 256, "Action": 28, "Actions": 31, - "Add": 287, - "Add Link": 664, - "Add Member": 446, - "Add OAuth2 Client": 289, - "Add Personal Access Token": 276, - "Add unlimited members to organization": 364, - "Admin": 581, - "Admin Write": 451, - "Advanced Search": 489, - "Advanced filtering/search": 341, - "All": 496, + "Add": 288, + "Add Link": 665, + "Add Member": 447, + "Add OAuth2 Client": 290, + "Add Personal Access Token": 277, + "Add unlimited members to organization": 365, + "Admin": 582, + "Admin Write": 452, + "Advanced Search": 490, + "Advanced filtering/search": 342, + "All": 497, "Already have an account? Click here to login": 44, - "An invitation was sent to this user": 452, - "An note was successfully created.": 564, - "An short link was successfully created.": 651, + "An invitation was sent to this user": 453, + "An note was successfully created.": 565, + "An short link was successfully created.": 652, "Analytics": 92, "Apply": 98, - "Approve": 314, - "Archive": 503, - "Archive URL": 470, - "As system admin run this command in the channel you want to connect": 535, - "Authorize": 309, - "Authorized Clients": 272, + "Approve": 315, + "Archive": 504, + "Archive URL": 471, + "As system admin run this command in the channel you want to connect": 536, + "Authorize": 310, + "Authorized Clients": 273, "Back": 15, - "Back Home": 261, - "Blog": 583, - "Bookmark '%s' on LinkTaco.com": 515, - "Bookmark successfully deleted": 519, - "Bookmarks": 336, - "Browser bookmark widget": 406, - "Build Your Own Integration": 367, - "Business": 328, - "By": 486, + "Back Home": 262, + "Blog": 584, + "Bookmark '%s' on LinkTaco.com": 516, + "Bookmark successfully deleted": 520, + "Bookmarks": 337, + "Browser bookmark widget": 407, + "Build Your Own Integration": 368, + "Business": 329, + "By": 487, "CNAME record for domain is incorrect": 194, "Cancel": 16, - "Categories": 570, + "Categories": 571, "Change Email": 71, "Change Password": 50, "Change password": 32, - "Chrome Bookmarks": 556, + "Chrome Bookmarks": 557, "City": 95, - "City analytics": 361, - "Clear": 492, - "Click analytics": 358, + "City analytics": 362, + "Clear": 493, + "Click analytics": 359, "Click here to upgrade": 102, - "Click on Manage Bookmarks from the Bookmarks menu": 541, - "Click on on Export Bookmarks": 550, - "Click on the icon that has two arrows (up and down) and choose 'Export Bookmarks to HTML'": 544, - "Client Applications": 578, - "Client Description": 290, - "Client ID": 285, - "Client Name": 273, - "Client Secret": 293, - "Client URL": 292, - "Clients": 284, - "Code is invalid.": 223, - "Collaboration": 400, - "Collaboration / Integrations": 363, - "Comment": 267, + "Click on Manage Bookmarks from the Bookmarks menu": 542, + "Click on on Export Bookmarks": 551, + "Click on the icon that has two arrows (up and down) and choose 'Export Bookmarks to HTML'": 545, + "Client Applications": 579, + "Client Description": 291, + "Client ID": 286, + "Client Name": 274, + "Client Secret": 294, + "Client URL": 293, + "Clients": 285, + "Code is invalid.": 224, + "Collaboration": 401, + "Collaboration / Integrations": 364, + "Comment": 268, "Complete Registration": 37, "Confirm": 88, "Confirm New Password": 53, @@ -126,470 +126,470 @@ var messageKeyToIndex = map[string]int{ "Confirmation Not Found": 158, "Confirmation User Not Found": 177, "Confirmation key is required.": 157, - "Connect": 537, - "Connect Mattermost": 621, - "Connect User": 627, - "Connect to Slack Workspace": 671, - "Connected": 538, + "Connect": 538, + "Connect Mattermost": 622, + "Connect User": 628, + "Connect to Slack Workspace": 672, + "Connected": 539, "Continue to Upgrade": 2, "Country": 94, - "Country analytics": 360, - "Create": 611, - "Create Domain": 415, - "Create Link": 462, - "Create Links": 591, - "Create List": 602, - "Create Note": 563, - "Create Organization": 436, - "Create QR Code": 610, - "Create Short Link": 648, - "Create link listings (ie, social media bios, etc.)": 345, - "Creation Date": 606, + "Country analytics": 361, + "Create": 612, + "Create Domain": 416, + "Create Link": 463, + "Create Links": 592, + "Create List": 603, + "Create Note": 564, + "Create Organization": 437, + "Create QR Code": 611, + "Create Short Link": 649, + "Create link listings (ie, social media bios, etc.)": 346, + "Creation Date": 607, "Current Organization": 27, "Current Password": 51, - "Current password given is incorrect": 678, + "Current password given is incorrect": 679, "CurrentSlug is required": 115, - "Custom background image": 613, - "Custom domain + SSL": 343, + "Custom background image": 614, + "Custom domain + SSL": 344, "Days": 100, - "Default Bookmark Visibility": 438, + "Default Bookmark Visibility": 439, "Default Lang": 10, "Default Language": 25, "DefaultLang is required": 180, - "Delete": 408, - "Delete Bookmark": 517, - "Delete Domain": 419, - "Delete List": 587, - "Delete Org Member": 454, - "Delete Picture": 597, - "Delete QR Code": 528, - "Delete Short Link": 654, - "Delete member %s (%s) from Organization %s?": 457, - "Description": 303, + "Delete": 409, + "Delete Bookmark": 518, + "Delete Domain": 420, + "Delete List": 588, + "Delete Org Member": 455, + "Delete Picture": 598, + "Delete QR Code": 529, + "Delete Short Link": 655, + "Delete member %s (%s) from Organization %s?": 458, + "Description": 304, "Description is required.": 140, - "Device analytics": 362, + "Device analytics": 363, "Devices": 97, - "Disabled": 429, - "Disconnect": 536, - "Disconnect Mattermost": 618, - "Disconnect Slack": 665, - "Do you really want to disconnect this organization from mattermost": 620, - "Do you really want to disconnect this organization from slack": 667, - "Do you really whant to delete this bookmark?": 520, - "Do you really whant to delete this domain": 423, - "Do you really whant to delete this link": 590, - "Do you really whant to delete this list": 609, - "Do you really whant to delete this qr code": 531, - "Do you want to connect this organization to mattermost?": 623, - "Do you want to connect with slack?": 673, - "Do you want to delete": 522, - "Do you want to proceed?": 629, - "Do you want to revoke this personal access token? This can not be undone.": 279, - "Documentation": 380, - "Domain": 595, - "Domain List": 407, - "Domain Not Found": 206, - "Domain created successfully": 418, - "Domain in use. Can not change service.": 239, - "Domain not found": 640, - "Domain successfully deleted": 421, + "Disabled": 430, + "Disconnect": 537, + "Disconnect Mattermost": 619, + "Disconnect Slack": 666, + "Do you really want to disconnect this organization from mattermost": 621, + "Do you really want to disconnect this organization from slack": 668, + "Do you really whant to delete this bookmark?": 521, + "Do you really whant to delete this domain": 424, + "Do you really whant to delete this link": 591, + "Do you really whant to delete this list": 610, + "Do you really whant to delete this qr code": 532, + "Do you want to connect this organization to mattermost?": 624, + "Do you want to connect with slack?": 674, + "Do you want to delete": 523, + "Do you want to proceed?": 630, + "Do you want to revoke this personal access token? This can not be undone.": 280, + "Documentation": 381, + "Domain": 596, + "Domain List": 408, + "Domain Not Found": 207, + "Domain created successfully": 419, + "Domain in use. Can not change service.": 240, + "Domain not found": 641, + "Domain successfully deleted": 422, "DomainID is required": 200, - "Domains": 431, - "Download": 612, - "Download Image": 527, - "Duplicated short code": 207, + "Domains": 432, + "Download": 613, + "Download Image": 528, + "Duplicated short code": 208, "Edit": 29, "Edit Profile": 8, "Edit profile": 34, - "Element ID is invalid.": 224, + "Element ID is invalid.": 225, "Element Not Found": 136, "Email": 24, "Email Address": 42, "Email is required": 165, - "Email is required.": 241, + "Email is required.": 242, "Email may not exceed 255 characters": 145, "Email updated successfully": 77, - "Enabled": 428, + "Enabled": 429, "Engagements over time": 93, "English": 18, "Enter New Password": 54, "Error checking the DNS entry for domain. Please try again later": 193, "Error compiling url regex: %s": 142, - "Error fetching referenced link: %v": 473, - "Error fetching referenced note: %v": 565, - "Error fetching referenced url: Not found": 472, - "Every account can create unlimited organizations. Each organization has it's own bookmarks, listings, analytics, etc. All of the features below belong to each organization with their own unique URL's, groupings, and so on.": 324, - "Exclude Tags": 491, - "Expired": 269, - "Explore Features": 397, - "Export": 433, - "Export Data": 532, - "Export in JSON or HTML": 373, - "Failed the '%s' tag.": 682, - "Feature": 325, - "Feed": 483, - "File format": 533, - "Filter/Search listings": 347, - "Filter/Search shorts": 354, - "Firefox Bookmarks": 557, - "Follow": 504, - "Follow other organizations (social)": 339, - "Following": 480, - "Followings": 493, + "Error fetching referenced link: %v": 474, + "Error fetching referenced note: %v": 566, + "Error fetching referenced url: Not found": 473, + "Every account can create unlimited organizations. Each organization has it's own bookmarks, listings, analytics, etc. All of the features below belong to each organization with their own unique URL's, groupings, and so on.": 325, + "Exclude Tags": 492, + "Expired": 270, + "Explore Features": 398, + "Export": 434, + "Export Data": 533, + "Export in JSON or HTML": 374, + "Failed the '%s' tag.": 683, + "Feature": 326, + "Feed": 484, + "File format": 534, + "Filter/Search listings": 348, + "Filter/Search shorts": 355, + "Firefox Bookmarks": 558, + "Follow": 505, + "Follow other organizations (social)": 340, + "Following": 481, + "Followings": 494, "Forgot Password?": 61, - "Free": 326, - "Free accounts are only allowed 1 link listing.": 211, + "Free": 327, + "Free accounts are only allowed 1 link listing.": 212, "Free organizations are not allowed to create private links. Please upgrade": 134, "Free organizations are not allowed to create private notes. Please upgrade": 141, "Free organizations can not use Private permission. Please upgrade to use Private permission": 124, - "Full Analytics": 349, - "Full GraphQL API Access": 375, + "Full Analytics": 350, + "Full GraphQL API Access": 376, "Full Name": 38, - "Full RSS feeds": 342, - "Full analytics history": 356, - "Fully open source": 378, - "GQL Playground": 574, - "Go to https://pinboard.in/export/ and click on JSON": 551, - "Go to the Bookmarks menu and choose Bookmark Manager": 547, - "Go to the File menu and chose Export": 545, - "Grants": 274, - "GraphQL Playground": 259, - "Help": 582, - "Here you can mix all your link saving and sharing needs in one tight little bundle. Much like a taco. A link taco if you will.": 384, - "Hi there,": 317, - "Host your own version of Link Taco": 379, - "ID can't be lower than 0.": 220, - "ID is required.": 218, - "Id required": 208, - "If OAuth 2.0 bearer tokens issued for your OAuth client, or your client secret, have been disclosed to a third-party, you must revoke all tokens and have replacements issued.": 297, + "Full RSS feeds": 343, + "Full analytics history": 357, + "Fully open source": 379, + "GQL Playground": 575, + "Go to https://pinboard.in/export/ and click on JSON": 552, + "Go to the Bookmarks menu and choose Bookmark Manager": 548, + "Go to the File menu and chose Export": 546, + "Grants": 275, + "GraphQL Playground": 260, + "Help": 583, + "Here you can mix all your link saving and sharing needs in one tight little bundle. Much like a taco. A link taco if you will.": 385, + "Hi there,": 318, + "Host your own version of Link Taco": 380, + "ID can't be lower than 0.": 221, + "ID is required.": 219, + "Id required": 209, + "If OAuth 2.0 bearer tokens issued for your OAuth client, or your client secret, have been disclosed to a third-party, you must revoke all tokens and have replacements issued.": 298, "If the email address given exists in our system then we just sent it a login link. Click this link to reset your password. The link expires in 1 hour.": 62, "If you didn't request this link you can safely delete this email now.": 89, "Image": 14, - "Import": 434, - "Import / Export": 368, - "Import Data": 539, - "Import Export": 402, - "Import from Chrome": 371, - "Import from Firefox": 370, - "Import from Pinboard": 369, - "Import from Safari": 372, - "In order to interact with Link Taco you have to connect you slack account with your link user": 669, - "In order to interact with the mattermost you have to connect your account with your link user": 628, - "In the left sidebar select the folder that you want to export": 548, - "In the left sidebar select the folder you want to export. To export all bookmarks select All Bookmarks": 543, - "In the top bookmark bar click on the three points at the top right": 549, - "Inactive Domain": 320, - "Include Tags": 490, - "Informative URL": 304, - "Installed successfully": 645, - "Instructions": 554, - "Integrations": 401, + "Import": 435, + "Import / Export": 369, + "Import Data": 540, + "Import Export": 403, + "Import from Chrome": 372, + "Import from Firefox": 371, + "Import from Pinboard": 370, + "Import from Safari": 373, + "In order to interact with Link Taco you have to connect you slack account with your link user": 670, + "In order to interact with the mattermost you have to connect your account with your link user": 629, + "In the left sidebar select the folder that you want to export": 549, + "In the left sidebar select the folder you want to export. To export all bookmarks select All Bookmarks": 544, + "In the top bookmark bar click on the three points at the top right": 550, + "Inactive Domain": 321, + "Include Tags": 491, + "Informative URL": 305, + "Installed successfully": 646, + "Instructions": 555, + "Integrations": 402, "Invalid Confirmation Target": 160, "Invalid Confirmation Type": 159, "Invalid Email": 172, "Invalid FQDN format": 187, - "Invalid ID ": 238, + "Invalid ID ": 239, "Invalid Key": 171, "Invalid Permission": 147, "Invalid URL.": 127, "Invalid Visibility value.": 126, - "Invalid code type": 252, + "Invalid code type": 253, "Invalid default permission value": 125, "Invalid domain ID.": 195, "Invalid domain name.": 183, - "Invalid email and/or password": 675, + "Invalid email and/or password": 676, "Invalid email format": 146, - "Invalid level value.": 234, - "Invalid listing ID provided": 257, - "Invalid listing for specified organization": 258, - "Invalid orgType": 233, - "Invalid origin source for importer.": 262, + "Invalid level value.": 235, + "Invalid listing ID provided": 258, + "Invalid listing for specified organization": 259, + "Invalid orgType": 234, + "Invalid origin source for importer.": 263, "Invalid permissions for Organization ID": 189, "Invalid service value.": 184, - "Invalid slack response": 672, - "Invalid status value.": 235, + "Invalid slack response": 673, + "Invalid status value.": 236, "Is Active": 23, - "Is Default": 596, - "Is Enabled": 444, - "Issued": 268, - "Just wanted to let you know that your bookmark import has completed successfully!": 318, + "Is Default": 597, + "Is Enabled": 445, + "Issued": 269, + "Just wanted to let you know that your bookmark import has completed successfully!": 319, "Key is required": 176, "Lang is invalid": 181, - "Link Detail": 512, - "Link Listing": 413, - "Link Listings": 344, - "Link Lists": 399, + "Link Detail": 513, + "Link Listing": 414, + "Link Listings": 345, + "Link Lists": 400, "Link Not Found": 138, - "Link Search": 661, - "Link Short Not Found": 251, - "Link Shortening": 351, - "Link Shortner": 412, + "Link Search": 662, + "Link Short Not Found": 252, + "Link Shortening": 352, + "Link Shortner": 413, "Link Taco: Invitation to join organization": 153, "Link hash required": 135, - "Link listings: Linktree et al": 390, - "Link shortening: Bitly et al": 389, - "Link successfully deleted": 589, - "Link successfully updated.": 523, - "LinkOrder can't be lower than 0.": 216, + "Link listings: Linktree et al": 391, + "Link shortening: Bitly et al": 390, + "Link successfully deleted": 590, + "Link successfully updated.": 524, + "LinkOrder can't be lower than 0.": 217, "LinkTaco - Confirm account email": 85, - "LinkTaco - Your bookmark import is complete": 316, - "LinkTaco is an open source platform where you can host all of your links. Custom domains, QR codes, Analytics, full API, multiple organizations w/unlimited members are just some of what's included.": 385, + "LinkTaco - Your bookmark import is complete": 317, + "LinkTaco is an open source platform where you can host all of your links. Custom domains, QR codes, Analytics, full API, multiple organizations w/unlimited members are just some of what's included.": 386, "Links": 106, "Links - Reset your password": 60, - "Linktaco: Invitation to Register": 243, - "List Not Found": 225, - "List successfully deleted": 608, - "Listing": 350, - "Listing Link Not Found": 221, - "Listing Not Found": 217, - "Listing successfully updated.": 601, - "ListingSlug is required.": 215, - "Lists": 579, - "Log in": 572, - "Log out": 573, + "Linktaco: Invitation to Register": 244, + "List Not Found": 226, + "List successfully deleted": 609, + "Listing": 351, + "Listing Link Not Found": 222, + "Listing Not Found": 218, + "Listing successfully updated.": 602, + "ListingSlug is required.": 216, + "Lists": 580, + "Log in": 573, + "Log out": 574, "Login": 72, "Login Email": 74, - "Lookup Name": 409, - "Manage": 286, - "Manage Links": 604, - "Manage Members": 432, - "Manage Subscription": 430, + "Lookup Name": 410, + "Manage": 287, + "Manage Links": 605, + "Manage Members": 433, + "Manage Subscription": 431, "Manage Your Organizations": 35, - "Mark as read": 498, - "Mark as unread": 499, - "MatterMost Integration": 366, - "Mattermost successfully disconnected": 619, - "Member List": 460, - "Member added succesxfully": 458, - "Member successfully deleted": 456, + "Mark as read": 499, + "Mark as unread": 500, + "MatterMost Integration": 367, + "Mattermost successfully disconnected": 620, + "Member List": 461, + "Member added succesxfully": 459, + "Member successfully deleted": 457, "Members": 30, - "Members can add/edit/remove links (if allowed)": 404, - "Members have access based on permissions granted": 405, - "Migrate Short Links": 416, - "Most popular links on LinkTaco.com": 477, + "Members can add/edit/remove links (if allowed)": 405, + "Members have access based on permissions granted": 406, + "Migrate Short Links": 417, + "Most popular links on LinkTaco.com": 478, "Name": 12, "Name is required": 108, - "Name is required.": 240, + "Name is required.": 241, "Name may not exceed 150 characters": 109, "Name may not exceed 255 characters": 185, "Name may not exceed 500 characters": 186, "New Password": 52, - "New passwords do not match": 676, - "Next": 484, - "No Clients": 288, + "New passwords do not match": 677, + "Next": 485, + "No Clients": 289, "No Data": 107, - "No Domain": 650, - "No Domains": 414, - "No Links": 593, - "No Lists": 605, - "No QR Codes": 617, - "No Short Links": 647, - "No URL argument was given": 657, + "No Domain": 651, + "No Domains": 415, + "No Links": 594, + "No Lists": 606, + "No QR Codes": 618, + "No Short Links": 648, + "No URL argument was given": 658, "No accounts? Click here to create one": 73, - "No links were found for %s": 634, - "No members": 461, - "No organization found": 635, - "No organizations": 482, + "No links were found for %s": 635, + "No members": 462, + "No organization found": 636, + "No organizations": 483, "No personal organization found for this user": 182, - "No slack connection found": 631, - "No, nevermind": 281, - "Not Found": 246, - "Note": 560, - "Note '%s' on LinkTaco.com": 561, - "Note: Your access token will never be shown to you again. Keep this secret. It will expire a year from now.": 277, - "Note: Your client secret will never be shown to you again.": 294, - "OAuth 2.0 client management": 295, - "OAuth 2.0 client registered": 305, - "OAuth2 Support": 376, - "Old links won't work. All code will be moved to the new domain.": 417, - "Only members with read perm are allowed to perform this action": 248, + "No slack connection found": 632, + "No, nevermind": 282, + "Not Found": 247, + "Note": 561, + "Note '%s' on LinkTaco.com": 562, + "Note: Your access token will never be shown to you again. Keep this secret. It will expire a year from now.": 278, + "Note: Your client secret will never be shown to you again.": 295, + "OAuth 2.0 client management": 296, + "OAuth 2.0 client registered": 306, + "OAuth2 Support": 377, + "Old links won't work. All code will be moved to the new domain.": 418, + "Only members with read perm are allowed to perform this action": 249, "Only members with write perm are allowed to perform this action": 133, "Only showing country data. Upgrade your organization to paid to view all stats": 103, "Only showing the last 60 days. Upgrade your organization to paid to view all historical data": 101, "Only superusers can delete system level domains": 197, - "Only superusers can fetch system level domains": 250, - "Open Source": 425, - "Order": 586, - "Org Not Found": 203, - "Org Slug is required": 210, - "Org Username": 437, + "Only superusers can fetch system level domains": 251, + "Open Source": 426, + "Order": 587, + "Org Not Found": 204, + "Org Slug is required": 211, + "Org Username": 438, "Org slug is required": 143, - "Org slug is required for this kind of token": 253, + "Org slug is required for this kind of token": 254, "Org slug is required.": 129, "Org username is required": 110, "Org username may not exceed 150 characters": 111, "Organizaiton Slug is required.": 188, - "Organization": 465, + "Organization": 466, "Organization Not Found": 118, - "Organization Slug is required for user level domains": 237, - "Organization created successfully": 442, - "Organization linked successfully with mattermost": 625, - "Organization linked successfully with slack": 674, - "Organization not found.": 256, - "Organization updated successfully": 445, + "Organization Slug is required for user level domains": 238, + "Organization created successfully": 443, + "Organization linked successfully with mattermost": 626, + "Organization linked successfully with slack": 675, + "Organization not found.": 257, + "Organization updated successfully": 446, "Organizations": 26, - "Organize Bookmarks": 398, - "Organize by tags": 340, - "Organize listings by tag": 346, - "Organize shorts by tags": 353, - "Other": 598, - "Other Name": 599, - "Paid": 427, + "Organize Bookmarks": 399, + "Organize by tags": 341, + "Organize listings by tag": 347, + "Organize shorts by tags": 354, + "Other": 599, + "Other Name": 600, + "Paid": 428, "Password": 39, "Password Changed": 56, "Password changed successfully": 76, "Password is required": 166, "Password may not exceed 100 characters": 167, - "Payment History": 435, - "Peace Pinboard. Bye Bitly. Later Linktree. Hello LinkTaco!": 391, - "Permission": 447, + "Payment History": 436, + "Peace Pinboard. Bye Bitly. Later Linktree. Hello LinkTaco!": 392, + "Permission": 448, "Permission Not Found": 161, - "Personal": 327, - "Personal Access Tokens": 266, - "Personal Tokens": 577, - "Please click in the following link to tie a org %s": 644, - "Please click the link below:": 245, + "Personal": 328, + "Personal Access Tokens": 267, + "Personal Tokens": 578, + "Please click in the following link to tie a org %s": 645, + "Please click the link below:": 246, "Please confirm your account": 86, - "Please enter a valid email address.": 680, - "Please enter a valid phone number.": 681, - "Please link your slack user with link: %s": 662, + "Please enter a valid email address.": 681, + "Please enter a valid phone number.": 682, + "Please link your slack user with link: %s": 663, "Please login to view multiple tag combos (sorry, this is to help stop bot abuse)": 6, - "Please upgrade to a Business organization to add members": 448, - "Please upgrade your account to reactivate it": 322, - "Popular": 569, - "Popular Bookmarks": 475, - "Popular Links": 479, - "Prev": 485, - "Previous": 592, - "Price": 329, - "Pricing": 323, - "Pricing and feature details for LinkTaco.com": 381, - "Private": 441, - "Private Post": 514, + "Please upgrade to a Business organization to add members": 449, + "Please upgrade your account to reactivate it": 323, + "Popular": 570, + "Popular Bookmarks": 476, + "Popular Links": 480, + "Prev": 486, + "Previous": 593, + "Price": 330, + "Pricing": 324, + "Pricing and feature details for LinkTaco.com": 382, + "Private": 442, + "Private Post": 515, "Profile updated successfully": 19, - "Public": 440, - "Public Post": 513, - "Public only": 334, - "QR Code Details": 526, - "QR Code Listing": 615, - "QR Code Not Found": 229, - "QR Code specific analytics": 357, - "QR Code succesfully created": 614, - "QR Code successfully deleted": 530, - "QR Codes": 607, - "QR Codes powered by Link Taco!": 524, + "Public": 441, + "Public Post": 514, + "Public only": 335, + "QR Code Details": 527, + "QR Code Listing": 616, + "QR Code Not Found": 230, + "QR Code specific analytics": 358, + "QR Code succesfully created": 615, + "QR Code successfully deleted": 531, + "QR Codes": 608, + "QR Codes powered by Link Taco!": 525, "QR Scans": 105, - "Read": 449, - "Ready to get started? It's free to make an account and use it forever (with some limitations). To use all features you have to pay just a few bucks a year, or a few per month if you're a business, and that's it. Simple!": 396, - "Recent": 568, - "Recent Bookmarks": 495, - "Recent Links": 508, - "Recent public links added to %s on LinkTaco.com": 505, - "Recent public links added to LinkTaco.com": 506, - "Redirect URL": 291, - "Referer analyitcs": 359, + "Read": 450, + "Ready to get started? It's free to make an account and use it forever (with some limitations). To use all features you have to pay just a few bucks a year, or a few per month if you're a business, and that's it. Simple!": 397, + "Recent": 569, + "Recent Bookmarks": 496, + "Recent Links": 509, + "Recent public links added to %s on LinkTaco.com": 506, + "Recent public links added to LinkTaco.com": 507, + "Redirect URL": 292, + "Referer analyitcs": 360, "Referrer": 96, "Register": 41, - "Register Invitation": 242, + "Register Invitation": 243, "Registration Completed": 40, "Registration is not enabled": 170, "Registration is not enabled on this system. Contact the admin for an account.": 47, - "Reject": 315, + "Reject": 316, "Reset Password": 55, "Restricted Page": 0, - "Revoke": 270, - "Revoke Personal Access Token": 278, - "Revoke client tokens": 298, - "Revoke tokens & client secret": 296, - "Safari Bookmarks": 555, + "Revoke": 271, + "Revoke Personal Access Token": 279, + "Revoke client tokens": 299, + "Revoke tokens & client secret": 297, + "Safari Bookmarks": 556, "Save": 9, - "Save Link": 575, - "Save Note": 576, - "Save public/private links": 337, - "Save public/private notes": 338, - "Scopes": 313, - "Search": 487, - "See the installation documentation for more.": 395, - "Select Export Bookmarks": 546, - "Self Hosting": 377, + "Save Link": 576, + "Save Note": 577, + "Save public/private links": 338, + "Save public/private notes": 339, + "Scopes": 314, + "Search": 488, + "See the installation documentation for more.": 396, + "Select Export Bookmarks": 547, + "Self Hosting": 378, "Send Reset Link": 63, - "Service": 410, + "Service": 411, "Set up your account, so you can save links.": 46, "Settings": 20, - "Short Code": 649, - "Short Code may not exceed 20 characters": 201, - "Short Link": 646, - "Short Link successfully deleted": 655, - "Short Links": 580, - "Short Not Found": 227, - "Short link successfully updated.": 653, - "Since we're a": 392, - "Slack Integration": 365, - "Slack successfully disconnected": 666, + "Short Code": 650, + "Short Code may not exceed 20 characters": 202, + "Short Link": 647, + "Short Link successfully deleted": 656, + "Short Links": 581, + "Short Not Found": 228, + "Short link successfully updated.": 654, + "Since we're a": 393, + "Slack Integration": 366, + "Slack successfully disconnected": 667, "Slug": 21, "Slug is required": 116, - "Slug is required.": 209, + "Slug is required.": 210, "Slug may not exceed 150 characters": 117, - "Social Links": 600, - "Social bookmarking is not new, it's just been forgotten. Link shortening with analytics has been around forever. Link listings became cool once social media started allowing us to post a link to our websites in our profiles.": 386, + "Social Links": 601, + "Social bookmarking is not new, it's just been forgotten. Link shortening with analytics has been around forever. Link listings became cool once social media started allowing us to post a link to our websites in our profiles.": 387, "Social bookmarking plus link sharing, shortening and listings all in one app.": 3, - "Social bookmarking: Pinboard (Delicious)": 388, + "Social bookmarking: Pinboard (Delicious)": 389, "Someone, possibly you, requested this login via email link. To login to your account, just click the link below:": 75, "Someone, possibly you, requested to reset your Links email address. To complete this update, just click the link below:": 69, "Someone, possibly you, requested to reset your Links password.": 64, - "Something went wrong, impossible to send invitation": 453, - "Something went wrong. Impossible to get the member data": 459, - "Something went wrong. The QR Code could not be deleted.": 529, - "Something went wrong. The link could not be deleted.": 588, - "Something went wrong. The user could not be linked.": 670, - "Something went wrong. This bookmark could not be deleted.": 518, - "Something went wrong. This member could not be deleted: %s": 455, - "Sorry, free accounts do not support Mattermost Integration. Please upgrade to continue": 626, - "Sorry, free accounts do not support Slack Integration. Please upgrade to continue": 668, - "Sorry, you have exceeded the amount of free accounts available. Please update your current free account to create one more": 439, - "Source": 540, + "Something went wrong, impossible to send invitation": 454, + "Something went wrong. Impossible to get the member data": 460, + "Something went wrong. The QR Code could not be deleted.": 530, + "Something went wrong. The link could not be deleted.": 589, + "Something went wrong. The user could not be linked.": 671, + "Something went wrong. This bookmark could not be deleted.": 519, + "Something went wrong. This member could not be deleted: %s": 456, + "Sorry, free accounts do not support Mattermost Integration. Please upgrade to continue": 627, + "Sorry, free accounts do not support Slack Integration. Please upgrade to continue": 669, + "Sorry, you have exceeded the amount of free accounts available. Please update your current free account to create one more": 440, + "Source": 541, "Spanish": 17, - "Sponsored": 426, - "Star": 500, - "Starred": 467, - "Store Dashboard": 566, - "Submit Query": 260, + "Sponsored": 427, + "Star": 501, + "Starred": 468, + "Store Dashboard": 567, + "Submit Query": 261, "Subscription": 22, "Successful login.": 84, - "Successfully added client": 306, - "Successfully added personal access": 282, - "Successfully reissued client.": 308, - "Successfully revoked authorization token.": 283, - "Successfully revoked client.": 307, - "Tags": 468, + "Successfully added client": 307, + "Successfully added personal access": 283, + "Successfully reissued client.": 309, + "Successfully revoked authorization token.": 284, + "Successfully revoked client.": 308, + "Tags": 469, "Tags may not exceed 10": 132, - "The %s domain is currently inactive": 321, + "The %s domain is currently inactive": 322, "The User is not verified": 163, "The User you try to invite is not verified": 151, - "The code is required": 638, + "The code is required": 639, "The domain is already registered in the system": 191, - "The domain is required": 639, - "The file is required": 263, - "The file submitted for this source should be html": 264, - "The file submitted for this source should be json": 265, + "The domain is required": 640, + "The file is required": 264, + "The file submitted for this source should be html": 265, + "The file submitted for this source should be json": 266, "The member was removed successfully": 156, "The passwords you entered do not match.": 7, - "The text to be searched is required": 633, - "The title is required": 636, - "The url is required": 637, + "The text to be searched is required": 634, + "The title is required": 637, + "The url is required": 638, "The user for given email is not a member of given organization": 155, "The user was added successfully": 164, - "There is already a default listing for this domain": 214, + "There is already a default listing for this domain": 215, "There is already a domain registered for given service": 192, - "This Slug is already registered for this domain": 213, + "This Slug is already registered for this domain": 214, "This account is currently unable to access the system.": 83, - "This ain't a popularity contest or anything but this is weird that there are no links!": 476, + "This ain't a popularity contest or anything but this is weird that there are no links!": 477, "This email domain is not allowed": 148, "This email is already registered": 173, - "This feature is not allowed for free user. Please upgrade.": 534, - "This feature is restricted to free accounts. Please upgrade.": 624, - "This feed has no links. Booo!": 502, - "This field is required.": 679, + "This feature is not allowed for free user. Please upgrade.": 535, + "This feature is restricted to free accounts. Please upgrade.": 625, + "This feed has no links. Booo!": 503, + "This field is required.": 680, "This function is only allowed for business users.": 149, "This function is only allowed for paid users.": 190, "This function is only allowed for paid users. Please upgrade": 1, @@ -599,132 +599,133 @@ var messageKeyToIndex = map[string]int{ "This organization name is already registered": 119, "This organization slug can not be used. Please chose another one": 113, "This organization slug is already registered": 114, - "This shortCode can not be used. Please chose another one": 202, + "This shortCode can not be used. Please chose another one": 203, "This slug can not be used. Please chose another one": 120, - "This team is already tied to an organization": 622, - "This user does not follow this org": 231, + "This team is already tied to an organization": 623, + "This user does not follow this org": 232, "This user is not allowed to perform this action": 139, "This username can not be used. Please chose another one": 174, "This username is already registered": 175, - "This will permanently unregister your OAuth 2.0 client": 300, + "This will permanently unregister your OAuth 2.0 client": 301, "Timezone": 11, "Timezone is invalid": 179, "Timezone is required": 178, - "Title": 463, - "Title is required": 219, + "Title": 464, + "Title is required": 220, "Title is required.": 130, - "Title is too long.": 222, - "Title may not exceed 150 characters": 131, + "Title is too long.": 223, + "Title may not exceed 150 characters": 201, + "Title may not exceed 500 characters": 131, "To complete your password reset, just click the link below:": 65, "To confirm your email address and complete your Links registration, please click the link below.": 87, - "Tour": 567, - "Try It FREE": 335, - "URL": 585, - "URL Shortening powered by Link Taco!": 656, + "Tour": 568, + "Try It FREE": 336, + "URL": 586, + "URL Shortening powered by Link Taco!": 657, "URL is required.": 199, "URL may not exceed 2048 characters": 128, "Unable to delete. Domain has active short links or link listings": 198, - "Unable to find suitable organization": 249, - "Unfollow": 481, - "Unlimited": 333, - "Unlimited QR codes per listing": 348, - "Unlimited QR codes per short": 355, - "Unlimited link listings (for social media bios, etc.)": 403, - "Unlimited short links": 352, - "Unread": 466, - "Unregister": 302, - "Unregister this OAuth client": 299, - "Unstar": 501, - "Untagged": 497, - "Up until now, all of these things were hosted on different services.": 387, + "Unable to find suitable organization": 250, + "Unfollow": 482, + "Unlimited": 334, + "Unlimited QR codes per listing": 349, + "Unlimited QR codes per short": 356, + "Unlimited link listings (for social media bios, etc.)": 404, + "Unlimited short links": 353, + "Unread": 467, + "Unregister": 303, + "Unregister this OAuth client": 300, + "Unstar": 502, + "Untagged": 498, + "Up until now, all of these things were hosted on different services.": 388, "Update Email": 67, - "Update Link": 521, - "Update Links": 584, - "Update List": 594, - "Update Note": 559, - "Update Organization": 443, - "Update Short Link": 652, + "Update Link": 522, + "Update Links": 585, + "Update List": 595, + "Update Note": 560, + "Update Organization": 444, + "Update Short Link": 653, "Update email": 33, "Upgrade Org": 36, - "Upgrade the organization to activate them.": 511, - "Upgrade your account to support private bookmarks.": 553, + "Upgrade the organization to activate them.": 512, + "Upgrade your account to support private bookmarks.": 554, "Upgrade your organization to paid to view the detail stats": 104, - "Url is required": 642, - "Use commas to separate your tags. Example: tag 1, tag 2, tag 3": 469, + "Url is required": 643, + "Use commas to separate your tags. Example: tag 1, tag 2, tag 3": 470, "User Not Found": 162, - "User connected successfully": 630, + "User connected successfully": 631, "User email is required": 144, - "User follows %s": 230, - "User is not authenticated": 677, + "User follows %s": 231, + "User is not authenticated": 678, "User not found for given email": 154, - "User unfollows %s": 232, + "User unfollows %s": 233, "Username": 13, "Username is required": 168, "Username may not exceed 150 characters": 169, - "View": 616, - "Visibility": 464, + "View": 617, + "Visibility": 465, "We sent you a confirmation email. Please click the link in that email to confirm your account.": 48, - "We sent you a direct message with instructions": 663, + "We sent you a direct message with instructions": 664, "We sent you a new confirmation email. Please click the link in that email to confirm your account.": 91, - "We sent you a private msg": 632, + "We sent you a private msg": 633, "Weeks": 99, - "Welcome to LinkTaco!": 383, + "Welcome to LinkTaco!": 384, "Welcome to LinkTaco! Here you can mix all your link saving and sharing needs in one tight little bundle. Much like a taco. A link taco if you will.": 4, "Welcome to Links": 45, - "Write": 450, - "Yes": 422, - "Yes, do it": 280, + "Write": 451, + "Yes": 423, + "Yes, do it": 281, "You are not allowed to create more free organizations. Please upgrade to a paid org": 112, "You are not allowed to edit this field for notes": 137, "You are not allowed to enable/disabled user type organization": 121, "You are not allowed to have more than two free organizations. Please upgrade": 122, - "You can not send both after and before cursors": 247, + "You can not send both after and before cursors": 248, "You can now": 57, - "You can't create more than 5 qr codes per lists.": 226, - "You can't create more than 5 qr codes per shorts.": 228, - "You have %d restricted link(s) saved.": 510, - "You have been invited by %s to join Link Taco": 244, - "You have not created any personal access tokens for your account.": 271, - "You have not granted any third party clients access to your account.": 275, - "You have reached your monthly short link limit. Please upgrade to remove this limitation.": 204, + "You can't create more than 5 qr codes per lists.": 227, + "You can't create more than 5 qr codes per shorts.": 229, + "You have %d restricted link(s) saved.": 511, + "You have been invited by %s to join Link Taco": 245, + "You have not created any personal access tokens for your account.": 272, + "You have not granted any third party clients access to your account.": 276, + "You have reached your monthly short link limit. Please upgrade to remove this limitation.": 205, "You have successfully registered your account. You can now login.": 49, - "You may revoke this access at any time on the OAuth tab of your account profile.": 312, + "You may revoke this access at any time on the OAuth tab of your account profile.": 313, "You must verify your email address before logging in": 82, - "You will be redirected in 10 seconds.": 525, + "You will be redirected in 10 seconds.": 526, "You've been logged out successfully.": 78, "You've been sent a confirmation email. Please click the link in the email to confirm your email change. The confirmation email will expire in 2 hours.": 68, "You've successfully confirmed your email address.": 81, "You've successfully updated your email address.": 80, "You've successfully updated your password.": 79, - "Your Organizations": 424, - "Your bookmark import is being processed. We will notify you once it's complete.": 558, - "Your feed is empty :( Go follow some people. Try the Popular or Recent feeds to find some interesting people to follow.": 488, - "Your importing into a free account / organization, any private pinboard bookmarks will be marked restricted.": 552, - "Your link was successfully saved. Details here: %s": 660, - "Your short link was successfully created: %s": 659, + "Your Organizations": 425, + "Your bookmark import is being processed. We will notify you once it's complete.": 559, + "Your feed is empty :( Go follow some people. Try the Popular or Recent feeds to find some interesting people to follow.": 489, + "Your importing into a free account / organization, any private pinboard bookmarks will be marked restricted.": 553, + "Your link was successfully saved. Details here: %s": 661, + "Your short link was successfully created: %s": 660, "and login": 59, - "bookmark": 474, - "bookmark, note, detail, popular, links, linktaco": 516, - "for": 411, + "bookmark": 475, + "bookmark, note, detail, popular, links, linktaco": 517, + "for": 412, "invalid domain ID": 196, - "is a third-party application operated by": 311, - "list-service-domain is not configured": 212, - "months": 332, - "note, detail, popular, links, linktaco": 562, - "per month": 331, - "per year": 330, - "popular, links, linktaco, feature, plans, pricing plans": 478, - "pricing, links, linktaco, feature, plans, pricing plans": 382, - "recent, public, links, linktaco": 507, + "is a third-party application operated by": 312, + "list-service-domain is not configured": 213, + "months": 333, + "note, detail, popular, links, linktaco": 563, + "per month": 332, + "per year": 331, + "popular, links, linktaco, feature, plans, pricing plans": 479, + "pricing, links, linktaco, feature, plans, pricing plans": 383, + "recent, public, links, linktaco": 508, "return to the login page": 58, - "revoke all tokens issued to it, and prohibit the issuance of new tokens.": 301, - "saved": 494, - "short-service-domain is not configured": 205, + "revoke all tokens issued to it, and prohibit the issuance of new tokens.": 302, + "saved": 495, + "short-service-domain is not configured": 206, "social bookmarks, bookmarking, links, link sharing, link shortening, link listings, bookmarks, link saving, qr codes, analytics": 5, - "would like to access to your Link Taco account.": 310, + "would like to access to your Link Taco account.": 311, } -var enIndex = []uint32{ // 684 elements +var enIndex = []uint32{ // 685 elements // Entry 0 - 1F 0x00000000, 0x00000010, 0x0000004d, 0x00000061, 0x000000af, 0x00000143, 0x000001c3, 0x00000214, @@ -782,145 +783,146 @@ var enIndex = []uint32{ // 684 elements // Entry C0 - DF 0x00001978, 0x000019af, 0x000019ef, 0x00001a14, 0x00001a27, 0x00001a39, 0x00001a69, 0x00001aaa, - 0x00001abb, 0x00001ad0, 0x00001af8, 0x00001b31, - 0x00001b3f, 0x00001b99, 0x00001bc0, 0x00001bd1, - 0x00001be7, 0x00001bf3, 0x00001c05, 0x00001c1a, - 0x00001c49, 0x00001c6f, 0x00001c9f, 0x00001cd2, - 0x00001ceb, 0x00001d0c, 0x00001d1e, 0x00001d2e, - 0x00001d40, 0x00001d5a, 0x00001d71, 0x00001d84, + 0x00001abb, 0x00001ad0, 0x00001af4, 0x00001b1c, + 0x00001b55, 0x00001b63, 0x00001bbd, 0x00001be4, + 0x00001bf5, 0x00001c0b, 0x00001c17, 0x00001c29, + 0x00001c3e, 0x00001c6d, 0x00001c93, 0x00001cc3, + 0x00001cf6, 0x00001d0f, 0x00001d30, 0x00001d42, + 0x00001d52, 0x00001d64, 0x00001d7e, 0x00001d95, // Entry E0 - FF - 0x00001d95, 0x00001dac, 0x00001dbb, 0x00001dec, - 0x00001dfc, 0x00001e2e, 0x00001e40, 0x00001e53, - 0x00001e76, 0x00001e8b, 0x00001e9b, 0x00001eb0, - 0x00001ec6, 0x00001eed, 0x00001f22, 0x00001f32, - 0x00001f59, 0x00001f6b, 0x00001f7e, 0x00001f92, - 0x00001fb3, 0x00001fe4, 0x00002001, 0x0000200b, - 0x0000203a, 0x00002079, 0x0000209e, 0x000020cd, - 0x000020e2, 0x000020f4, 0x00002120, 0x00002132, + 0x00001da8, 0x00001db9, 0x00001dd0, 0x00001ddf, + 0x00001e10, 0x00001e20, 0x00001e52, 0x00001e64, + 0x00001e77, 0x00001e9a, 0x00001eaf, 0x00001ebf, + 0x00001ed4, 0x00001eea, 0x00001f11, 0x00001f46, + 0x00001f56, 0x00001f7d, 0x00001f8f, 0x00001fa2, + 0x00001fb6, 0x00001fd7, 0x00002008, 0x00002025, + 0x0000202f, 0x0000205e, 0x0000209d, 0x000020c2, + 0x000020f1, 0x00002106, 0x00002118, 0x00002144, // Entry 100 - 11F - 0x00002141, 0x00002159, 0x00002175, 0x000021a0, - 0x000021b3, 0x000021c0, 0x000021ca, 0x000021ee, - 0x00002203, 0x00002235, 0x00002267, 0x0000227e, - 0x00002286, 0x0000228d, 0x00002295, 0x0000229c, - 0x000022de, 0x000022f1, 0x000022fd, 0x00002304, - 0x00002349, 0x00002363, 0x000023e0, 0x000023fd, - 0x00002447, 0x00002452, 0x00002460, 0x00002483, - 0x000024ad, 0x000024b5, 0x000024bf, 0x000024c6, + 0x00002156, 0x00002165, 0x0000217d, 0x00002199, + 0x000021c4, 0x000021d7, 0x000021e4, 0x000021ee, + 0x00002212, 0x00002227, 0x00002259, 0x0000228b, + 0x000022a2, 0x000022aa, 0x000022b1, 0x000022b9, + 0x000022c0, 0x00002302, 0x00002315, 0x00002321, + 0x00002328, 0x0000236d, 0x00002387, 0x00002404, + 0x00002421, 0x0000246b, 0x00002476, 0x00002484, + 0x000024a7, 0x000024d1, 0x000024d9, 0x000024e3, // Entry 120 - 13F - 0x000024ca, 0x000024d5, 0x000024e7, 0x000024fa, - 0x00002507, 0x00002512, 0x00002520, 0x0000255b, - 0x00002577, 0x00002595, 0x00002644, 0x00002659, - 0x00002676, 0x000026ad, 0x000026f6, 0x00002701, - 0x0000270d, 0x0000271d, 0x00002739, 0x00002753, - 0x00002770, 0x0000278e, 0x00002798, 0x000027c8, - 0x000027f1, 0x00002842, 0x00002849, 0x00002851, - 0x00002858, 0x00002884, 0x0000288e, 0x000028e0, + 0x000024ea, 0x000024ee, 0x000024f9, 0x0000250b, + 0x0000251e, 0x0000252b, 0x00002536, 0x00002544, + 0x0000257f, 0x0000259b, 0x000025b9, 0x00002668, + 0x0000267d, 0x0000269a, 0x000026d1, 0x0000271a, + 0x00002725, 0x00002731, 0x00002741, 0x0000275d, + 0x00002777, 0x00002794, 0x000027b2, 0x000027bc, + 0x000027ec, 0x00002815, 0x00002866, 0x0000286d, + 0x00002875, 0x0000287c, 0x000028a8, 0x000028b2, // Entry 140 - 15F - 0x000028f0, 0x00002900, 0x00002927, 0x00002954, - 0x0000295c, 0x00002a3b, 0x00002a43, 0x00002a48, - 0x00002a51, 0x00002a5a, 0x00002a60, 0x00002a69, - 0x00002a73, 0x00002a7a, 0x00002a84, 0x00002a90, - 0x00002a9c, 0x00002aa6, 0x00002ac0, 0x00002ada, - 0x00002afe, 0x00002b0f, 0x00002b29, 0x00002b38, - 0x00002b4c, 0x00002b5a, 0x00002b8d, 0x00002ba6, - 0x00002bbd, 0x00002bdc, 0x00002beb, 0x00002bf3, + 0x00002904, 0x00002914, 0x00002924, 0x0000294b, + 0x00002978, 0x00002980, 0x00002a5f, 0x00002a67, + 0x00002a6c, 0x00002a75, 0x00002a7e, 0x00002a84, + 0x00002a8d, 0x00002a97, 0x00002a9e, 0x00002aa8, + 0x00002ab4, 0x00002ac0, 0x00002aca, 0x00002ae4, + 0x00002afe, 0x00002b22, 0x00002b33, 0x00002b4d, + 0x00002b5c, 0x00002b70, 0x00002b7e, 0x00002bb1, + 0x00002bca, 0x00002be1, 0x00002c00, 0x00002c0f, // Entry 160 - 17F - 0x00002c03, 0x00002c19, 0x00002c31, 0x00002c46, - 0x00002c63, 0x00002c7a, 0x00002c95, 0x00002ca5, - 0x00002cb7, 0x00002cc9, 0x00002cd8, 0x00002ce9, - 0x00002d06, 0x00002d2c, 0x00002d3e, 0x00002d55, - 0x00002d70, 0x00002d80, 0x00002d95, 0x00002da9, - 0x00002dbc, 0x00002dcf, 0x00002de6, 0x00002df2, - 0x00002e0a, 0x00002e19, 0x00002e26, 0x00002e38, - 0x00002e5b, 0x00002e69, 0x00002e96, 0x00002ece, + 0x00002c17, 0x00002c27, 0x00002c3d, 0x00002c55, + 0x00002c6a, 0x00002c87, 0x00002c9e, 0x00002cb9, + 0x00002cc9, 0x00002cdb, 0x00002ced, 0x00002cfc, + 0x00002d0d, 0x00002d2a, 0x00002d50, 0x00002d62, + 0x00002d79, 0x00002d94, 0x00002da4, 0x00002db9, + 0x00002dcd, 0x00002de0, 0x00002df3, 0x00002e0a, + 0x00002e16, 0x00002e2e, 0x00002e3d, 0x00002e4a, + 0x00002e5c, 0x00002e7f, 0x00002e8d, 0x00002eba, // Entry 180 - 19F - 0x00002ee3, 0x00002f62, 0x00003028, 0x00003109, - 0x0000314e, 0x00003177, 0x00003194, 0x000031b2, - 0x000031ed, 0x000031fb, 0x00003214, 0x0000326b, - 0x00003298, 0x00003374, 0x00003385, 0x00003398, - 0x000033a3, 0x000033b1, 0x000033be, 0x000033cc, - 0x00003402, 0x00003431, 0x00003462, 0x0000347a, - 0x00003486, 0x0000348d, 0x00003499, 0x000034a1, - 0x000034a5, 0x000034b3, 0x000034c0, 0x000034cb, + 0x00002ef2, 0x00002f07, 0x00002f86, 0x0000304c, + 0x0000312d, 0x00003172, 0x0000319b, 0x000031b8, + 0x000031d6, 0x00003211, 0x0000321f, 0x00003238, + 0x0000328f, 0x000032bc, 0x00003398, 0x000033a9, + 0x000033bc, 0x000033c7, 0x000033d5, 0x000033e2, + 0x000033f0, 0x00003426, 0x00003455, 0x00003486, + 0x0000349e, 0x000034aa, 0x000034b1, 0x000034bd, + 0x000034c5, 0x000034c9, 0x000034d7, 0x000034e4, // Entry 1A0 - 1BF - 0x000034d9, 0x000034ed, 0x0000352d, 0x00003549, - 0x00003557, 0x0000355d, 0x00003579, 0x0000357d, - 0x000035a7, 0x000035ba, 0x000035c6, 0x000035d0, - 0x000035d5, 0x000035dd, 0x000035e6, 0x000035fa, - 0x00003602, 0x00003611, 0x00003618, 0x0000361f, - 0x0000362f, 0x00003643, 0x00003650, 0x0000366c, - 0x000036e7, 0x000036ee, 0x000036f6, 0x00003718, - 0x0000372c, 0x00003737, 0x00003759, 0x00003764, + 0x000034ef, 0x000034fd, 0x00003511, 0x00003551, + 0x0000356d, 0x0000357b, 0x00003581, 0x0000359d, + 0x000035a1, 0x000035cb, 0x000035de, 0x000035ea, + 0x000035f4, 0x000035f9, 0x00003601, 0x0000360a, + 0x0000361e, 0x00003626, 0x00003635, 0x0000363c, + 0x00003643, 0x00003653, 0x00003667, 0x00003674, + 0x00003690, 0x0000370b, 0x00003712, 0x0000371a, + 0x0000373c, 0x00003750, 0x0000375b, 0x0000377d, // Entry 1C0 - 1DF - 0x0000376f, 0x000037a8, 0x000037ad, 0x000037b3, - 0x000037bf, 0x000037e3, 0x00003817, 0x00003829, - 0x00003867, 0x00003883, 0x000038b8, 0x000038d2, - 0x0000390a, 0x00003916, 0x00003921, 0x0000392d, - 0x00003933, 0x0000393e, 0x0000394b, 0x00003952, - 0x0000395a, 0x0000395f, 0x0000399e, 0x000039aa, - 0x000039cb, 0x000039f4, 0x00003a1a, 0x00003a23, - 0x00003a35, 0x00003a8c, 0x00003aaf, 0x00003ae7, + 0x00003788, 0x00003793, 0x000037cc, 0x000037d1, + 0x000037d7, 0x000037e3, 0x00003807, 0x0000383b, + 0x0000384d, 0x0000388b, 0x000038a7, 0x000038dc, + 0x000038f6, 0x0000392e, 0x0000393a, 0x00003945, + 0x00003951, 0x00003957, 0x00003962, 0x0000396f, + 0x00003976, 0x0000397e, 0x00003983, 0x000039c2, + 0x000039ce, 0x000039ef, 0x00003a18, 0x00003a3e, + 0x00003a47, 0x00003a59, 0x00003ab0, 0x00003ad3, // Entry 1E0 - 1FF - 0x00003af5, 0x00003aff, 0x00003b08, 0x00003b19, - 0x00003b1e, 0x00003b23, 0x00003b28, 0x00003b2b, - 0x00003b32, 0x00003baa, 0x00003bba, 0x00003bc7, - 0x00003bd4, 0x00003bda, 0x00003be5, 0x00003beb, - 0x00003bfc, 0x00003c00, 0x00003c09, 0x00003c16, - 0x00003c25, 0x00003c2a, 0x00003c31, 0x00003c4f, - 0x00003c57, 0x00003c5e, 0x00003c91, 0x00003cbb, - 0x00003cdb, 0x00003ce8, 0x00003cf4, 0x00003d1d, + 0x00003b0b, 0x00003b19, 0x00003b23, 0x00003b2c, + 0x00003b3d, 0x00003b42, 0x00003b47, 0x00003b4c, + 0x00003b4f, 0x00003b56, 0x00003bce, 0x00003bde, + 0x00003beb, 0x00003bf8, 0x00003bfe, 0x00003c09, + 0x00003c0f, 0x00003c20, 0x00003c24, 0x00003c2d, + 0x00003c3a, 0x00003c49, 0x00003c4e, 0x00003c55, + 0x00003c73, 0x00003c7b, 0x00003c82, 0x00003cb5, + 0x00003cdf, 0x00003cff, 0x00003d0c, 0x00003d18, // Entry 200 - 21F - 0x00003d48, 0x00003d54, 0x00003d60, 0x00003d6d, - 0x00003d8e, 0x00003dbf, 0x00003dcf, 0x00003e09, - 0x00003e27, 0x00003e54, 0x00003e60, 0x00003e76, - 0x00003e91, 0x00003eb0, 0x00003ed6, 0x00003ee6, - 0x00003ef5, 0x00003f04, 0x00003f3c, 0x00003f59, - 0x00003f84, 0x00003f90, 0x00003f9c, 0x00003fd7, - 0x0000401b, 0x00004026, 0x0000402e, 0x00004038, - 0x00004044, 0x0000404b, 0x0000407d, 0x000040a3, + 0x00003d41, 0x00003d6c, 0x00003d78, 0x00003d84, + 0x00003d91, 0x00003db2, 0x00003de3, 0x00003df3, + 0x00003e2d, 0x00003e4b, 0x00003e78, 0x00003e84, + 0x00003e9a, 0x00003eb5, 0x00003ed4, 0x00003efa, + 0x00003f0a, 0x00003f19, 0x00003f28, 0x00003f60, + 0x00003f7d, 0x00003fa8, 0x00003fb4, 0x00003fc0, + 0x00003ffb, 0x0000403f, 0x0000404a, 0x00004052, + 0x0000405c, 0x00004068, 0x0000406f, 0x000040a1, // Entry 220 - 23F - 0x0000410a, 0x00004164, 0x00004189, 0x000041a1, - 0x000041d6, 0x00004214, 0x00004257, 0x00004274, - 0x000042a8, 0x00004315, 0x00004348, 0x00004355, - 0x00004366, 0x00004377, 0x00004389, 0x000043d9, - 0x000043e5, 0x000043ea, 0x00004407, 0x0000442e, - 0x0000443a, 0x0000445c, 0x00004482, 0x00004492, - 0x00004497, 0x0000449e, 0x000044a6, 0x000044b1, - 0x000044b7, 0x000044be, 0x000044c6, 0x000044d5, + 0x000040c7, 0x0000412e, 0x00004188, 0x000041ad, + 0x000041c5, 0x000041fa, 0x00004238, 0x0000427b, + 0x00004298, 0x000042cc, 0x00004339, 0x0000436c, + 0x00004379, 0x0000438a, 0x0000439b, 0x000043ad, + 0x000043fd, 0x00004409, 0x0000440e, 0x0000442b, + 0x00004452, 0x0000445e, 0x00004480, 0x000044a6, + 0x000044b6, 0x000044bb, 0x000044c2, 0x000044ca, + 0x000044d5, 0x000044db, 0x000044e2, 0x000044ea, // Entry 240 - 25F - 0x000044df, 0x000044e9, 0x000044f9, 0x0000450d, - 0x00004513, 0x0000451f, 0x00004525, 0x0000452a, - 0x0000452f, 0x0000453c, 0x00004540, 0x00004546, - 0x00004552, 0x00004587, 0x000045a1, 0x000045c9, - 0x000045d6, 0x000045df, 0x000045e8, 0x000045f4, - 0x000045fb, 0x00004606, 0x00004615, 0x0000461b, - 0x00004626, 0x00004633, 0x00004651, 0x0000465d, - 0x0000467e, 0x0000468b, 0x00004694, 0x000046a2, + 0x000044f9, 0x00004503, 0x0000450d, 0x0000451d, + 0x00004531, 0x00004537, 0x00004543, 0x00004549, + 0x0000454e, 0x00004553, 0x00004560, 0x00004564, + 0x0000456a, 0x00004576, 0x000045ab, 0x000045c5, + 0x000045ed, 0x000045fa, 0x00004603, 0x0000460c, + 0x00004618, 0x0000461f, 0x0000462a, 0x00004639, + 0x0000463f, 0x0000464a, 0x00004657, 0x00004675, + 0x00004681, 0x000046a2, 0x000046af, 0x000046b8, // Entry 260 - 27F - 0x000046ab, 0x000046c5, 0x000046ed, 0x000046fc, - 0x00004703, 0x0000470c, 0x00004724, 0x00004740, - 0x00004750, 0x00004755, 0x00004761, 0x00004777, - 0x0000479c, 0x000047df, 0x000047f2, 0x0000481f, - 0x00004857, 0x00004894, 0x000048c5, 0x0000491c, - 0x00004929, 0x00004987, 0x0000499f, 0x000049bb, - 0x000049d5, 0x000049ef, 0x00004a13, 0x00004a31, - 0x00004a47, 0x00004a5d, 0x00004a71, 0x00004a86, + 0x000046c6, 0x000046cf, 0x000046e9, 0x00004711, + 0x00004720, 0x00004727, 0x00004730, 0x00004748, + 0x00004764, 0x00004774, 0x00004779, 0x00004785, + 0x0000479b, 0x000047c0, 0x00004803, 0x00004816, + 0x00004843, 0x0000487b, 0x000048b8, 0x000048e9, + 0x00004940, 0x0000494d, 0x000049ab, 0x000049c3, + 0x000049df, 0x000049f9, 0x00004a13, 0x00004a37, + 0x00004a55, 0x00004a6b, 0x00004a81, 0x00004a95, // Entry 280 - 29F - 0x00004a9d, 0x00004aae, 0x00004ad2, 0x00004ae2, - 0x00004b05, 0x00004b3b, 0x00004b52, 0x00004b5d, - 0x00004b6c, 0x00004b7e, 0x00004b89, 0x00004b93, - 0x00004bbb, 0x00004bcd, 0x00004bee, 0x00004c00, - 0x00004c20, 0x00004c45, 0x00004c5f, 0x00004c77, - 0x00004ca7, 0x00004cdd, 0x00004ce9, 0x00004d16, - 0x00004d45, 0x00004d4e, 0x00004d5f, 0x00004d7f, - 0x00004dbd, 0x00004e0f, 0x00004e6d, 0x00004ea1, + 0x00004aaa, 0x00004ac1, 0x00004ad2, 0x00004af6, + 0x00004b06, 0x00004b29, 0x00004b5f, 0x00004b76, + 0x00004b81, 0x00004b90, 0x00004ba2, 0x00004bad, + 0x00004bb7, 0x00004bdf, 0x00004bf1, 0x00004c12, + 0x00004c24, 0x00004c44, 0x00004c69, 0x00004c83, + 0x00004c9b, 0x00004ccb, 0x00004d01, 0x00004d0d, + 0x00004d3a, 0x00004d69, 0x00004d72, 0x00004d83, + 0x00004da3, 0x00004de1, 0x00004e33, 0x00004e91, // Entry 2A0 - 2BF - 0x00004ebc, 0x00004ed3, 0x00004ef6, 0x00004f22, - 0x00004f40, 0x00004f5b, 0x00004f75, 0x00004f99, - 0x00004fb1, 0x00004fd5, 0x00004ff8, 0x00005010, -} // Size: 2760 bytes + 0x00004ec5, 0x00004ee0, 0x00004ef7, 0x00004f1a, + 0x00004f46, 0x00004f64, 0x00004f7f, 0x00004f99, + 0x00004fbd, 0x00004fd5, 0x00004ff9, 0x0000501c, + 0x00005034, +} // Size: 2764 bytes -const enData string = "" + // Size: 20496 bytes +const enData string = "" + // Size: 20532 bytes "\x02Restricted Page\x02This function is only allowed for paid users. Ple" + "ase upgrade\x02Continue to Upgrade\x02Social bookmarking plus link shari" + "ng, shortening and listings all in one app.\x02Welcome to LinkTaco! Here" + @@ -990,7 +992,7 @@ const enData string = "" + // Size: 20496 bytes "pgrade to use Private permission\x02Invalid default permission value\x02" + "Invalid Visibility value.\x02Invalid URL.\x02URL may not exceed 2048 cha" + "racters\x02Org slug is required.\x02Title is required.\x02Title may not " + - "exceed 150 characters\x02Tags may not exceed 10\x02Only members with wri" + + "exceed 500 characters\x02Tags may not exceed 10\x02Only members with wri" + "te perm are allowed to perform this action\x02Free organizations are not" + " allowed to create private links. Please upgrade\x02Link hash required" + "\x02Element Not Found\x02You are not allowed to edit this field for note" + @@ -1024,220 +1026,220 @@ const enData string = "" + // Size: 20496 bytes "y for domain. Please try again later\x02CNAME record for domain is incor" + "rect\x02Invalid domain ID.\x02invalid domain ID\x02Only superusers can d" + "elete system level domains\x02Unable to delete. Domain has active short " + - "links or link listings\x02URL is required.\x02DomainID is required\x02Sh" + - "ort Code may not exceed 20 characters\x02This shortCode can not be used." + - " Please chose another one\x02Org Not Found\x02You have reached your mont" + - "hly short link limit. Please upgrade to remove this limitation.\x02short" + - "-service-domain is not configured\x02Domain Not Found\x02Duplicated shor" + - "t code\x02Id required\x02Slug is required.\x02Org Slug is required\x02Fr" + - "ee accounts are only allowed 1 link listing.\x02list-service-domain is n" + - "ot configured\x02This Slug is already registered for this domain\x02Ther" + - "e is already a default listing for this domain\x02ListingSlug is require" + - "d.\x02LinkOrder can't be lower than 0.\x02Listing Not Found\x02ID is req" + - "uired.\x02Title is required\x02ID can't be lower than 0.\x02Listing Link" + - " Not Found\x02Title is too long.\x02Code is invalid.\x02Element ID is in" + - "valid.\x02List Not Found\x02You can't create more than 5 qr codes per li" + - "sts.\x02Short Not Found\x02You can't create more than 5 qr codes per sho" + - "rts.\x02QR Code Not Found\x02User follows %[1]s\x02This user does not fo" + - "llow this org\x02User unfollows %[1]s\x02Invalid orgType\x02Invalid leve" + - "l value.\x02Invalid status value.\x02A valid Organizaiton Slug is requir" + - "ed.\x02Organization Slug is required for user level domains\x04\x00\x01 " + - "\x0b\x02Invalid ID\x02Domain in use. Can not change service.\x02Name is " + - "required.\x02Email is required.\x02Register Invitation\x02Linktaco: Invi" + - "tation to Register\x02You have been invited by %[1]s to join Link Taco" + - "\x02Please click the link below:\x02Not Found\x02You can not send both a" + - "fter and before cursors\x02Only members with read perm are allowed to pe" + - "rform this action\x02Unable to find suitable organization\x02Only superu" + - "sers can fetch system level domains\x02Link Short Not Found\x02Invalid c" + - "ode type\x02Org slug is required for this kind of token\x02Access Restri" + - "cted\x02Access denied.\x02Organization not found.\x02Invalid listing ID " + - "provided\x02Invalid listing for specified organization\x02GraphQL Playgr" + - "ound\x02Submit Query\x02Back Home\x02Invalid origin source for importer." + - "\x02The file is required\x02The file submitted for this source should be" + - " html\x02The file submitted for this source should be json\x02Personal A" + - "ccess Tokens\x02Comment\x02Issued\x02Expired\x02Revoke\x02You have not c" + - "reated any personal access tokens for your account.\x02Authorized Client" + - "s\x02Client Name\x02Grants\x02You have not granted any third party clien" + - "ts access to your account.\x02Add Personal Access Token\x02Note: Your ac" + - "cess token will never be shown to you again. Keep this " + - "secret. It will expire a year from now.\x02Revoke Personal Access Token" + - "\x02Do you want to revoke this personal access token? This can not be un" + - "done.\x02Yes, do it\x02No, nevermind\x02Successfully added personal acce" + - "ss\x02Successfully revoked authorization token.\x02Clients\x02Client ID" + - "\x02Manage\x02Add\x02No Clients\x02Add OAuth2 Client\x02Client Descripti" + - "on\x02Redirect URL\x02Client URL\x02Client Secret\x02Note: Your client s" + - "ecret will never be shown to you again.\x02OAuth 2.0 client management" + - "\x02Revoke tokens & client secret\x02If OAuth 2.0 bearer tokens issued f" + - "or your OAuth client, or your client secret, have been disclosed to a th" + - "ird-party, you must revoke all tokens and have replacements issued.\x02R" + - "evoke client tokens\x02Unregister this OAuth client\x02This will permane" + - "ntly unregister your OAuth 2.0 client\x02revoke all tokens issued to it," + - " and prohibit the issuance of new tokens.\x02Unregister\x02Description" + - "\x02Informative URL\x02OAuth 2.0 client registered\x02Successfully added" + - " client\x02Successfully revoked client.\x02Successfully reissued client." + - "\x02Authorize\x02would like to access to your Link Taco account.\x02is a" + - " third-party application operated by\x02You may revoke this access at an" + - "y time on the OAuth tab of your account profile.\x02Scopes\x02Approve" + - "\x02Reject\x02LinkTaco - Your bookmark import is complete\x02Hi there," + - "\x02Just wanted to let you know that your bookmark import has completed " + - "successfully!\x02- LinkTaco Team\x02Inactive Domain\x02The %[1]s domain " + - "is currently inactive\x02Please upgrade your account to reactivate it" + - "\x02Pricing\x02Every account can create unlimited organizations. Each or" + - "ganization has it's own bookmarks, listings, analytics, etc. All of the " + - "features below belong to each organization with their own unique URL's, " + - "groupings, and so on.\x02Feature\x02Free\x02Personal\x02Business\x02Pric" + - "e\x02per year\x02per month\x02months\x02Unlimited\x02Public only\x02Try " + - "It FREE\x02Bookmarks\x02Save public/private links\x02Save public/private" + - " notes\x02Follow other organizations (social)\x02Organize by tags\x02Adv" + - "anced filtering/search\x02Full RSS feeds\x02Custom domain + SSL\x02Link " + - "Listings\x02Create link listings (ie, social media bios, etc.)\x02Organi" + - "ze listings by tag\x02Filter/Search listings\x02Unlimited QR codes per l" + - "isting\x02Full Analytics\x02Listing\x02Link Shortening\x02Unlimited shor" + - "t links\x02Organize shorts by tags\x02Filter/Search shorts\x02Unlimited " + - "QR codes per short\x02Full analytics history\x02QR Code specific analyti" + - "cs\x02Click analytics\x02Referer analyitcs\x02Country analytics\x02City " + - "analytics\x02Device analytics\x02Collaboration / Integrations\x02Add unl" + - "imited members to organization\x02Slack Integration\x02MatterMost Integr" + - "ation\x02Build Your Own Integration\x02Import / Export\x02Import from Pi" + - "nboard\x02Import from Firefox\x02Import from Chrome\x02Import from Safar" + - "i\x02Export in JSON or HTML\x02API Powered\x02Full GraphQL API Access" + - "\x02OAuth2 Support\x02Self Hosting\x02Fully open source\x02Host your own" + - " version of Link Taco\x02Documentation\x02Pricing and feature details fo" + - "r LinkTaco.com\x02pricing, links, linktaco, feature, plans, pricing plan" + - "s\x02Welcome to LinkTaco!\x02Here you can mix all your link saving and s" + - "haring needs in one tight little bundle. Much like a taco. A link taco i" + - "f you will.\x02LinkTaco is an open source platform where you can host al" + - "l of your links. Custom domains, QR codes, Analytics, full API, multiple" + - " organizations w/unlimited members are just some of what's included.\x02" + - "Social bookmarking is not new, it's just been forgotten. Link shortening" + - " with analytics has been around forever. Link listings became cool once " + - "social media started allowing us to post a link to our websites in our p" + - "rofiles.\x02Up until now, all of these things were hosted on different s" + - "ervices.\x02Social bookmarking: Pinboard (Delicious)\x02Link shortening:" + - " Bitly et al\x02Link listings: Linktree et al\x02Peace Pinboard. Bye Bit" + - "ly. Later Linktree. Hello LinkTaco!\x02Since we're a\x02100% open source" + - " project\x04\x01 \x00R\x02you can host your own instance if you'd like f" + - "ull control over your own platform.\x02See the installation documentatio" + - "n for more.\x02Ready to get started? It's free to make an account and us" + - "e it forever (with some limitations). To use all features you have to pa" + - "y just a few bucks a year, or a few per month if you're a business, and " + - "that's it. Simple!\x02Explore Features\x02Organize Bookmarks\x02Link Lis" + - "ts\x02Collaboration\x02Integrations\x02Import Export\x02Unlimited link l" + - "istings (for social media bios, etc.)\x02Members can add/edit/remove lin" + - "ks (if allowed)\x02Members have access based on permissions granted\x02B" + - "rowser bookmark widget\x02Domain List\x02Delete\x02Lookup Name\x02Servic" + - "e\x02for\x02Link Shortner\x02Link Listing\x02No Domains\x02Create Domain" + - "\x02Migrate Short Links\x02Old links won't work. All code will be moved " + - "to the new domain.\x02Domain created successfully\x02Delete Domain\x02%[" + - "1]s\x02Domain successfully deleted\x02Yes\x02Do you really whant to dele" + - "te this domain\x02Your Organizations\x02Open Source\x02Sponsored\x02Paid" + - "\x02Enabled\x02Disabled\x02Manage Subscription\x02Domains\x02Manage Memb" + - "ers\x02Export\x02Import\x02Payment History\x02Create Organization\x02Org" + - " Username\x02Default Bookmark Visibility\x02Sorry, you have exceeded the" + - " amount of free accounts available. Please update your current free acco" + - "unt to create one more\x02Public\x02Private\x02Organization created succ" + - "essfully\x02Update Organization\x02Is Enabled\x02Organization updated su" + - "ccessfully\x02Add Member\x02Permission\x02Please upgrade to a Business o" + - "rganization to add members\x02Read\x02Write\x02Admin Write\x02An invitat" + - "ion was sent to this user\x02Something went wrong, impossible to send in" + - "vitation\x02Delete Org Member\x02Something went wrong. This member could" + - " not be deleted: %[1]s\x02Member successfully deleted\x02Delete member %" + - "[1]s (%[2]s) from Organization %[3]s?\x02Member added succesxfully\x02So" + - "mething went wrong. Impossible to get the member data\x02Member List\x02" + - "No members\x02Create Link\x02Title\x02Visibility\x02Organization\x02Unre" + - "ad\x02Starred\x02Tags\x02Use commas to separate your tags. Example: tag " + - "1, tag 2, tag 3\x02Archive URL\x02A link was successfully created.\x02Er" + - "ror fetching referenced url: Not found\x02Error fetching referenced link" + - ": %[1]v\x02bookmark\x02Popular Bookmarks\x02This ain't a popularity cont" + - "est or anything but this is weird that there are no links!\x02Most popul" + - "ar links on LinkTaco.com\x02popular, links, linktaco, feature, plans, pr" + - "icing plans\x02Popular Links\x02Following\x02Unfollow\x02No organization" + - "s\x02Feed\x02Next\x02Prev\x02By\x02Search\x02Your feed is empty :( Go fo" + - "llow some people. Try the Popular or Recent feeds to find some interesti" + - "ng people to follow.\x02Advanced Search\x02Include Tags\x02Exclude Tags" + - "\x02Clear\x02Followings\x02saved\x02Recent Bookmarks\x02All\x02Untagged" + - "\x02Mark as read\x02Mark as unread\x02Star\x02Unstar\x02This feed has no" + - " links. Booo!\x02Archive\x02Follow\x02Recent public links added to %[1]s" + - " on LinkTaco.com\x02Recent public links added to LinkTaco.com\x02recent," + - " public, links, linktaco\x02Recent Links\x02%[1]s Links\x02You have %[1]" + - "d restricted link(s) saved.\x02Upgrade the organization to activate them" + - ".\x02Link Detail\x02Public Post\x02Private Post\x02Bookmark '%[1]s' on L" + - "inkTaco.com\x02bookmark, note, detail, popular, links, linktaco\x02Delet" + - "e Bookmark\x02Something went wrong. This bookmark could not be deleted." + - "\x02Bookmark successfully deleted\x02Do you really whant to delete this " + - "bookmark?\x02Update Link\x02Do you want to delete\x02Link successfully u" + - "pdated.\x02QR Codes powered by Link Taco!\x02You will be redirected in 1" + - "0 seconds.\x02QR Code Details\x02Download Image\x02Delete QR Code\x02Som" + - "ething went wrong. The QR Code could not be deleted.\x02QR Code successf" + - "ully deleted\x02Do you really whant to delete this qr code\x02Export Dat" + - "a\x02File format\x02This feature is not allowed for free user. Please up" + - "grade.\x02As system admin run this command in the channel you want to co" + - "nnect\x02Disconnect\x02Connect\x02Connected\x02Import Data\x02Source\x02" + - "Click on Manage Bookmarks from the Bookmarks menu\x02A new window called" + - " Library will open\x02In the left sidebar select the folder you want to " + - "export. To export all bookmarks select All Bookmarks\x02Click on the ico" + - "n that has two arrows (up and down) and choose 'Export Bookmarks to HTML" + - "'\x02Go to the File menu and chose Export\x02Select Export Bookmarks\x02" + - "Go to the Bookmarks menu and choose Bookmark Manager\x02In the left side" + - "bar select the folder that you want to export\x02In the top bookmark bar" + - " click on the three points at the top right\x02Click on on Export Bookma" + - "rks\x02Go to https://pinboard.in/export/ and click on JSON\x02Your impor" + - "ting into a free account / organization, any private pinboard bookmarks " + - "will be marked restricted.\x02Upgrade your account to support private bo" + - "okmarks.\x02Instructions\x02Safari Bookmarks\x02Chrome Bookmarks\x02Fire" + - "fox Bookmarks\x02Your bookmark import is being processed. We will notify" + - " you once it's complete.\x02Update Note\x02Note\x02Note '%[1]s' on LinkT" + - "aco.com\x02note, detail, popular, links, linktaco\x02Create Note\x02An n" + - "ote was successfully created.\x02Error fetching referenced note: %[1]v" + - "\x02Store Dashboard\x02Tour\x02Recent\x02Popular\x02Categories\x02About" + - "\x02Log in\x02Log out\x02GQL Playground\x02Save Link\x02Save Note\x02Per" + - "sonal Tokens\x02Client Applications\x02Lists\x02Short Links\x02Admin\x02" + - "Help\x02Blog\x02Update Links\x02URL\x02Order\x02Delete List\x02Something" + - " went wrong. The link could not be deleted.\x02Link successfully deleted" + - "\x02Do you really whant to delete this link\x02Create Links\x02Previous" + - "\x02No Links\x02Update List\x02Domain\x02Is Default\x02Delete Picture" + - "\x02Other\x02Other Name\x02Social Links\x02Listing successfully updated." + - "\x02Create List\x02A list was successfully created.\x02Manage Links\x02N" + - "o Lists\x02Creation Date\x02QR Codes\x02List successfully deleted\x02Do " + - "you really whant to delete this list\x02Create QR Code\x02Create\x02Down" + - "load\x02Custom background image\x02QR Code succesfully created\x02QR Cod" + - "e Listing\x02View\x02No QR Codes\x02Disconnect Mattermost\x02Mattermost " + - "successfully disconnected\x02Do you really want to disconnect this organ" + - "ization from mattermost\x02Connect Mattermost\x02This team is already ti" + - "ed to an organization\x02Do you want to connect this organization to mat" + - "termost?\x02This feature is restricted to free accounts. Please upgrade." + - "\x02Organization linked successfully with mattermost\x02Sorry, free acco" + - "unts do not support Mattermost Integration. Please upgrade to continue" + - "\x02Connect User\x02In order to interact with the mattermost you have to" + - " connect your account with your link user\x02Do you want to proceed?\x02" + - "User connected successfully\x02No slack connection found\x02We sent you " + - "a private msg\x02The text to be searched is required\x02No links were fo" + - "und for %[1]s\x02No organization found\x02The title is required\x02The u" + - "rl is required\x02The code is required\x02The domain is required\x02Doma" + - "in not found\x02A new short was created succesfully\x02Url is required" + - "\x02A new link was created succesfully\x02Please click in the following " + - "link to tie a org %[1]s\x02Installed successfully\x02Short Link\x02No Sh" + - "ort Links\x02Create Short Link\x02Short Code\x02No Domain\x02An short li" + - "nk was successfully created.\x02Update Short Link\x02Short link successf" + - "ully updated.\x02Delete Short Link\x02Short Link successfully deleted" + - "\x02URL Shortening powered by Link Taco!\x02No URL argument was given" + - "\x02%[1]s: domain not found\x02Your short link was successfully created:" + - " %[1]s\x02Your link was successfully saved. Details here: %[1]s\x02Link " + - "Search\x02Please link your slack user with link: %[1]s\x02We sent you a " + - "direct message with instructions\x02Add Link\x02Disconnect Slack\x02Slac" + - "k successfully disconnected\x02Do you really want to disconnect this org" + - "anization from slack\x02Sorry, free accounts do not support Slack Integr" + - "ation. Please upgrade to continue\x02In order to interact with Link Taco" + - " you have to connect you slack account with your link user\x02Something " + - "went wrong. The user could not be linked.\x02Connect to Slack Workspace" + - "\x02Invalid slack response\x02Do you want to connect with slack?\x02Orga" + - "nization linked successfully with slack\x02Invalid email and/or password" + - "\x02New passwords do not match\x02User is not authenticated\x02Current p" + - "assword given is incorrect\x02This field is required.\x02Please enter a " + - "valid email address.\x02Please enter a valid phone number.\x02Failed the" + - " '%[1]s' tag." + "links or link listings\x02URL is required.\x02DomainID is required\x02Ti" + + "tle may not exceed 150 characters\x02Short Code may not exceed 20 charac" + + "ters\x02This shortCode can not be used. Please chose another one\x02Org " + + "Not Found\x02You have reached your monthly short link limit. Please upgr" + + "ade to remove this limitation.\x02short-service-domain is not configured" + + "\x02Domain Not Found\x02Duplicated short code\x02Id required\x02Slug is " + + "required.\x02Org Slug is required\x02Free accounts are only allowed 1 li" + + "nk listing.\x02list-service-domain is not configured\x02This Slug is alr" + + "eady registered for this domain\x02There is already a default listing fo" + + "r this domain\x02ListingSlug is required.\x02LinkOrder can't be lower th" + + "an 0.\x02Listing Not Found\x02ID is required.\x02Title is required\x02ID" + + " can't be lower than 0.\x02Listing Link Not Found\x02Title is too long." + + "\x02Code is invalid.\x02Element ID is invalid.\x02List Not Found\x02You " + + "can't create more than 5 qr codes per lists.\x02Short Not Found\x02You c" + + "an't create more than 5 qr codes per shorts.\x02QR Code Not Found\x02Use" + + "r follows %[1]s\x02This user does not follow this org\x02User unfollows " + + "%[1]s\x02Invalid orgType\x02Invalid level value.\x02Invalid status value" + + ".\x02A valid Organizaiton Slug is required.\x02Organization Slug is requ" + + "ired for user level domains\x04\x00\x01 \x0b\x02Invalid ID\x02Domain in " + + "use. Can not change service.\x02Name is required.\x02Email is required." + + "\x02Register Invitation\x02Linktaco: Invitation to Register\x02You have " + + "been invited by %[1]s to join Link Taco\x02Please click the link below:" + + "\x02Not Found\x02You can not send both after and before cursors\x02Only " + + "members with read perm are allowed to perform this action\x02Unable to f" + + "ind suitable organization\x02Only superusers can fetch system level doma" + + "ins\x02Link Short Not Found\x02Invalid code type\x02Org slug is required" + + " for this kind of token\x02Access Restricted\x02Access denied.\x02Organi" + + "zation not found.\x02Invalid listing ID provided\x02Invalid listing for " + + "specified organization\x02GraphQL Playground\x02Submit Query\x02Back Hom" + + "e\x02Invalid origin source for importer.\x02The file is required\x02The " + + "file submitted for this source should be html\x02The file submitted for " + + "this source should be json\x02Personal Access Tokens\x02Comment\x02Issue" + + "d\x02Expired\x02Revoke\x02You have not created any personal access token" + + "s for your account.\x02Authorized Clients\x02Client Name\x02Grants\x02Yo" + + "u have not granted any third party clients access to your account.\x02Ad" + + "d Personal Access Token\x02Note: Your access token will never be" + + " shown to you again. Keep this secret. It will expire a year fr" + + "om now.\x02Revoke Personal Access Token\x02Do you want to revoke this pe" + + "rsonal access token? This can not be undone.\x02Yes, do it\x02No, neverm" + + "ind\x02Successfully added personal access\x02Successfully revoked author" + + "ization token.\x02Clients\x02Client ID\x02Manage\x02Add\x02No Clients" + + "\x02Add OAuth2 Client\x02Client Description\x02Redirect URL\x02Client UR" + + "L\x02Client Secret\x02Note: Your client secret will never be shown to yo" + + "u again.\x02OAuth 2.0 client management\x02Revoke tokens & client secret" + + "\x02If OAuth 2.0 bearer tokens issued for your OAuth client, or your cli" + + "ent secret, have been disclosed to a third-party, you must revoke all to" + + "kens and have replacements issued.\x02Revoke client tokens\x02Unregister" + + " this OAuth client\x02This will permanently unregister your OAuth 2.0 cl" + + "ient\x02revoke all tokens issued to it, and prohibit the issuance of new" + + " tokens.\x02Unregister\x02Description\x02Informative URL\x02OAuth 2.0 cl" + + "ient registered\x02Successfully added client\x02Successfully revoked cli" + + "ent.\x02Successfully reissued client.\x02Authorize\x02would like to acce" + + "ss to your Link Taco account.\x02is a third-party application operated b" + + "y\x02You may revoke this access at any time on the OAuth tab of your acc" + + "ount profile.\x02Scopes\x02Approve\x02Reject\x02LinkTaco - Your bookmark" + + " import is complete\x02Hi there,\x02Just wanted to let you know that you" + + "r bookmark import has completed successfully!\x02- LinkTaco Team\x02Inac" + + "tive Domain\x02The %[1]s domain is currently inactive\x02Please upgrade " + + "your account to reactivate it\x02Pricing\x02Every account can create unl" + + "imited organizations. Each organization has it's own bookmarks, listings" + + ", analytics, etc. All of the features below belong to each organization " + + "with their own unique URL's, groupings, and so on.\x02Feature\x02Free" + + "\x02Personal\x02Business\x02Price\x02per year\x02per month\x02months\x02" + + "Unlimited\x02Public only\x02Try It FREE\x02Bookmarks\x02Save public/priv" + + "ate links\x02Save public/private notes\x02Follow other organizations (so" + + "cial)\x02Organize by tags\x02Advanced filtering/search\x02Full RSS feeds" + + "\x02Custom domain + SSL\x02Link Listings\x02Create link listings (ie, so" + + "cial media bios, etc.)\x02Organize listings by tag\x02Filter/Search list" + + "ings\x02Unlimited QR codes per listing\x02Full Analytics\x02Listing\x02L" + + "ink Shortening\x02Unlimited short links\x02Organize shorts by tags\x02Fi" + + "lter/Search shorts\x02Unlimited QR codes per short\x02Full analytics his" + + "tory\x02QR Code specific analytics\x02Click analytics\x02Referer analyit" + + "cs\x02Country analytics\x02City analytics\x02Device analytics\x02Collabo" + + "ration / Integrations\x02Add unlimited members to organization\x02Slack " + + "Integration\x02MatterMost Integration\x02Build Your Own Integration\x02I" + + "mport / Export\x02Import from Pinboard\x02Import from Firefox\x02Import " + + "from Chrome\x02Import from Safari\x02Export in JSON or HTML\x02API Power" + + "ed\x02Full GraphQL API Access\x02OAuth2 Support\x02Self Hosting\x02Fully" + + " open source\x02Host your own version of Link Taco\x02Documentation\x02P" + + "ricing and feature details for LinkTaco.com\x02pricing, links, linktaco," + + " feature, plans, pricing plans\x02Welcome to LinkTaco!\x02Here you can m" + + "ix all your link saving and sharing needs in one tight little bundle. Mu" + + "ch like a taco. A link taco if you will.\x02LinkTaco is an open source p" + + "latform where you can host all of your links. Custom domains, QR codes, " + + "Analytics, full API, multiple organizations w/unlimited members are just" + + " some of what's included.\x02Social bookmarking is not new, it's just be" + + "en forgotten. Link shortening with analytics has been around forever. Li" + + "nk listings became cool once social media started allowing us to post a " + + "link to our websites in our profiles.\x02Up until now, all of these thin" + + "gs were hosted on different services.\x02Social bookmarking: Pinboard (D" + + "elicious)\x02Link shortening: Bitly et al\x02Link listings: Linktree et " + + "al\x02Peace Pinboard. Bye Bitly. Later Linktree. Hello LinkTaco!\x02Sinc" + + "e we're a\x02100% open source project\x04\x01 \x00R\x02you can host your" + + " own instance if you'd like full control over your own platform.\x02See " + + "the installation documentation for more.\x02Ready to get started? It's f" + + "ree to make an account and use it forever (with some limitations). To us" + + "e all features you have to pay just a few bucks a year, or a few per mon" + + "th if you're a business, and that's it. Simple!\x02Explore Features\x02O" + + "rganize Bookmarks\x02Link Lists\x02Collaboration\x02Integrations\x02Impo" + + "rt Export\x02Unlimited link listings (for social media bios, etc.)\x02Me" + + "mbers can add/edit/remove links (if allowed)\x02Members have access base" + + "d on permissions granted\x02Browser bookmark widget\x02Domain List\x02De" + + "lete\x02Lookup Name\x02Service\x02for\x02Link Shortner\x02Link Listing" + + "\x02No Domains\x02Create Domain\x02Migrate Short Links\x02Old links won'" + + "t work. All code will be moved to the new domain.\x02Domain created succ" + + "essfully\x02Delete Domain\x02%[1]s\x02Domain successfully deleted\x02Yes" + + "\x02Do you really whant to delete this domain\x02Your Organizations\x02O" + + "pen Source\x02Sponsored\x02Paid\x02Enabled\x02Disabled\x02Manage Subscri" + + "ption\x02Domains\x02Manage Members\x02Export\x02Import\x02Payment Histor" + + "y\x02Create Organization\x02Org Username\x02Default Bookmark Visibility" + + "\x02Sorry, you have exceeded the amount of free accounts available. Plea" + + "se update your current free account to create one more\x02Public\x02Priv" + + "ate\x02Organization created successfully\x02Update Organization\x02Is En" + + "abled\x02Organization updated successfully\x02Add Member\x02Permission" + + "\x02Please upgrade to a Business organization to add members\x02Read\x02" + + "Write\x02Admin Write\x02An invitation was sent to this user\x02Something" + + " went wrong, impossible to send invitation\x02Delete Org Member\x02Somet" + + "hing went wrong. This member could not be deleted: %[1]s\x02Member succe" + + "ssfully deleted\x02Delete member %[1]s (%[2]s) from Organization %[3]s?" + + "\x02Member added succesxfully\x02Something went wrong. Impossible to get" + + " the member data\x02Member List\x02No members\x02Create Link\x02Title" + + "\x02Visibility\x02Organization\x02Unread\x02Starred\x02Tags\x02Use comma" + + "s to separate your tags. Example: tag 1, tag 2, tag 3\x02Archive URL\x02" + + "A link was successfully created.\x02Error fetching referenced url: Not f" + + "ound\x02Error fetching referenced link: %[1]v\x02bookmark\x02Popular Boo" + + "kmarks\x02This ain't a popularity contest or anything but this is weird " + + "that there are no links!\x02Most popular links on LinkTaco.com\x02popula" + + "r, links, linktaco, feature, plans, pricing plans\x02Popular Links\x02Fo" + + "llowing\x02Unfollow\x02No organizations\x02Feed\x02Next\x02Prev\x02By" + + "\x02Search\x02Your feed is empty :( Go follow some people. Try the Popul" + + "ar or Recent feeds to find some interesting people to follow.\x02Advance" + + "d Search\x02Include Tags\x02Exclude Tags\x02Clear\x02Followings\x02saved" + + "\x02Recent Bookmarks\x02All\x02Untagged\x02Mark as read\x02Mark as unrea" + + "d\x02Star\x02Unstar\x02This feed has no links. Booo!\x02Archive\x02Follo" + + "w\x02Recent public links added to %[1]s on LinkTaco.com\x02Recent public" + + " links added to LinkTaco.com\x02recent, public, links, linktaco\x02Recen" + + "t Links\x02%[1]s Links\x02You have %[1]d restricted link(s) saved.\x02Up" + + "grade the organization to activate them.\x02Link Detail\x02Public Post" + + "\x02Private Post\x02Bookmark '%[1]s' on LinkTaco.com\x02bookmark, note, " + + "detail, popular, links, linktaco\x02Delete Bookmark\x02Something went wr" + + "ong. This bookmark could not be deleted.\x02Bookmark successfully delete" + + "d\x02Do you really whant to delete this bookmark?\x02Update Link\x02Do y" + + "ou want to delete\x02Link successfully updated.\x02QR Codes powered by L" + + "ink Taco!\x02You will be redirected in 10 seconds.\x02QR Code Details" + + "\x02Download Image\x02Delete QR Code\x02Something went wrong. The QR Cod" + + "e could not be deleted.\x02QR Code successfully deleted\x02Do you really" + + " whant to delete this qr code\x02Export Data\x02File format\x02This feat" + + "ure is not allowed for free user. Please upgrade.\x02As system admin run" + + " this command in the channel you want to connect\x02Disconnect\x02Connec" + + "t\x02Connected\x02Import Data\x02Source\x02Click on Manage Bookmarks fro" + + "m the Bookmarks menu\x02A new window called Library will open\x02In the " + + "left sidebar select the folder you want to export. To export all bookmar" + + "ks select All Bookmarks\x02Click on the icon that has two arrows (up and" + + " down) and choose 'Export Bookmarks to HTML'\x02Go to the File menu and " + + "chose Export\x02Select Export Bookmarks\x02Go to the Bookmarks menu and " + + "choose Bookmark Manager\x02In the left sidebar select the folder that yo" + + "u want to export\x02In the top bookmark bar click on the three points at" + + " the top right\x02Click on on Export Bookmarks\x02Go to https://pinboard" + + ".in/export/ and click on JSON\x02Your importing into a free account / or" + + "ganization, any private pinboard bookmarks will be marked restricted." + + "\x02Upgrade your account to support private bookmarks.\x02Instructions" + + "\x02Safari Bookmarks\x02Chrome Bookmarks\x02Firefox Bookmarks\x02Your bo" + + "okmark import is being processed. We will notify you once it's complete." + + "\x02Update Note\x02Note\x02Note '%[1]s' on LinkTaco.com\x02note, detail," + + " popular, links, linktaco\x02Create Note\x02An note was successfully cre" + + "ated.\x02Error fetching referenced note: %[1]v\x02Store Dashboard\x02Tou" + + "r\x02Recent\x02Popular\x02Categories\x02About\x02Log in\x02Log out\x02GQ" + + "L Playground\x02Save Link\x02Save Note\x02Personal Tokens\x02Client Appl" + + "ications\x02Lists\x02Short Links\x02Admin\x02Help\x02Blog\x02Update Link" + + "s\x02URL\x02Order\x02Delete List\x02Something went wrong. The link could" + + " not be deleted.\x02Link successfully deleted\x02Do you really whant to " + + "delete this link\x02Create Links\x02Previous\x02No Links\x02Update List" + + "\x02Domain\x02Is Default\x02Delete Picture\x02Other\x02Other Name\x02Soc" + + "ial Links\x02Listing successfully updated.\x02Create List\x02A list was " + + "successfully created.\x02Manage Links\x02No Lists\x02Creation Date\x02QR" + + " Codes\x02List successfully deleted\x02Do you really whant to delete thi" + + "s list\x02Create QR Code\x02Create\x02Download\x02Custom background imag" + + "e\x02QR Code succesfully created\x02QR Code Listing\x02View\x02No QR Cod" + + "es\x02Disconnect Mattermost\x02Mattermost successfully disconnected\x02D" + + "o you really want to disconnect this organization from mattermost\x02Con" + + "nect Mattermost\x02This team is already tied to an organization\x02Do yo" + + "u want to connect this organization to mattermost?\x02This feature is re" + + "stricted to free accounts. Please upgrade.\x02Organization linked succes" + + "sfully with mattermost\x02Sorry, free accounts do not support Mattermost" + + " Integration. Please upgrade to continue\x02Connect User\x02In order to " + + "interact with the mattermost you have to connect your account with your " + + "link user\x02Do you want to proceed?\x02User connected successfully\x02N" + + "o slack connection found\x02We sent you a private msg\x02The text to be " + + "searched is required\x02No links were found for %[1]s\x02No organization" + + " found\x02The title is required\x02The url is required\x02The code is re" + + "quired\x02The domain is required\x02Domain not found\x02A new short was " + + "created succesfully\x02Url is required\x02A new link was created succesf" + + "ully\x02Please click in the following link to tie a org %[1]s\x02Install" + + "ed successfully\x02Short Link\x02No Short Links\x02Create Short Link\x02" + + "Short Code\x02No Domain\x02An short link was successfully created.\x02Up" + + "date Short Link\x02Short link successfully updated.\x02Delete Short Link" + + "\x02Short Link successfully deleted\x02URL Shortening powered by Link Ta" + + "co!\x02No URL argument was given\x02%[1]s: domain not found\x02Your shor" + + "t link was successfully created: %[1]s\x02Your link was successfully sav" + + "ed. Details here: %[1]s\x02Link Search\x02Please link your slack user wi" + + "th link: %[1]s\x02We sent you a direct message with instructions\x02Add " + + "Link\x02Disconnect Slack\x02Slack successfully disconnected\x02Do you re" + + "ally want to disconnect this organization from slack\x02Sorry, free acco" + + "unts do not support Slack Integration. Please upgrade to continue\x02In " + + "order to interact with Link Taco you have to connect you slack account w" + + "ith your link user\x02Something went wrong. The user could not be linked" + + ".\x02Connect to Slack Workspace\x02Invalid slack response\x02Do you want" + + " to connect with slack?\x02Organization linked successfully with slack" + + "\x02Invalid email and/or password\x02New passwords do not match\x02User " + + "is not authenticated\x02Current password given is incorrect\x02This fiel" + + "d is required.\x02Please enter a valid email address.\x02Please enter a " + + "valid phone number.\x02Failed the '%[1]s' tag." -var esIndex = []uint32{ // 684 elements +var esIndex = []uint32{ // 685 elements // Entry 0 - 1F 0x00000000, 0x00000014, 0x0000006a, 0x00000089, 0x000000e0, 0x00000199, 0x00000233, 0x000002a4, @@ -1295,145 +1297,146 @@ var esIndex = []uint32{ // 684 elements // Entry C0 - DF 0x00001f37, 0x00001f6a, 0x00001fb1, 0x00001fd8, 0x00001ff0, 0x00002009, 0x0000204c, 0x00002096, - 0x000020a7, 0x000020bd, 0x000020ec, 0x00002122, - 0x0000213e, 0x000021af, 0x000021d9, 0x000021ef, - 0x0000220a, 0x0000221a, 0x0000222c, 0x0000224f, - 0x00002287, 0x000022b0, 0x000022e0, 0x0000230f, - 0x0000232d, 0x00002352, 0x00002366, 0x00002376, - 0x0000238e, 0x000023a8, 0x000023c5, 0x000023da, + 0x000020a7, 0x000020bd, 0x000020eb, 0x0000211a, + 0x00002150, 0x0000216c, 0x000021dd, 0x00002207, + 0x0000221d, 0x00002238, 0x00002248, 0x0000225a, + 0x0000227d, 0x000022b5, 0x000022de, 0x0000230e, + 0x0000233d, 0x0000235b, 0x00002380, 0x00002394, + 0x000023a4, 0x000023bc, 0x000023d6, 0x000023f3, // Entry E0 - FF - 0x000023f3, 0x0000240d, 0x00002421, 0x00002451, - 0x0000246a, 0x0000249b, 0x000024b4, 0x000024cd, - 0x000024f8, 0x00002514, 0x00002526, 0x0000253f, - 0x00002559, 0x00002587, 0x000025cc, 0x000025de, - 0x00002618, 0x0000262c, 0x0000263f, 0x00002657, - 0x00002679, 0x000026ad, 0x000026d5, 0x000026e3, - 0x00002716, 0x0000275c, 0x00002786, 0x000027c9, - 0x000027e2, 0x000027fc, 0x0000283a, 0x0000284d, + 0x00002408, 0x00002421, 0x0000243b, 0x0000244f, + 0x0000247f, 0x00002498, 0x000024c9, 0x000024e2, + 0x000024fb, 0x00002526, 0x00002542, 0x00002554, + 0x0000256d, 0x00002587, 0x000025b5, 0x000025fa, + 0x0000260c, 0x00002646, 0x0000265a, 0x0000266d, + 0x00002685, 0x000026a7, 0x000026db, 0x00002703, + 0x00002711, 0x00002744, 0x0000278a, 0x000027b4, + 0x000027f7, 0x00002810, 0x0000282a, 0x00002868, // Entry 100 - 11F - 0x0000285e, 0x0000287b, 0x000028a2, 0x000028d8, - 0x000028f3, 0x00002904, 0x00002916, 0x00002945, - 0x0000295d, 0x00002995, 0x000029c9, 0x000029e3, - 0x000029ee, 0x000029f5, 0x000029fe, 0x00002a06, - 0x00002a44, 0x00002a59, 0x00002a6b, 0x00002a73, - 0x00002aba, 0x00002adb, 0x00002b58, 0x00002b79, - 0x00002bcb, 0x00002bd5, 0x00002bd8, 0x00002bfc, - 0x00002c27, 0x00002c30, 0x00002c3e, 0x00002c46, + 0x0000287b, 0x0000288c, 0x000028a9, 0x000028d0, + 0x00002906, 0x00002921, 0x00002932, 0x00002944, + 0x00002973, 0x0000298b, 0x000029c3, 0x000029f7, + 0x00002a11, 0x00002a1c, 0x00002a23, 0x00002a2c, + 0x00002a34, 0x00002a72, 0x00002a87, 0x00002a99, + 0x00002aa1, 0x00002ae8, 0x00002b09, 0x00002b86, + 0x00002ba7, 0x00002bf9, 0x00002c03, 0x00002c06, + 0x00002c2a, 0x00002c55, 0x00002c5e, 0x00002c6c, // Entry 120 - 13F - 0x00002c4e, 0x00002c5b, 0x00002c72, 0x00002c8a, - 0x00002ca4, 0x00002cb3, 0x00002cc2, 0x00002cfa, - 0x00002d18, 0x00002d39, 0x00002dfa, 0x00002e14, - 0x00002e33, 0x00002e70, 0x00002ebc, 0x00002ec9, - 0x00002ed6, 0x00002ee6, 0x00002f06, 0x00002f22, - 0x00002f3e, 0x00002f5a, 0x00002f64, 0x00002f8f, - 0x00002fbb, 0x0000300b, 0x00003013, 0x0000301b, - 0x00003024, 0x00003061, 0x00003067, 0x000030c5, + 0x00002c74, 0x00002c7c, 0x00002c89, 0x00002ca0, + 0x00002cb8, 0x00002cd2, 0x00002ce1, 0x00002cf0, + 0x00002d28, 0x00002d46, 0x00002d67, 0x00002e28, + 0x00002e42, 0x00002e61, 0x00002e9e, 0x00002eea, + 0x00002ef7, 0x00002f04, 0x00002f14, 0x00002f34, + 0x00002f50, 0x00002f6c, 0x00002f88, 0x00002f92, + 0x00002fbd, 0x00002fe9, 0x00003039, 0x00003041, + 0x00003049, 0x00003052, 0x0000308f, 0x00003095, // Entry 140 - 15F - 0x000030da, 0x000030eb, 0x0000311a, 0x0000315d, - 0x00003165, 0x00003261, 0x0000326f, 0x00003276, - 0x0000327f, 0x00003287, 0x0000328e, 0x00003297, - 0x0000329f, 0x000032a5, 0x000032af, 0x000032bd, - 0x000032ce, 0x000032d9, 0x000032fc, 0x0000331d, - 0x00003342, 0x0000335a, 0x00003377, 0x0000338d, - 0x000033a9, 0x000033bd, 0x0000340a, 0x0000342b, - 0x00003443, 0x00003466, 0x00003479, 0x00003481, + 0x000030f3, 0x00003108, 0x00003119, 0x00003148, + 0x0000318b, 0x00003193, 0x0000328f, 0x0000329d, + 0x000032a4, 0x000032ad, 0x000032b5, 0x000032bc, + 0x000032c5, 0x000032cd, 0x000032d3, 0x000032dd, + 0x000032eb, 0x000032fc, 0x00003307, 0x0000332a, + 0x0000334b, 0x00003370, 0x00003388, 0x000033a5, + 0x000033bb, 0x000033d7, 0x000033eb, 0x00003438, + 0x00003459, 0x00003471, 0x00003494, 0x000034a7, // Entry 160 - 17F - 0x00003499, 0x000034b3, 0x000034da, 0x000034f8, - 0x00003520, 0x00003540, 0x00003566, 0x00003579, - 0x00003590, 0x000035a4, 0x000035b9, 0x000035d3, - 0x000035f1, 0x00003620, 0x00003637, 0x00003653, - 0x00003674, 0x00003688, 0x000036a0, 0x000036b7, - 0x000036cd, 0x000036e3, 0x000036fb, 0x0000370d, - 0x0000372e, 0x0000373d, 0x00003750, 0x0000376e, - 0x00003796, 0x000037a5, 0x000037de, 0x00003826, + 0x000034af, 0x000034c7, 0x000034e1, 0x00003508, + 0x00003526, 0x0000354e, 0x0000356e, 0x00003594, + 0x000035a7, 0x000035be, 0x000035d2, 0x000035e7, + 0x00003601, 0x0000361f, 0x0000364e, 0x00003665, + 0x00003681, 0x000036a2, 0x000036b6, 0x000036ce, + 0x000036e5, 0x000036fb, 0x00003711, 0x00003729, + 0x0000373b, 0x0000375c, 0x0000376b, 0x0000377e, + 0x0000379c, 0x000037c4, 0x000037d3, 0x0000380c, // Entry 180 - 19F - 0x0000383f, 0x000038db, 0x000039d5, 0x00003af1, - 0x00003b35, 0x00003b5f, 0x00003b86, 0x00003bac, - 0x00003bed, 0x00003bfb, 0x00003c1c, 0x00003c7d, - 0x00003cc0, 0x00003db8, 0x00003dcc, 0x00003de1, - 0x00003df0, 0x00003dfe, 0x00003e0c, 0x00003e1e, - 0x00003e68, 0x00003eac, 0x00003ee5, 0x00003f08, - 0x00003f19, 0x00003f22, 0x00003f36, 0x00003f3f, - 0x00003f44, 0x00003f50, 0x00003f5f, 0x00003f6c, + 0x00003854, 0x0000386d, 0x00003909, 0x00003a03, + 0x00003b1f, 0x00003b63, 0x00003b8d, 0x00003bb4, + 0x00003bda, 0x00003c1b, 0x00003c29, 0x00003c4a, + 0x00003cab, 0x00003cee, 0x00003de6, 0x00003dfa, + 0x00003e0f, 0x00003e1e, 0x00003e2c, 0x00003e3a, + 0x00003e4c, 0x00003e96, 0x00003eda, 0x00003f13, + 0x00003f36, 0x00003f47, 0x00003f50, 0x00003f64, + 0x00003f6d, 0x00003f72, 0x00003f7e, 0x00003f8d, // Entry 1A0 - 1BF - 0x00003f7a, 0x00003f8e, 0x00003fe5, 0x00003fff, - 0x00004010, 0x00004016, 0x00004032, 0x00004035, - 0x00004051, 0x00004064, 0x00004074, 0x00004080, - 0x00004087, 0x00004090, 0x0000409c, 0x000040b2, - 0x000040bb, 0x000040cc, 0x000040d5, 0x000040de, - 0x000040f1, 0x00004105, 0x00004128, 0x00004151, - 0x000041d0, 0x000041d9, 0x000041e1, 0x00004201, - 0x0000421a, 0x0000422b, 0x00004250, 0x00004260, + 0x00003f9a, 0x00003fa8, 0x00003fbc, 0x00004013, + 0x0000402d, 0x0000403e, 0x00004044, 0x00004060, + 0x00004063, 0x0000407f, 0x00004092, 0x000040a2, + 0x000040ae, 0x000040b5, 0x000040be, 0x000040ca, + 0x000040e0, 0x000040e9, 0x000040fa, 0x00004103, + 0x0000410c, 0x0000411f, 0x00004133, 0x00004156, + 0x0000417f, 0x000041fe, 0x00004207, 0x0000420f, + 0x0000422f, 0x00004248, 0x00004259, 0x0000427e, // Entry 1C0 - 1DF - 0x00004268, 0x000042a6, 0x000042ab, 0x000042b4, - 0x000042cf, 0x000042fa, 0x00004328, 0x0000434d, - 0x00004388, 0x000043a5, 0x000043e4, 0x00004400, - 0x00004439, 0x0000444b, 0x00004458, 0x00004465, - 0x0000446d, 0x00004479, 0x00004487, 0x00004490, - 0x0000449a, 0x000044a4, 0x000044f6, 0x00004505, - 0x00004523, 0x00004553, 0x0000457a, 0x00004583, - 0x00004598, 0x000045f0, 0x00004617, 0x00004661, + 0x0000428e, 0x00004296, 0x000042d4, 0x000042d9, + 0x000042e2, 0x000042fd, 0x00004328, 0x00004356, + 0x0000437b, 0x000043b6, 0x000043d3, 0x00004412, + 0x0000442e, 0x00004467, 0x00004479, 0x00004486, + 0x00004493, 0x0000449b, 0x000044a7, 0x000044b5, + 0x000044be, 0x000044c8, 0x000044d2, 0x00004524, + 0x00004533, 0x00004551, 0x00004581, 0x000045a8, + 0x000045b1, 0x000045c6, 0x0000461e, 0x00004645, // Entry 1E0 - 1FF - 0x00004671, 0x0000467b, 0x0000468b, 0x0000469e, - 0x000046a3, 0x000046ad, 0x000046b6, 0x000046ba, - 0x000046c1, 0x00004745, 0x00004758, 0x00004765, - 0x00004772, 0x0000477a, 0x00004784, 0x0000478d, - 0x000047a2, 0x000047a8, 0x000047b6, 0x000047c9, - 0x000047df, 0x000047e8, 0x000047f4, 0x00004818, - 0x00004821, 0x00004828, 0x00004866, 0x0000489b, - 0x000048c3, 0x000048d3, 0x000048e1, 0x0000490d, + 0x0000468f, 0x0000469f, 0x000046a9, 0x000046b9, + 0x000046cc, 0x000046d1, 0x000046db, 0x000046e4, + 0x000046e8, 0x000046ef, 0x00004773, 0x00004786, + 0x00004793, 0x000047a0, 0x000047a8, 0x000047b2, + 0x000047bb, 0x000047d0, 0x000047d6, 0x000047e4, + 0x000047f7, 0x0000480d, 0x00004816, 0x00004822, + 0x00004846, 0x0000484f, 0x00004856, 0x00004894, + 0x000048c9, 0x000048f1, 0x00004901, 0x0000490f, // Entry 200 - 21F - 0x00004939, 0x0000494b, 0x00004961, 0x00004977, - 0x00004998, 0x000049cc, 0x000049dc, 0x00004a10, - 0x00004a2e, 0x00004a59, 0x00004a6b, 0x00004a7a, - 0x00004a96, 0x00004ab0, 0x00004ad6, 0x00004aed, - 0x00004afb, 0x00004b0e, 0x00004b44, 0x00004b63, - 0x00004b82, 0x00004b91, 0x00004ba4, 0x00004bf3, - 0x00004c4d, 0x00004c59, 0x00004c62, 0x00004c6c, - 0x00004c7b, 0x00004c82, 0x00004cbb, 0x00004ceb, + 0x0000493b, 0x00004967, 0x00004979, 0x0000498f, + 0x000049a5, 0x000049c6, 0x000049fa, 0x00004a0a, + 0x00004a3e, 0x00004a5c, 0x00004a87, 0x00004a99, + 0x00004aa8, 0x00004ac4, 0x00004ade, 0x00004b04, + 0x00004b1b, 0x00004b29, 0x00004b3c, 0x00004b72, + 0x00004b91, 0x00004bb0, 0x00004bbf, 0x00004bd2, + 0x00004c21, 0x00004c7b, 0x00004c87, 0x00004c90, + 0x00004c9a, 0x00004ca9, 0x00004cb0, 0x00004ce9, // Entry 220 - 23F - 0x00004d77, 0x00004dcf, 0x00004dfb, 0x00004e19, - 0x00004e4f, 0x00004e99, 0x00004eea, 0x00004f07, - 0x00004f3d, 0x00004fb8, 0x00004fee, 0x00004ffc, - 0x00005011, 0x00005026, 0x0000503c, 0x00005095, - 0x000050a5, 0x000050aa, 0x000050c7, 0x000050f1, - 0x000050fc, 0x0000511b, 0x00005145, 0x0000514d, - 0x00005152, 0x0000515b, 0x00005163, 0x0000516f, - 0x00005175, 0x00005185, 0x00005194, 0x000051ab, + 0x00004d19, 0x00004da5, 0x00004dfd, 0x00004e29, + 0x00004e47, 0x00004e7d, 0x00004ec7, 0x00004f18, + 0x00004f35, 0x00004f6b, 0x00004fe6, 0x0000501c, + 0x0000502a, 0x0000503f, 0x00005054, 0x0000506a, + 0x000050c3, 0x000050d3, 0x000050d8, 0x000050f5, + 0x0000511f, 0x0000512a, 0x00005149, 0x00005173, + 0x0000517b, 0x00005180, 0x00005189, 0x00005191, + 0x0000519d, 0x000051a3, 0x000051b3, 0x000051c2, // Entry 240 - 25F - 0x000051ba, 0x000051c6, 0x000051d7, 0x000051ed, - 0x000051f4, 0x00005201, 0x0000520d, 0x00005213, - 0x00005218, 0x00005229, 0x0000522d, 0x00005233, - 0x00005242, 0x00005273, 0x0000528c, 0x000052a5, - 0x000052b1, 0x000052ba, 0x000052c4, 0x000052d5, - 0x000052dd, 0x000052ec, 0x000052fa, 0x000052ff, - 0x0000530b, 0x0000531a, 0x00005332, 0x0000533e, - 0x0000535e, 0x0000536c, 0x00005377, 0x0000538a, + 0x000051d9, 0x000051e8, 0x000051f4, 0x00005205, + 0x0000521b, 0x00005222, 0x0000522f, 0x0000523b, + 0x00005241, 0x00005246, 0x00005257, 0x0000525b, + 0x00005261, 0x00005270, 0x000052a1, 0x000052ba, + 0x000052d3, 0x000052df, 0x000052e8, 0x000052f2, + 0x00005303, 0x0000530b, 0x0000531a, 0x00005328, + 0x0000532d, 0x00005339, 0x00005348, 0x00005360, + 0x0000536c, 0x0000538c, 0x0000539a, 0x000053a5, // Entry 260 - 27F - 0x00005396, 0x000053b1, 0x000053da, 0x000053eb, - 0x000053f1, 0x000053fb, 0x0000541b, 0x00005438, - 0x0000544c, 0x00005450, 0x00005463, 0x0000547a, - 0x0000549d, 0x000054da, 0x000054f3, 0x0000552d, - 0x00005562, 0x000055ab, 0x000055d5, 0x00005638, - 0x00005649, 0x000056a3, 0x000056b5, 0x000056d2, - 0x000056f5, 0x00005714, 0x00005738, 0x0000575c, - 0x00005778, 0x00005790, 0x000057a4, 0x000057bc, + 0x000053b8, 0x000053c4, 0x000053df, 0x00005408, + 0x00005419, 0x0000541f, 0x00005429, 0x00005449, + 0x00005466, 0x0000547a, 0x0000547e, 0x00005491, + 0x000054a8, 0x000054cb, 0x00005508, 0x00005521, + 0x0000555b, 0x00005590, 0x000055d9, 0x00005603, + 0x00005666, 0x00005677, 0x000056d1, 0x000056e3, + 0x00005700, 0x00005723, 0x00005742, 0x00005766, + 0x0000578a, 0x000057a6, 0x000057be, 0x000057d2, // Entry 280 - 29F - 0x000057d4, 0x000057ea, 0x0000580e, 0x0000581f, - 0x00005845, 0x00005894, 0x000058aa, 0x000058b5, - 0x000058c6, 0x000058d7, 0x000058e5, 0x000058f1, - 0x00005915, 0x0000592b, 0x0000594d, 0x00005961, - 0x00005981, 0x0000599d, 0x000059c4, 0x000059e1, - 0x00005a0e, 0x00005a47, 0x00005a53, 0x00005a8c, - 0x00005abd, 0x00005aca, 0x00005adf, 0x00005b01, - 0x00005b2f, 0x00005ba6, 0x00005c08, 0x00005c3c, + 0x000057ea, 0x00005802, 0x00005818, 0x0000583c, + 0x0000584d, 0x00005873, 0x000058c2, 0x000058d8, + 0x000058e3, 0x000058f4, 0x00005905, 0x00005913, + 0x0000591f, 0x00005943, 0x00005959, 0x0000597b, + 0x0000598f, 0x000059af, 0x000059cb, 0x000059f2, + 0x00005a0f, 0x00005a3c, 0x00005a75, 0x00005a81, + 0x00005aba, 0x00005aeb, 0x00005af8, 0x00005b0d, + 0x00005b2f, 0x00005b5d, 0x00005bd4, 0x00005c36, // Entry 2A0 - 2BF - 0x00005c57, 0x00005c74, 0x00005c91, 0x00005cbe, - 0x00005cdb, 0x00005d00, 0x00005d20, 0x00005d44, - 0x00005d5c, 0x00005d83, 0x00005dab, 0x00005dbe, -} // Size: 2760 bytes + 0x00005c6a, 0x00005c85, 0x00005ca2, 0x00005cbf, + 0x00005cec, 0x00005d09, 0x00005d2e, 0x00005d4e, + 0x00005d72, 0x00005d8a, 0x00005db1, 0x00005dd9, + 0x00005dec, +} // Size: 2764 bytes -const esData string = "" + // Size: 23998 bytes +const esData string = "" + // Size: 24044 bytes "\x02Página Restringida\x02Esta función solo está permitida para usuarios" + " de pago. Por favor actualice su plan\x02Continuar para actualizar plan" + "\x02Marcadores sociales más compartir enlaces, acortar y listar, todo en" + @@ -1515,7 +1518,7 @@ const esData string = "" + // Size: 23998 bytes "permiso privado\x02Valor de permiso predeterminado inválido\x02Valor de " + "Visibilidad inválido\x02URL inválida\x02La URL no puede exceder los 2048" + " caracteres.\x02El slug de organización es requerida\x02El título es req" + - "uerido\x02El título no debe exceler los 150 caracteres\x02Las etiquetas " + + "uerido\x02El título no debe exceler los 500 caracteres\x02Las etiquetas " + "no deben exceder 10 caracteres\x02Solo miembros con permisio de escritur" + "a tiene autorización para esta acción\x02La creación de links privados n" + "o está permitido para organizaciones gratuitas. Por favor actualizar\x02" + @@ -1556,240 +1559,241 @@ const esData string = "" + // Size: 23998 bytes "ncorrecto\x02ID de dominio inválido\x02ID de dominio inválido.\x02Solo l" + "os superusuarios pueden eliminar dominios a nivel de sistema\x02No se pu" + "ede eliminar. El dominio tiene enlaces cortos o listados activos.\x02URL" + - " es requerido\x02DomainID es requerido\x02El código corto no debe excede" + - "r 20 caracteres\x02Este código no puede ser usado. Por favor ecoja otra" + - "\x02Organización No Encontrada\x02Has alcanzado tu límite mensual de enl" + - "aces cortos. Por favor, actualiza tu plan para eliminar esta limitación." + - "\x02short-service-domain no está configurado\x02Dominio No Encontrado" + - "\x02El código está duplicado\x02Id es requerido\x02Slug es requerido\x02" + - "Slug de Organización es requerido\x02Las cuentas gratuitas solo permiten" + - " 1 lista de enlaces.\x02list-service-domain no está configurado\x02Este " + - "Slug ya está registrado para este dominio\x02Ya hay una lista por defect" + - "o para este dominio\x02El Slug de Lista es requerido\x02Order de Link no" + - " puede ser menor a 0\x02Lista No Encontrada\x02ID es requerido\x02El Tít" + - "ulo es requerido\x02ID no puede ser menor a 0\x02Lista de Links No Encon" + - "trada\x02Título es muy largo\x02El código no es válido\x02Elemento ID no" + - " es válido\x02Lista No Encontrado\x02No puedes crear más de 5 códigos qr" + - " por lista\x02Link Corto No Encontrado\x02No puedes crear más de 5 códig" + - "o qr por dominio\x02Código QR No Encontrado\x02El usuario sigue a %[1]s" + - "\x02Este usuario no sigue a esta organización\x02El usuario no sigue a %" + - "[1]s\x02orgType Inválido\x02Valor de nivel inválido\x02Valor de estado i" + - "nválido\x02Un Slug válido de Organización es requerido\x02Slug de Organi" + - "zación es requerida para dominios de nivel de usuario\x04\x00\x01 \x0d" + - "\x02ID inválido\x02El dominio está en uso. No se puede cambiar el servic" + - "io.\x02Nombre es requerido\x02Email es requerido\x02Invitación de Regist" + - "ro\x02Linktaco: Invitación de Registro\x02Has sido invitado por %[1]s pa" + - "ra unirse a Link Taco\x02Por favor de click en el siguiente link\x02No e" + - "ncontrado\x02No es posible enviar ambos cursores after y before\x02Solo " + - "los miembros con permiso de lectura pueden realizar esta acción\x02No fu" + - "e posible una organización adecuada\x02Solo los superusuarios pueden obt" + - "ener dominios de nivel de sistema\x02Link Corto No Encontrado\x02Tipo de" + - " código inválido\x02El slug de organización es requerido para este tipo " + - "de token\x02Acceso Restringido\x02Acceso denegado.\x02Organización no en" + - "contrada.\x02ID de listado inválido proporcionado.\x02Listado inválido p" + - "ara la organización especificada.\x02Zona de pruebas de GraphQL\x02Envía" + - "r Consulta\x02Regresar a Inicio\x02Fuente de origen inválida para el imp" + - "ortador.\x02El archivo es requerido\x02El archivo subido para esta fuent" + - "e debería de ser html\x02El archivo subido para esta fuente debe de ser " + - "json\x02Tokens de Acceso Personal\x02Comentario\x02Creado\x02Expirado" + - "\x02Revocar\x02No has creado ningún token de acceso personal para tu cue" + - "nta\x02Clientes Autorizados\x02Nombre de Cliente\x02Permiso\x02No has au" + - "torizardo ningún client de tercero para acceder a tu cuenta.\x02Agregar " + - "Token de Acceso Personal\x02Nota: Tu token de acceso nunca se te" + - " volverá a mostrar. Guárdalo en secreto. Expirará dentro de un " + - "año.\x02Revocar Token de Acceso Personal\x02¿Desea revokar este token de" + - " acceso persona? Esta acción no puede ser deshecha.\x02Si, hazlo\x02No" + - "\x02Acceso personal agregada con éxito\x02Token de autorización revocado" + - " con éxito\x02Clientes\x02ID de Cliente\x02Manejar\x02Agregar\x02Sin Cli" + - "entes\x02Agregar Cliente OAuth2\x02Descripción de Cliente\x02URL de redi" + - "reccionamiento\x02URL de Cliente\x02Client Secreto\x02Nota: Tu cliente s" + - "ecreto nunca será mostrado de nuevo.\x02Manejar clientes de OAuth 2.0" + - "\x02Revoca tokens de cliente secreto\x02Si los tokens de portador de OAu" + - "th 2.0 emitidos para tu cliente de OAuth o tu cliente secreto se han rev" + - "elado a un tercero, debes revocar todos los tokens y solicitar que se em" + - "itan reemplazos.\x02Revocar cliente de tokens\x02Desregistrar este clien" + - "t OAuth\x02Esto registrará de manera permanente tu client de OAuth 2.0" + - "\x02revoca todos los tokens emitidos, y prohíbie la emisión de nuevos to" + - "kens.\x02Desregistrar\x02Descripción\x02URL informativa\x02Cliente de OA" + - "uth 2.0 registrado\x02Cliente agregado con éxito\x02Cliente revocado con" + - " éxito\x02Cliente recreado con éxito\x02Autorizar\x02gustaría acceder a " + - "tu cuenta de Link Taco\x02es una applicación de terceros operada por\x02" + - "Podrás revocar este acceso en cualquier momento en la tab OAtuh de tu pe" + - "rfíl.\x02Alcance\x02Aprobar\x02Rechazar\x02LinkTaco - La importación de " + - "tus marcadores está completa.\x02Hola,\x02Solo queríamos informarte que " + - "la importación de tus marcadores se ha completado con éxito.\x02- Equipo" + - " de LinkTaco\x02Dominio Inactivo\x02El dominio %[1]s está actualmente de" + - "sactivado\x02Por favor actualice la subscripción de su cuenta para react" + - "ivarla\x02Precios\x02Cada cuenta puede crear organizaciones ilimitadas. " + - "Cada organización tiene sus propios marcadores, listados, análisis, etc." + - " Todas las características a continuación pertenecen a cada organización" + - " con sus propias URL únicas, agrupaciones, y más.\x02Funcionalidad\x02Gr" + - "atis\x02Personal\x02Negocio\x02Precio\x02por año\x02por mes\x02meses\x02" + - "Ilimitado\x02Solo público\x02Pruébalo GRATIS\x02Marcadores\x02Guardar en" + - "laces públicos/privados\x02Guardar notas públicas/privadas\x02Seguir otr" + - "as organizaciones (social)\x02Organizar por etiquetas\x02Filtrado/ búsqu" + - "eda avanzada\x02Fuentes RSS completas\x02Dominio personalizado + SSL\x02" + - "Listados de enlaces\x02Crear listados de enlaces (por ejemplo, biografía" + - "s en redes sociales, etc.)\x02Organizar listados por etiquetas\x02Filtra" + - "r/Buscar listados\x02Códigos QR ilimitados por listado\x02Análisis compl" + - "eto\x02Listado\x02Acortamiento de enlaces\x02Enlaces cortos ilimitados" + - "\x02Organizar enlaces cortos por etiquetas\x02Filtrar/Buscar enlaces cor" + - "tos\x02Códigos QR ilimitados por enlace corto\x02Historial completo de a" + - "nálisis\x02Análisis específicos de códigos QR\x02Análisis de clics\x02An" + - "álisis de referidos\x02Análisis por país\x02Análisis por ciudad\x02Anál" + - "isis de dispositivos\x02Colaboración / Integraciones\x02Agregar miembros" + - " ilimitados a la organización\x02Integración con Slack\x02Integración co" + - "n MatterMost\x02Construye tu propia integración\x02Importar / Exportar" + - "\x02Importar desde Pinboard\x02Importar desde Firefox\x02Importar desde " + - "Chrome\x02Importar desde Safari\x02Exportar en JSON o HTML\x02Impulsado " + - "por API\x02Acceso completo a la API GraphQL\x02Soporte OAuth2\x02Alojami" + - "ento propio\x02Totalmente de código abierto\x02Hospeda tu propia versión" + - " de Link Taco\x02Documentación\x02Detalles de precios y características " + - "para LinkTaco.com\x02precios, enlaces, linktaco, características, planes" + - ", planes de precios\x02¡Bienvenido a LinkTaco!\x02Aquí puedes combinar t" + - "odas tus necesidades de guardar y compartir enlaces en un solo paquete c" + - "ompacto. Como un taco. Un taco de enlaces, por así decirlo.\x02LinkTaco " + - "es una plataforma de código abierto donde puedes alojar todos tus enlace" + - "s. Dominios personalizados, códigos QR, análisis, API completa, múltiple" + - "s organizaciones con miembros ilimitados son solo algunas de las caracte" + - "rísticas incluidas.\x02Los marcadores sociales no son nuevos, solo se ha" + - "n olvidado. El acortamiento de enlaces con análisis ha existido siempre." + - " Los listados de enlaces se volvieron populares cuando las redes sociale" + - "s comenzaron a permitirnos publicar un enlace a nuestros sitios web en n" + - "uestros perfiles.\x02Hasta ahora, todas estas cosas se alojaban en difer" + - "entes servicios.\x02Marcadores sociales: Pinboard (Delicious)\x02Acortam" + - "iento de enlaces: Bitly y otros\x02Listados de enlaces: Linktree y otros" + - "\x02Adiós Pinboard. Adiós Bitly. Adiós Linktree. ¡Hola LinkTaco!\x02Como" + - " somos un\x02proyecto 100% de código abierto\x04\x01 \x00\\\x02puedes al" + - "ojar tu propia instancia si deseas tener control total sobre tu propia p" + - "lataforma.\x02Consulta la documentación de instalación para más informac" + - "ión.\x02¿Listo para comenzar? Es gratis crear una cuenta y usarla para s" + - "iempre (con algunas limitaciones). Para usar todas las funciones, solo t" + - "ienes que pagar unos pocos dólares al año, o unos pocos al mes si eres u" + - "na empresa, y eso es todo. ¡Simple!\x02Explorar funcciones\x02Organizar " + - "marcadores\x02Lista de Links\x02Colaboración\x02Integraciones\x02Importa" + - "r Exportar\x02Listados de enlaces ilimitados (para biografías en redes s" + - "ociales, etc.)\x02Los miembros pueden agregar/editar/eliminar enlaces (s" + - "i se permite)\x02Los miembros tienen acceso según los permisos otorgados" + - "\x02Widget de marcadores del navegador\x02Lista de Dominio\x02Eliminar" + - "\x02Búsqueda de Nombre\x02Servicio\x02para\x02Link Cortos\x02Lista de Li" + - "nks\x02Sin Dominios\x02Crear Dominio\x02Migrar Links Cortos\x02Los links" + - " viejos no funcionanrán. Todos los códigos serán movidos al nuevo domini" + - "o.\x02Dominio creado con éxito\x02Eliminar Dominio\x02%[1]s\x02Dominio e" + - "lminado con éxito\x02Si\x02Desea eliminar este dominio\x02Tus Organizaci" + - "ones\x02Código Abierto\x02Patrocinado\x02Pagado\x02Activado\x02Desactiva" + - "do\x02Manejar Subscripción\x02Dominios\x02Manejar Miembros\x02Exportar" + - "\x02Importar\x02Historial de Pagos\x02Crear Organización\x02Nombre de us" + - "uario de Organización\x02Visibilidad predeterminada de marcadores\x02Lo " + - "sentimos, has alcanzado el número de cuentas gratuitas disponibles. Por " + - "favor actualice su cuenta gratuita para crear más\x02Público\x02Privado" + - "\x02Organización creada con éxito\x02Actualizar Organización\x02Está hab" + - "ilitado\x02Organización actualizada con éxito\x02Agregar Miembro\x02Perm" + - "iso\x02Por favor actualice a cuenta de negocio para agregar miembros\x02" + - "Leer\x02Escribir\x02Escritura de administrador\x02Una invitación fue env" + - "iada a este usuario\x02Algo salió mal, imposible enviar invitación\x02El" + - "iminar miembro de la organización\x02Algo salió mal. No se pudo eliminar" + - " a este miembro: %[1]s\x02Miembro eliminado con éxito\x02¿Eliminar al mi" + - "embro %[1]s (%[2]s) de la Organización %[3]s?\x02Miembro agregado con éx" + - "ito\x02Algo salió mal. Imposible obtener los datos de miembros\x02Lista " + - "de Miembros\x02Sin miembros\x02Crear Enlace\x02Título\x02Visibilidad\x02" + - "Organización\x02Sin leer\x02Destacado\x02Etiquetas\x02Usa comas para sep" + - "arar las etiquetas. Ejemplo: etiqueta 1, etiqueta 2, etiqueta 3\x02URL d" + - "e archivo\x02Un link fue creado con éxito\x02Error consultando url refer" + - "erida: No encontrada\x02Error consultando link referido: %[1]v\x02marcad" + - "or\x02Marcadores Populares\x02Esto no es un concurso de popularidad o al" + - "go parecido, pero es raro que no hayan links!\x02Enlaces más populares e" + - "n LinkTaco.com\x02populares, enlaces, linktaco, características, planes," + - " planes de precios\x02Links Populares\x02Siguiendo\x02Dejar de seguir" + - "\x02Sin organizaciones\x02Feed\x02Siguiente\x02Anterior\x02Por\x02Buscar" + - "\x02Tu feed está vacío :( Sigue a algunas personas. Prueba los feeds Pop" + - "ulares o Recientes para encontrar gente interesante a seguir.\x02Búsqued" + - "a Avanzada\x02Incluir Tags\x02Excluir Tags\x02Limpiar\x02Siguiendo\x02gu" + - "ardado\x02Marcadores Recientes\x02Todos\x02Sin etiquetar\x02Marcar como " + - "leído\x02Marcar como no leído\x02Destacar\x02No destacar\x02Este feed no" + - " tiene enlaces. ¡Buuu!\x02Archivar\x02Seguir\x02Enlaces públicos recient" + - "es añadidos a %[1]s en LinkTaco.com\x02Enlaces públicos recientes añadid" + - "os a LinkTaco.com\x02recientes, públicos, enlaces, linktaco\x02Links Rec" + - "ientes\x02%[1]s Enlaces\x02Tienes %[1]d enlaces restrigidos guardados." + - "\x02Actualiza la organización para activarlos.\x02Detalle de Enlace\x02P" + - "ublicación Pública\x02Públicación Privada\x02Marcador '%[1]s' en LinkTac" + - "o.com\x02marcador, nota, detalle, popular, enlaces, linktaco\x02Borrar M" + - "arcador\x02Algo salió mal. No se pudo eliminar este marcador.\x02Marcado" + - "r eliminado con éxito\x02¿Realmente deseas eliminar este marcador?\x02Ac" + - "tualizar Enlace\x02Desea eliminar\x02Link actualizado con éxito\x02Códig" + - "o QR por Link Taco!\x02Serás redireccionado en 10 segundos.\x02Detalles " + - "de Código QR\x02Bajar Imágen\x02Elimiar Código QR\x02Algo salió mal. El " + - "Código QE no pudo ser eliminado.\x02Código QR elminado con éxito\x02Dese" + - "a eliminar este código qr\x02Exportar Datos\x02Formato de archivo\x02Est" + - "a función no está habilitada para cuentas gratuitas. Por favor actualiza" + - "r\x02Como administrador de sistema corrar el siguiente comando en el can" + - "al que desees conectar\x02Desconectar\x02Conectar\x02Conectado\x02Import" + - "ar Datos\x02Fuente\x02Click en Manejar Marcadores desde el menú de Marca" + - "dores\x02Una nueva ventana llamada Biblioteca se abrirá\x02En la barra l" + - "ateral izquierda seleccione la carpeta que desea exportar. Para exportar" + - " todos los marcadores selecciones Todos los Marcadores\x02Click en el íc" + - "ono con dos flechas (arriba y abajo) y escoje 'Exportar Marcador a HTML'" + - "\x02En el menú de Archivo selecciones Exportar\x02Selecione Exportar Mar" + - "cadores\x02Ve al menú de Marcadores y escoge Manejar Marcadores\x02En la" + - " barra latareral izquierda selecciones la carpeta que desea exportar\x02" + - "En la barra marcadores, de click en los tres puntos de la parte superior" + - " derecha\x02Click en Exportar Marcadores\x02Visita https://pinboard.in/e" + - "xport/ y da click en JSON\x02Al importar a una cuenta/organización gratu" + - "ita, todos los marcadores privados del tablero se marcarán como restring" + - "idos.\x02Actualice su cuenta para admitir marcadores privados.\x02Instru" + - "cciones\x02Marcadores de Safari\x02Marcadores de Chrome\x02Marcadores de" + - " Firefox\x02Se está procesando la importación de tu marcador. Te notific" + - "aremos cuando se complete.\x02Actualizar Nota\x02Nota\x02Nota '%[1]s' en" + - " LinkTaco.com\x02nota, detalle, popular, enlaces, linktaco\x02Crear Nota" + - "\x02Una nota fue creada con éxito\x02Error consultado nota referenciada:" + - " %[1]v\x02Tablero\x02Tour\x02Reciente\x02Popular\x02Categorías\x02Sobre" + - "\x02Iniciar Sesión\x02Cerrar Sesión\x02Zona de pruebas de GQL\x02Guardar" + - " Enlace\x02Guardar Noa\x02Token Personales\x02Aplicaciones Clientes\x02L" + - "istas\x02Links Cortos\x02Administrar\x02Ayuda\x02Blog\x02Actualizar Link" + - "s\x02URL\x02Orden\x02Eliminar Lista\x02Algo salió mal. El enlace no pudo" + - " ser eliminado\x02Enlace creado con éxito\x02Desea eliminar este link" + - "\x02Crear Links\x02Anterior\x02Sin Links\x02Actualizar Lista\x02Dominio" + - "\x02Es por defecto\x02Eliminar Foto\x02Otro\x02Otro Nombre\x02Links Soci" + - "ales\x02Lista creada con éxito\x02Crear Lista\x02Una lista fue creada co" + - "n éxito\x02Manejar Links\x02Sin Listas\x02Fecha de Creación\x02Códigos Q" + - "R\x02Lista eliminada con éxito\x02¿Realmente quieres eliminar esta lista" + - "?\x02Crear Código QR\x02Crear\x02Descargar\x02Fondo de pantalla personal" + - "izado\x02Código QR creado con éxito\x02Código QR de Lista\x02Ver\x02No h" + - "ay Códigos QR\x02Desconectar Mattermost\x02Mattermost desconectado con é" + - "xito\x02Desea realmente desconectar esta organización de mattermost\x02C" + - "onnectar con Mattermost\x02Este equipo ya se encuentra vinculado a una o" + - "rganización\x02¿Deseas conectar esta organización con mattermost?\x02Est" + - "a función está restringida para cuentas gratis. Por favor actualiza\x02L" + - "a organización fue vinculada con éxito\x02Lo sentimos, las cuentas gratu" + - "itas no soportan la integración con Mattermost. Por favor actualice\x02C" + - "onectar Usuario\x02Para interactuar con mattermost tienes que conectar t" + - "u cuenta con tu usuario de Link Taco\x02¿Desea proceder?\x02Usuario cone" + - "ctado con éxito\x02Connexión con slack no encontrada\x02Te enviamos un m" + - "ensaje privado\x02El texto a ser buscado es requerido\x02No se encuentra" + - "ron links para %[1]s\x02Organización no encontrada\x02El título es reque" + - "rido\x02La url es requerida\x02El código es requerido\x02El dominio es r" + - "equerido\x02Dominio no encontrado\x02A nuevo short fue creado con éxito" + - "\x02Url es requerida\x02Un nuevo enlace fue creado con éxito\x02Por favo" + - "r haga click en el próximo link para vincular una organización %[1]s\x02" + - "Instalacción exitosa\x02Link Corto\x02Sin Links Cortos\x02Crear Link Cor" + - "to\x02Código Corto\x02Sin Dominio\x02Un link corto fue creado con éxito" + - "\x02Actualizar Link Corto\x02Link Corto actualizado con éxito\x02Elimina" + - "r Link Corto\x02Link Corto eliminado con éxito\x02URL acortada por Link " + - "Taco!\x02No se proporcionó un argumento de URL\x02%[1]s: dominio no enco" + - "ntrado\x02Tu enlace corto fue creado con éxito: %[1]s\x02Tu enlace fue g" + - "uardado con éxito. Detalles aquí: %[1]s\x02Buscar Link\x02Por favor vinc" + - "ule tu usuario de slack con el link: %[1]s\x02Te enviamos un mensaje dir" + - "ecto con instrucciones\x02Agregar Link\x02Desconectar de Slack\x02Slack " + - "fue desconectado con éxito\x02Desea desconectar esta organización de sla" + - "ck\x02Lo sentimos, las cuentas gratis no soportan integración con Slack." + - " Por favor actualice su subscripcón para continuar\x02Para interactuar c" + - "on Link Taco tienes que conectar tu cuenta de slack con tu usuario de Li" + - "nk Taco\x02Algo salió mal. El usuario no puede ser vinculado.\x02Conecta" + - "r a Slack Workspace\x02Respuesta de slack inválida\x02¿Deseas conectar c" + - "on Slack?\x02Organización vinculada con éxito con slack\x02Email y/o pas" + - "sword inválido\x02Las nuevas contraseñas no coinciden\x02El usuario no e" + - "stá autenticado\x02La contraseña actual es incorrecta\x02Este campo es r" + - "equerido\x02Por favor introduzca un correo válido\x02Por favor introduzc" + - "a un número válido\x02El '%[1]s' falló." + " es requerido\x02DomainID es requerido\x02El título no debe exceler los " + + "150 caracteres\x02El código corto no debe exceder 20 caracteres\x02Este " + + "código no puede ser usado. Por favor ecoja otra\x02Organización No Encon" + + "trada\x02Has alcanzado tu límite mensual de enlaces cortos. Por favor, a" + + "ctualiza tu plan para eliminar esta limitación.\x02short-service-domain " + + "no está configurado\x02Dominio No Encontrado\x02El código está duplicado" + + "\x02Id es requerido\x02Slug es requerido\x02Slug de Organización es requ" + + "erido\x02Las cuentas gratuitas solo permiten 1 lista de enlaces.\x02list" + + "-service-domain no está configurado\x02Este Slug ya está registrado para" + + " este dominio\x02Ya hay una lista por defecto para este dominio\x02El Sl" + + "ug de Lista es requerido\x02Order de Link no puede ser menor a 0\x02List" + + "a No Encontrada\x02ID es requerido\x02El Título es requerido\x02ID no pu" + + "ede ser menor a 0\x02Lista de Links No Encontrada\x02Título es muy largo" + + "\x02El código no es válido\x02Elemento ID no es válido\x02Lista No Encon" + + "trado\x02No puedes crear más de 5 códigos qr por lista\x02Link Corto No " + + "Encontrado\x02No puedes crear más de 5 código qr por dominio\x02Código Q" + + "R No Encontrado\x02El usuario sigue a %[1]s\x02Este usuario no sigue a e" + + "sta organización\x02El usuario no sigue a %[1]s\x02orgType Inválido\x02V" + + "alor de nivel inválido\x02Valor de estado inválido\x02Un Slug válido de " + + "Organización es requerido\x02Slug de Organización es requerida para domi" + + "nios de nivel de usuario\x04\x00\x01 \x0d\x02ID inválido\x02El dominio e" + + "stá en uso. No se puede cambiar el servicio.\x02Nombre es requerido\x02E" + + "mail es requerido\x02Invitación de Registro\x02Linktaco: Invitación de R" + + "egistro\x02Has sido invitado por %[1]s para unirse a Link Taco\x02Por fa" + + "vor de click en el siguiente link\x02No encontrado\x02No es posible envi" + + "ar ambos cursores after y before\x02Solo los miembros con permiso de lec" + + "tura pueden realizar esta acción\x02No fue posible una organización adec" + + "uada\x02Solo los superusuarios pueden obtener dominios de nivel de siste" + + "ma\x02Link Corto No Encontrado\x02Tipo de código inválido\x02El slug de " + + "organización es requerido para este tipo de token\x02Acceso Restringido" + + "\x02Acceso denegado.\x02Organización no encontrada.\x02ID de listado inv" + + "álido proporcionado.\x02Listado inválido para la organización especific" + + "ada.\x02Zona de pruebas de GraphQL\x02Envíar Consulta\x02Regresar a Inic" + + "io\x02Fuente de origen inválida para el importador.\x02El archivo es req" + + "uerido\x02El archivo subido para esta fuente debería de ser html\x02El a" + + "rchivo subido para esta fuente debe de ser json\x02Tokens de Acceso Pers" + + "onal\x02Comentario\x02Creado\x02Expirado\x02Revocar\x02No has creado nin" + + "gún token de acceso personal para tu cuenta\x02Clientes Autorizados\x02N" + + "ombre de Cliente\x02Permiso\x02No has autorizardo ningún client de terce" + + "ro para acceder a tu cuenta.\x02Agregar Token de Acceso Personal\x02Nota" + + ": Tu token de acceso nunca se te volverá a mostrar. Guá" + + "rdalo en secreto. Expirará dentro de un año.\x02Revocar Token de Acceso " + + "Personal\x02¿Desea revokar este token de acceso persona? Esta acción no " + + "puede ser deshecha.\x02Si, hazlo\x02No\x02Acceso personal agregada con é" + + "xito\x02Token de autorización revocado con éxito\x02Clientes\x02ID de Cl" + + "iente\x02Manejar\x02Agregar\x02Sin Clientes\x02Agregar Cliente OAuth2" + + "\x02Descripción de Cliente\x02URL de redireccionamiento\x02URL de Client" + + "e\x02Client Secreto\x02Nota: Tu cliente secreto nunca será mostrado de n" + + "uevo.\x02Manejar clientes de OAuth 2.0\x02Revoca tokens de cliente secre" + + "to\x02Si los tokens de portador de OAuth 2.0 emitidos para tu cliente de" + + " OAuth o tu cliente secreto se han revelado a un tercero, debes revocar " + + "todos los tokens y solicitar que se emitan reemplazos.\x02Revocar client" + + "e de tokens\x02Desregistrar este client OAuth\x02Esto registrará de mane" + + "ra permanente tu client de OAuth 2.0\x02revoca todos los tokens emitidos" + + ", y prohíbie la emisión de nuevos tokens.\x02Desregistrar\x02Descripción" + + "\x02URL informativa\x02Cliente de OAuth 2.0 registrado\x02Cliente agrega" + + "do con éxito\x02Cliente revocado con éxito\x02Cliente recreado con éxito" + + "\x02Autorizar\x02gustaría acceder a tu cuenta de Link Taco\x02es una app" + + "licación de terceros operada por\x02Podrás revocar este acceso en cualqu" + + "ier momento en la tab OAtuh de tu perfíl.\x02Alcance\x02Aprobar\x02Recha" + + "zar\x02LinkTaco - La importación de tus marcadores está completa.\x02Hol" + + "a,\x02Solo queríamos informarte que la importación de tus marcadores se " + + "ha completado con éxito.\x02- Equipo de LinkTaco\x02Dominio Inactivo\x02" + + "El dominio %[1]s está actualmente desactivado\x02Por favor actualice la " + + "subscripción de su cuenta para reactivarla\x02Precios\x02Cada cuenta pue" + + "de crear organizaciones ilimitadas. Cada organización tiene sus propios " + + "marcadores, listados, análisis, etc. Todas las características a continu" + + "ación pertenecen a cada organización con sus propias URL únicas, agrupac" + + "iones, y más.\x02Funcionalidad\x02Gratis\x02Personal\x02Negocio\x02Preci" + + "o\x02por año\x02por mes\x02meses\x02Ilimitado\x02Solo público\x02Pruébal" + + "o GRATIS\x02Marcadores\x02Guardar enlaces públicos/privados\x02Guardar n" + + "otas públicas/privadas\x02Seguir otras organizaciones (social)\x02Organi" + + "zar por etiquetas\x02Filtrado/ búsqueda avanzada\x02Fuentes RSS completa" + + "s\x02Dominio personalizado + SSL\x02Listados de enlaces\x02Crear listado" + + "s de enlaces (por ejemplo, biografías en redes sociales, etc.)\x02Organi" + + "zar listados por etiquetas\x02Filtrar/Buscar listados\x02Códigos QR ilim" + + "itados por listado\x02Análisis completo\x02Listado\x02Acortamiento de en" + + "laces\x02Enlaces cortos ilimitados\x02Organizar enlaces cortos por etiqu" + + "etas\x02Filtrar/Buscar enlaces cortos\x02Códigos QR ilimitados por enlac" + + "e corto\x02Historial completo de análisis\x02Análisis específicos de cód" + + "igos QR\x02Análisis de clics\x02Análisis de referidos\x02Análisis por pa" + + "ís\x02Análisis por ciudad\x02Análisis de dispositivos\x02Colaboración /" + + " Integraciones\x02Agregar miembros ilimitados a la organización\x02Integ" + + "ración con Slack\x02Integración con MatterMost\x02Construye tu propia in" + + "tegración\x02Importar / Exportar\x02Importar desde Pinboard\x02Importar " + + "desde Firefox\x02Importar desde Chrome\x02Importar desde Safari\x02Expor" + + "tar en JSON o HTML\x02Impulsado por API\x02Acceso completo a la API Grap" + + "hQL\x02Soporte OAuth2\x02Alojamiento propio\x02Totalmente de código abie" + + "rto\x02Hospeda tu propia versión de Link Taco\x02Documentación\x02Detall" + + "es de precios y características para LinkTaco.com\x02precios, enlaces, l" + + "inktaco, características, planes, planes de precios\x02¡Bienvenido a Lin" + + "kTaco!\x02Aquí puedes combinar todas tus necesidades de guardar y compar" + + "tir enlaces en un solo paquete compacto. Como un taco. Un taco de enlace" + + "s, por así decirlo.\x02LinkTaco es una plataforma de código abierto dond" + + "e puedes alojar todos tus enlaces. Dominios personalizados, códigos QR, " + + "análisis, API completa, múltiples organizaciones con miembros ilimitados" + + " son solo algunas de las características incluidas.\x02Los marcadores so" + + "ciales no son nuevos, solo se han olvidado. El acortamiento de enlaces c" + + "on análisis ha existido siempre. Los listados de enlaces se volvieron po" + + "pulares cuando las redes sociales comenzaron a permitirnos publicar un e" + + "nlace a nuestros sitios web en nuestros perfiles.\x02Hasta ahora, todas " + + "estas cosas se alojaban en diferentes servicios.\x02Marcadores sociales:" + + " Pinboard (Delicious)\x02Acortamiento de enlaces: Bitly y otros\x02Lista" + + "dos de enlaces: Linktree y otros\x02Adiós Pinboard. Adiós Bitly. Adiós L" + + "inktree. ¡Hola LinkTaco!\x02Como somos un\x02proyecto 100% de código abi" + + "erto\x04\x01 \x00\\\x02puedes alojar tu propia instancia si deseas tener" + + " control total sobre tu propia plataforma.\x02Consulta la documentación " + + "de instalación para más información.\x02¿Listo para comenzar? Es gratis " + + "crear una cuenta y usarla para siempre (con algunas limitaciones). Para " + + "usar todas las funciones, solo tienes que pagar unos pocos dólares al añ" + + "o, o unos pocos al mes si eres una empresa, y eso es todo. ¡Simple!\x02E" + + "xplorar funcciones\x02Organizar marcadores\x02Lista de Links\x02Colabora" + + "ción\x02Integraciones\x02Importar Exportar\x02Listados de enlaces ilimit" + + "ados (para biografías en redes sociales, etc.)\x02Los miembros pueden ag" + + "regar/editar/eliminar enlaces (si se permite)\x02Los miembros tienen acc" + + "eso según los permisos otorgados\x02Widget de marcadores del navegador" + + "\x02Lista de Dominio\x02Eliminar\x02Búsqueda de Nombre\x02Servicio\x02pa" + + "ra\x02Link Cortos\x02Lista de Links\x02Sin Dominios\x02Crear Dominio\x02" + + "Migrar Links Cortos\x02Los links viejos no funcionanrán. Todos los códig" + + "os serán movidos al nuevo dominio.\x02Dominio creado con éxito\x02Elimin" + + "ar Dominio\x02%[1]s\x02Dominio elminado con éxito\x02Si\x02Desea elimina" + + "r este dominio\x02Tus Organizaciones\x02Código Abierto\x02Patrocinado" + + "\x02Pagado\x02Activado\x02Desactivado\x02Manejar Subscripción\x02Dominio" + + "s\x02Manejar Miembros\x02Exportar\x02Importar\x02Historial de Pagos\x02C" + + "rear Organización\x02Nombre de usuario de Organización\x02Visibilidad pr" + + "edeterminada de marcadores\x02Lo sentimos, has alcanzado el número de cu" + + "entas gratuitas disponibles. Por favor actualice su cuenta gratuita para" + + " crear más\x02Público\x02Privado\x02Organización creada con éxito\x02Act" + + "ualizar Organización\x02Está habilitado\x02Organización actualizada con " + + "éxito\x02Agregar Miembro\x02Permiso\x02Por favor actualice a cuenta de " + + "negocio para agregar miembros\x02Leer\x02Escribir\x02Escritura de admini" + + "strador\x02Una invitación fue enviada a este usuario\x02Algo salió mal, " + + "imposible enviar invitación\x02Eliminar miembro de la organización\x02Al" + + "go salió mal. No se pudo eliminar a este miembro: %[1]s\x02Miembro elimi" + + "nado con éxito\x02¿Eliminar al miembro %[1]s (%[2]s) de la Organización " + + "%[3]s?\x02Miembro agregado con éxito\x02Algo salió mal. Imposible obtene" + + "r los datos de miembros\x02Lista de Miembros\x02Sin miembros\x02Crear En" + + "lace\x02Título\x02Visibilidad\x02Organización\x02Sin leer\x02Destacado" + + "\x02Etiquetas\x02Usa comas para separar las etiquetas. Ejemplo: etiqueta" + + " 1, etiqueta 2, etiqueta 3\x02URL de archivo\x02Un link fue creado con é" + + "xito\x02Error consultando url refererida: No encontrada\x02Error consult" + + "ando link referido: %[1]v\x02marcador\x02Marcadores Populares\x02Esto no" + + " es un concurso de popularidad o algo parecido, pero es raro que no haya" + + "n links!\x02Enlaces más populares en LinkTaco.com\x02populares, enlaces," + + " linktaco, características, planes, planes de precios\x02Links Populares" + + "\x02Siguiendo\x02Dejar de seguir\x02Sin organizaciones\x02Feed\x02Siguie" + + "nte\x02Anterior\x02Por\x02Buscar\x02Tu feed está vacío :( Sigue a alguna" + + "s personas. Prueba los feeds Populares o Recientes para encontrar gente " + + "interesante a seguir.\x02Búsqueda Avanzada\x02Incluir Tags\x02Excluir Ta" + + "gs\x02Limpiar\x02Siguiendo\x02guardado\x02Marcadores Recientes\x02Todos" + + "\x02Sin etiquetar\x02Marcar como leído\x02Marcar como no leído\x02Destac" + + "ar\x02No destacar\x02Este feed no tiene enlaces. ¡Buuu!\x02Archivar\x02S" + + "eguir\x02Enlaces públicos recientes añadidos a %[1]s en LinkTaco.com\x02" + + "Enlaces públicos recientes añadidos a LinkTaco.com\x02recientes, público" + + "s, enlaces, linktaco\x02Links Recientes\x02%[1]s Enlaces\x02Tienes %[1]d" + + " enlaces restrigidos guardados.\x02Actualiza la organización para activa" + + "rlos.\x02Detalle de Enlace\x02Publicación Pública\x02Públicación Privada" + + "\x02Marcador '%[1]s' en LinkTaco.com\x02marcador, nota, detalle, popular" + + ", enlaces, linktaco\x02Borrar Marcador\x02Algo salió mal. No se pudo eli" + + "minar este marcador.\x02Marcador eliminado con éxito\x02¿Realmente desea" + + "s eliminar este marcador?\x02Actualizar Enlace\x02Desea eliminar\x02Link" + + " actualizado con éxito\x02Código QR por Link Taco!\x02Serás redirecciona" + + "do en 10 segundos.\x02Detalles de Código QR\x02Bajar Imágen\x02Elimiar C" + + "ódigo QR\x02Algo salió mal. El Código QE no pudo ser eliminado.\x02Códi" + + "go QR elminado con éxito\x02Desea eliminar este código qr\x02Exportar Da" + + "tos\x02Formato de archivo\x02Esta función no está habilitada para cuenta" + + "s gratuitas. Por favor actualizar\x02Como administrador de sistema corra" + + "r el siguiente comando en el canal que desees conectar\x02Desconectar" + + "\x02Conectar\x02Conectado\x02Importar Datos\x02Fuente\x02Click en Maneja" + + "r Marcadores desde el menú de Marcadores\x02Una nueva ventana llamada Bi" + + "blioteca se abrirá\x02En la barra lateral izquierda seleccione la carpet" + + "a que desea exportar. Para exportar todos los marcadores selecciones Tod" + + "os los Marcadores\x02Click en el ícono con dos flechas (arriba y abajo) " + + "y escoje 'Exportar Marcador a HTML'\x02En el menú de Archivo selecciones" + + " Exportar\x02Selecione Exportar Marcadores\x02Ve al menú de Marcadores y" + + " escoge Manejar Marcadores\x02En la barra latareral izquierda seleccione" + + "s la carpeta que desea exportar\x02En la barra marcadores, de click en l" + + "os tres puntos de la parte superior derecha\x02Click en Exportar Marcado" + + "res\x02Visita https://pinboard.in/export/ y da click en JSON\x02Al impor" + + "tar a una cuenta/organización gratuita, todos los marcadores privados de" + + "l tablero se marcarán como restringidos.\x02Actualice su cuenta para adm" + + "itir marcadores privados.\x02Instrucciones\x02Marcadores de Safari\x02Ma" + + "rcadores de Chrome\x02Marcadores de Firefox\x02Se está procesando la imp" + + "ortación de tu marcador. Te notificaremos cuando se complete.\x02Actuali" + + "zar Nota\x02Nota\x02Nota '%[1]s' en LinkTaco.com\x02nota, detalle, popul" + + "ar, enlaces, linktaco\x02Crear Nota\x02Una nota fue creada con éxito\x02" + + "Error consultado nota referenciada: %[1]v\x02Tablero\x02Tour\x02Reciente" + + "\x02Popular\x02Categorías\x02Sobre\x02Iniciar Sesión\x02Cerrar Sesión" + + "\x02Zona de pruebas de GQL\x02Guardar Enlace\x02Guardar Noa\x02Token Per" + + "sonales\x02Aplicaciones Clientes\x02Listas\x02Links Cortos\x02Administra" + + "r\x02Ayuda\x02Blog\x02Actualizar Links\x02URL\x02Orden\x02Eliminar Lista" + + "\x02Algo salió mal. El enlace no pudo ser eliminado\x02Enlace creado con" + + " éxito\x02Desea eliminar este link\x02Crear Links\x02Anterior\x02Sin Lin" + + "ks\x02Actualizar Lista\x02Dominio\x02Es por defecto\x02Eliminar Foto\x02" + + "Otro\x02Otro Nombre\x02Links Sociales\x02Lista creada con éxito\x02Crear" + + " Lista\x02Una lista fue creada con éxito\x02Manejar Links\x02Sin Listas" + + "\x02Fecha de Creación\x02Códigos QR\x02Lista eliminada con éxito\x02¿Rea" + + "lmente quieres eliminar esta lista?\x02Crear Código QR\x02Crear\x02Desca" + + "rgar\x02Fondo de pantalla personalizado\x02Código QR creado con éxito" + + "\x02Código QR de Lista\x02Ver\x02No hay Códigos QR\x02Desconectar Matter" + + "most\x02Mattermost desconectado con éxito\x02Desea realmente desconectar" + + " esta organización de mattermost\x02Connectar con Mattermost\x02Este equ" + + "ipo ya se encuentra vinculado a una organización\x02¿Deseas conectar est" + + "a organización con mattermost?\x02Esta función está restringida para cue" + + "ntas gratis. Por favor actualiza\x02La organización fue vinculada con éx" + + "ito\x02Lo sentimos, las cuentas gratuitas no soportan la integración con" + + " Mattermost. Por favor actualice\x02Conectar Usuario\x02Para interactuar" + + " con mattermost tienes que conectar tu cuenta con tu usuario de Link Tac" + + "o\x02¿Desea proceder?\x02Usuario conectado con éxito\x02Connexión con sl" + + "ack no encontrada\x02Te enviamos un mensaje privado\x02El texto a ser bu" + + "scado es requerido\x02No se encuentraron links para %[1]s\x02Organizació" + + "n no encontrada\x02El título es requerido\x02La url es requerida\x02El c" + + "ódigo es requerido\x02El dominio es requerido\x02Dominio no encontrado" + + "\x02A nuevo short fue creado con éxito\x02Url es requerida\x02Un nuevo e" + + "nlace fue creado con éxito\x02Por favor haga click en el próximo link pa" + + "ra vincular una organización %[1]s\x02Instalacción exitosa\x02Link Corto" + + "\x02Sin Links Cortos\x02Crear Link Corto\x02Código Corto\x02Sin Dominio" + + "\x02Un link corto fue creado con éxito\x02Actualizar Link Corto\x02Link " + + "Corto actualizado con éxito\x02Eliminar Link Corto\x02Link Corto elimina" + + "do con éxito\x02URL acortada por Link Taco!\x02No se proporcionó un argu" + + "mento de URL\x02%[1]s: dominio no encontrado\x02Tu enlace corto fue crea" + + "do con éxito: %[1]s\x02Tu enlace fue guardado con éxito. Detalles aquí: " + + "%[1]s\x02Buscar Link\x02Por favor vincule tu usuario de slack con el lin" + + "k: %[1]s\x02Te enviamos un mensaje directo con instrucciones\x02Agregar " + + "Link\x02Desconectar de Slack\x02Slack fue desconectado con éxito\x02Dese" + + "a desconectar esta organización de slack\x02Lo sentimos, las cuentas gra" + + "tis no soportan integración con Slack. Por favor actualice su subscripcó" + + "n para continuar\x02Para interactuar con Link Taco tienes que conectar t" + + "u cuenta de slack con tu usuario de Link Taco\x02Algo salió mal. El usua" + + "rio no puede ser vinculado.\x02Conectar a Slack Workspace\x02Respuesta d" + + "e slack inválida\x02¿Deseas conectar con Slack?\x02Organización vinculad" + + "a con éxito con slack\x02Email y/o password inválido\x02Las nuevas contr" + + "aseñas no coinciden\x02El usuario no está autenticado\x02La contraseña a" + + "ctual es incorrecta\x02Este campo es requerido\x02Por favor introduzca u" + + "n correo válido\x02Por favor introduzca un número válido\x02El '%[1]s' f" + + "alló." - // Total table size 50014 bytes (48KiB); checksum: 63B802CD + // Total table size 50104 bytes (48KiB); checksum: FF9A9235 diff --git a/internal/translations/locales/en/out.gotext.json b/internal/translations/locales/en/out.gotext.json index b948b8e..a1fe56a 100644 --- a/internal/translations/locales/en/out.gotext.json +++ b/internal/translations/locales/en/out.gotext.json @@ -919,9 +919,9 @@ "fuzzy": true }, { - "id": "Title may not exceed 150 characters", - "message": "Title may not exceed 150 characters", - "translation": "Title may not exceed 150 characters", + "id": "Title may not exceed 500 characters", + "message": "Title may not exceed 500 characters", + "translation": "Title may not exceed 500 characters", "translatorComment": "Copied from source.", "fuzzy": true }, @@ -1438,6 +1438,13 @@ "translatorComment": "Copied from source.", "fuzzy": true }, + { + "id": "Title may not exceed 150 characters", + "message": "Title may not exceed 150 characters", + "translation": "Title may not exceed 150 characters", + "translatorComment": "Copied from source.", + "fuzzy": true + }, { "id": "Short Code may not exceed 20 characters", "message": "Short Code may not exceed 20 characters", diff --git a/internal/translations/locales/es/messages.gotext.json b/internal/translations/locales/es/messages.gotext.json index b0f95fe..f9889a9 100644 --- a/internal/translations/locales/es/messages.gotext.json +++ b/internal/translations/locales/es/messages.gotext.json @@ -657,9 +657,9 @@ "translation": "El título es requerido" }, { - "id": "Title may not exceed 150 characters", - "message": "Title may not exceed 150 characters", - "translation": "El título no debe exceler los 150 caracteres" + "id": "Title may not exceed 500 characters", + "message": "Title may not exceed 500 characters", + "translation": "El título no debe exceler los 500 caracteres" }, { "id": "Tags may not exceed 10", @@ -1036,6 +1036,11 @@ "message": "DomainID is required", "translation": "DomainID es requerido" }, + { + "id": "Title may not exceed 150 characters", + "message": "Title may not exceed 150 characters", + "translation": "El título no debe exceler los 150 caracteres" + }, { "id": "Short Code may not exceed 20 characters", "message": "Short Code may not exceed 20 characters", diff --git a/internal/translations/locales/es/out.gotext.json b/internal/translations/locales/es/out.gotext.json index 5b6b149..ee28b85 100644 --- a/internal/translations/locales/es/out.gotext.json +++ b/internal/translations/locales/es/out.gotext.json @@ -657,9 +657,9 @@ "translation": "El título es requerido" }, { - "id": "Title may not exceed 150 characters", - "message": "Title may not exceed 150 characters", - "translation": "El título no debe exceler los 150 caracteres" + "id": "Title may not exceed 500 characters", + "message": "Title may not exceed 500 characters", + "translation": "El título no debe exceler los 500 caracteres" }, { "id": "Tags may not exceed 10", @@ -1036,6 +1036,11 @@ "message": "DomainID is required", "translation": "DomainID es requerido" }, + { + "id": "Title may not exceed 150 characters", + "message": "Title may not exceed 150 characters", + "translation": "El título no debe exceler los 150 caracteres" + }, { "id": "Short Code may not exceed 20 characters", "message": "Short Code may not exceed 20 characters", diff --git a/migrations/0005_increase_url_title.down.sql b/migrations/0005_increase_url_title.down.sql new file mode 100644 index 0000000..2c31a79 --- /dev/null +++ b/migrations/0005_increase_url_title.down.sql @@ -0,0 +1,2 @@ +ALTER TABLE base_urls ALTER COLUMN title TYPE VARCHAR(150); +ALTER TABLE org_links ALTER COLUMN title TYPE VARCHAR(150); diff --git a/migrations/0005_increase_url_title.up.sql b/migrations/0005_increase_url_title.up.sql new file mode 100644 index 0000000..77db2f8 --- /dev/null +++ b/migrations/0005_increase_url_title.up.sql @@ -0,0 +1,2 @@ +ALTER TABLE base_urls ALTER COLUMN title TYPE VARCHAR(500); +ALTER TABLE org_links ALTER COLUMN title TYPE VARCHAR(500); diff --git a/models/schema.sql b/models/schema.sql index 44d226c..6b6b26e 100644 --- a/models/schema.sql +++ b/models/schema.sql @@ -145,7 +145,7 @@ CREATE TRIGGER update_email_notifications_modtime BEFORE UPDATE ON email_notific CREATE TABLE base_urls ( id SERIAL PRIMARY KEY, - title VARCHAR ( 150 ) DEFAULT '', + title VARCHAR ( 500 ) DEFAULT '', url TEXT UNIQUE NOT NULL, public_ready BOOLEAN DEFAULT FALSE, hash VARCHAR(128) UNIQUE NOT NULL, @@ -162,7 +162,7 @@ CREATE TRIGGER base_urls_modtime BEFORE UPDATE ON base_urls FOR EACH ROW EXECUTE CREATE TABLE org_links ( id SERIAL PRIMARY KEY, - title VARCHAR ( 150 ) NOT NULL, + title VARCHAR ( 500 ) NOT NULL, url TEXT NOT NULL, description TEXT DEFAULT '', "type" org_link_type default 'LINK', -- 2.45.3