parent
86c7379328
commit
21d3d4f9cf
7 changed files with 193 additions and 130 deletions
|
@ -104,4 +104,10 @@ $(function() {
|
||||||
|
|
||||||
/** Advertisements */
|
/** Advertisements */
|
||||||
$('.ui.checkbox.advertisements').checkbox();
|
$('.ui.checkbox.advertisements').checkbox();
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Account
|
||||||
|
*/
|
||||||
|
$('.ui.checkbox.account-delete').checkbox();
|
||||||
|
|
||||||
});
|
});
|
||||||
|
|
|
@ -212,4 +212,17 @@ class User
|
||||||
/** Delete cookie */
|
/** Delete cookie */
|
||||||
setcookie(COOKIE_PERSISTENT, '', time() - 3600, '/', getCookieDomain());
|
setcookie(COOKIE_PERSISTENT, '', time() - 3600, '/', getCookieDomain());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public function delete(): void
|
||||||
|
{
|
||||||
|
global $database;
|
||||||
|
|
||||||
|
$database->query(
|
||||||
|
'DELETE FROM `users`
|
||||||
|
WHERE `id` = :user_id',
|
||||||
|
array(
|
||||||
|
'user_id' => $this->id,
|
||||||
|
)
|
||||||
|
);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -71,13 +71,6 @@ $page->navigation();
|
||||||
?>
|
?>
|
||||||
<a href="https://github.com/grandeljay/wishthis/issues/49" target="_blank">#49</a>
|
<a href="https://github.com/grandeljay/wishthis/issues/49" target="_blank">#49</a>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
<?php
|
|
||||||
/** TRANSLATORS: Changelog: Roadmap */
|
|
||||||
echo __('Delete account option');
|
|
||||||
?>
|
|
||||||
<a href="https://github.com/grandeljay/wishthis/issues/69" target="_blank">#69</a>
|
|
||||||
</li>
|
|
||||||
<li>
|
<li>
|
||||||
<?php
|
<?php
|
||||||
/** TRANSLATORS: Changelog: Roadmap */
|
/** TRANSLATORS: Changelog: Roadmap */
|
||||||
|
@ -90,12 +83,6 @@ $page->navigation();
|
||||||
echo __('Verify wishes are still available when attempting to fulfil them. Alternatively, a heartbeat which checks if all the wishes are still unfulfilled.');
|
echo __('Verify wishes are still available when attempting to fulfil them. Alternatively, a heartbeat which checks if all the wishes are still unfulfilled.');
|
||||||
?>
|
?>
|
||||||
</li>
|
</li>
|
||||||
<li>
|
|
||||||
<?php
|
|
||||||
/** TRANSLATORS: Changelog: Roadmap */
|
|
||||||
echo __('Option to delete account');
|
|
||||||
?>
|
|
||||||
</li>
|
|
||||||
</ul>
|
</ul>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
@ -117,6 +104,13 @@ $page->navigation();
|
||||||
?>
|
?>
|
||||||
<a href="https://github.com/grandeljay/wishthis/issues/64" target="_blank">#64</a>
|
<a href="https://github.com/grandeljay/wishthis/issues/64" target="_blank">#64</a>
|
||||||
</li>
|
</li>
|
||||||
|
<li>
|
||||||
|
<?php
|
||||||
|
/** TRANSLATORS: Changelog: Added */
|
||||||
|
echo __('Add account delete option');
|
||||||
|
?>
|
||||||
|
<a href="https://github.com/grandeljay/wishthis/issues/69" target="_blank">#69</a>
|
||||||
|
</li>
|
||||||
<li>
|
<li>
|
||||||
<?php
|
<?php
|
||||||
/** TRANSLATORS: Changelog: Added */
|
/** TRANSLATORS: Changelog: Added */
|
||||||
|
|
|
@ -166,6 +166,16 @@ if (isset($_POST['user-id'], $_POST['section'])) {
|
||||||
__('Success')
|
__('Success')
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/**
|
||||||
|
* Account
|
||||||
|
*/
|
||||||
|
if (isset($_POST['account-delete'])) {
|
||||||
|
$_SESSION['user']->delete();
|
||||||
|
$_SESSION['user']->logOut();
|
||||||
|
|
||||||
|
redirect(Page::PAGE_HOME);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
$page->header();
|
$page->header();
|
||||||
|
@ -194,6 +204,10 @@ $page->navigation();
|
||||||
<div class="ui small header"><?= __('Preferences') ?></div>
|
<div class="ui small header"><?= __('Preferences') ?></div>
|
||||||
<p><?= __('Improve your wishthis experience') ?></p>
|
<p><?= __('Improve your wishthis experience') ?></p>
|
||||||
</div>
|
</div>
|
||||||
|
<div class="item" data-tab="account">
|
||||||
|
<div class="ui small header"><?= __('Account') ?></div>
|
||||||
|
<p><?= __('Configuration for your account') ?></p>
|
||||||
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
@ -543,6 +557,35 @@ $page->navigation();
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
|
|
||||||
|
<div class="ui tab" data-tab="account">
|
||||||
|
<h2 class="ui header"><?= __('Account') ?></h2>
|
||||||
|
|
||||||
|
<div class="ui segment">
|
||||||
|
<form class="ui form" method="POST">
|
||||||
|
<input type="hidden" name="user-id" value="<?= $_SESSION['user']->id ?>" />
|
||||||
|
<input type="hidden" name="section" value="account" />
|
||||||
|
|
||||||
|
<div class="field">
|
||||||
|
<label><?= __('Delete account') ?></label>
|
||||||
|
|
||||||
|
<div class="ui checkbox account-delete">
|
||||||
|
<input type="checkbox" name="account-delete">
|
||||||
|
|
||||||
|
<label><?= __('Delete this account completely and irreversibly') ?></label>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
|
<div class="ui error message"></div>
|
||||||
|
|
||||||
|
<input class="ui negative button"
|
||||||
|
type="submit"
|
||||||
|
value="<?= __('Delete account') ?>"
|
||||||
|
title="<?= __('Delete account') ?>"
|
||||||
|
/>
|
||||||
|
</form>
|
||||||
|
</div>
|
||||||
|
</div>
|
||||||
|
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
|
|
Binary file not shown.
|
@ -2,7 +2,7 @@
|
||||||
msgid ""
|
msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Jay Trees <github.jay@grandel.anonaddy.me>\n"
|
"Project-Id-Version: Jay Trees <github.jay@grandel.anonaddy.me>\n"
|
||||||
"POT-Creation-Date: 2023-05-09 16:42+0200\n"
|
"POT-Creation-Date: 2023-07-25 12:49+0200\n"
|
||||||
"PO-Revision-Date: 2022-03-22 08:45+0100\n"
|
"PO-Revision-Date: 2022-03-22 08:45+0100\n"
|
||||||
"Last-Translator: Jay Trees <github.jay@grandel.anonaddy.me>\n"
|
"Last-Translator: Jay Trees <github.jay@grandel.anonaddy.me>\n"
|
||||||
"Language-Team: \n"
|
"Language-Team: \n"
|
||||||
|
@ -303,7 +303,7 @@ msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: classes/wishthis/Page.php:436 classes/wishthis/Page.php:440
|
#: classes/wishthis/Page.php:436 classes/wishthis/Page.php:440
|
||||||
#: pages/blog.php:11 pages/changelog.php:395 pages/post.php:62
|
#: pages/blog.php:11 pages/changelog.php:389 pages/post.php:62
|
||||||
msgid "Blog"
|
msgid "Blog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -311,7 +311,7 @@ msgstr ""
|
||||||
msgid "System"
|
msgid "System"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: classes/wishthis/Page.php:453
|
#: classes/wishthis/Page.php:453 pages/profile.php:208 pages/profile.php:561
|
||||||
msgid "Account"
|
msgid "Account"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -528,31 +528,31 @@ msgstr ""
|
||||||
msgid "Roadmap"
|
msgid "Roadmap"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/changelog.php:26 pages/changelog.php:107
|
#: pages/changelog.php:26 pages/changelog.php:94
|
||||||
msgid "1.1.0"
|
msgid "1.1.0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/changelog.php:27 pages/changelog.php:154
|
#: pages/changelog.php:27 pages/changelog.php:148
|
||||||
msgid "1.0.0"
|
msgid "1.0.0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/changelog.php:28 pages/changelog.php:250
|
#: pages/changelog.php:28 pages/changelog.php:244
|
||||||
msgid "0.7.3"
|
msgid "0.7.3"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/changelog.php:29 pages/changelog.php:270
|
#: pages/changelog.php:29 pages/changelog.php:264
|
||||||
msgid "0.7.2"
|
msgid "0.7.2"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/changelog.php:30 pages/changelog.php:290
|
#: pages/changelog.php:30 pages/changelog.php:284
|
||||||
msgid "0.7.1"
|
msgid "0.7.1"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/changelog.php:31 pages/changelog.php:386
|
#: pages/changelog.php:31 pages/changelog.php:380
|
||||||
msgid "0.7.0"
|
msgid "0.7.0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/changelog.php:32 pages/changelog.php:528
|
#: pages/changelog.php:32 pages/changelog.php:522
|
||||||
msgid "0.6.0"
|
msgid "0.6.0"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -583,297 +583,292 @@ msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Roadmap
|
#. TRANSLATORS: Changelog: Roadmap
|
||||||
#: pages/changelog.php:77
|
#: pages/changelog.php:77
|
||||||
msgid "Delete account option"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Roadmap
|
|
||||||
#: pages/changelog.php:84
|
|
||||||
msgid "Notifications for fulfilled wishes"
|
msgid "Notifications for fulfilled wishes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Roadmap
|
#. TRANSLATORS: Changelog: Roadmap
|
||||||
#: pages/changelog.php:90
|
#: pages/changelog.php:83
|
||||||
msgid "Verify wishes are still available when attempting to fulfil them. Alternatively, a heartbeat which checks if all the wishes are still unfulfilled."
|
msgid "Verify wishes are still available when attempting to fulfil them. Alternatively, a heartbeat which checks if all the wishes are still unfulfilled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Roadmap
|
#: pages/changelog.php:98 pages/changelog.php:152 pages/changelog.php:384
|
||||||
#: pages/changelog.php:96
|
#: pages/changelog.php:526
|
||||||
msgid "Option to delete account"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: pages/changelog.php:111 pages/changelog.php:158 pages/changelog.php:390
|
|
||||||
#: pages/changelog.php:532
|
|
||||||
msgid "Added"
|
msgid "Added"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:116
|
#: pages/changelog.php:103
|
||||||
msgid "Configuration flag to disable plausible.io calls"
|
msgid "Configuration flag to disable plausible.io calls"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:123
|
#: pages/changelog.php:110
|
||||||
|
msgid "Add account delete option"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#. TRANSLATORS: Changelog: Added
|
||||||
|
#: pages/changelog.php:117
|
||||||
msgid "Configuration flag to disable user registrations"
|
msgid "Configuration flag to disable user registrations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/changelog.php:129 pages/changelog.php:213 pages/changelog.php:253
|
#: pages/changelog.php:123 pages/changelog.php:207 pages/changelog.php:247
|
||||||
#: pages/changelog.php:273 pages/changelog.php:329 pages/changelog.php:480
|
#: pages/changelog.php:267 pages/changelog.php:323 pages/changelog.php:474
|
||||||
#: pages/changelog.php:564
|
#: pages/changelog.php:558
|
||||||
msgid "Fixed"
|
msgid "Fixed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:134
|
#: pages/changelog.php:128
|
||||||
msgid "A fatal error when the CHANNELS constant is removed from the config"
|
msgid "A fatal error when the CHANNELS constant is removed from the config"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:141
|
#: pages/changelog.php:135
|
||||||
msgid "Fulfilled wishes disappearing for wishlist owners"
|
msgid "Fulfilled wishes disappearing for wishlist owners"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:163
|
#: pages/changelog.php:157
|
||||||
msgid "Option to set currency"
|
msgid "Option to set currency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:170
|
#: pages/changelog.php:164
|
||||||
msgid "A roadmap in the changelog"
|
msgid "A roadmap in the changelog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:176
|
#: pages/changelog.php:170
|
||||||
msgid "Compact/list view for wishes"
|
msgid "Compact/list view for wishes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:182
|
#: pages/changelog.php:176
|
||||||
msgid "Option to enable advertisements"
|
msgid "Option to enable advertisements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/changelog.php:187 pages/changelog.php:294 pages/changelog.php:436
|
#: pages/changelog.php:181 pages/changelog.php:288 pages/changelog.php:430
|
||||||
#: pages/changelog.php:554
|
#: pages/changelog.php:548
|
||||||
msgid "Improved"
|
msgid "Improved"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Improved
|
#. TRANSLATORS: Changelog: Improved
|
||||||
#: pages/changelog.php:192
|
#: pages/changelog.php:186
|
||||||
msgid "Large parts of wishthis have been completely rewritten, such as the API and how pretty URLs work. The aim was to increase security and maintainability."
|
msgid "Large parts of wishthis have been completely rewritten, such as the API and how pretty URLs work. The aim was to increase security and maintainability."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Improved
|
#. TRANSLATORS: Changelog: Improved
|
||||||
#: pages/changelog.php:198
|
#: pages/changelog.php:192
|
||||||
msgid "Changelog now automatically selects the current version, instead of the top most tab."
|
msgid "Changelog now automatically selects the current version, instead of the top most tab."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/changelog.php:203 pages/changelog.php:458
|
#: pages/changelog.php:197 pages/changelog.php:452
|
||||||
msgid "Changed"
|
msgid "Changed"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:208
|
#: pages/changelog.php:202
|
||||||
msgid "Decreased wish height on mobile devices"
|
msgid "Decreased wish height on mobile devices"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:218
|
#: pages/changelog.php:212
|
||||||
msgid "Temporary fulfilled wish does not become available again after 30 minutes, except when viewing as the owner of the list."
|
msgid "Temporary fulfilled wish does not become available again after 30 minutes, except when viewing as the owner of the list."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:225
|
#: pages/changelog.php:219
|
||||||
msgid "Fix various wish UI bugs"
|
msgid "Fix various wish UI bugs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:232
|
#: pages/changelog.php:226
|
||||||
msgid "Fix background and colour when opening the mobile menu"
|
msgid "Fix background and colour when opening the mobile menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:238
|
#: pages/changelog.php:232
|
||||||
msgid "Marking wish as fulfilled"
|
msgid "Marking wish as fulfilled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:258
|
#: pages/changelog.php:252
|
||||||
msgid "Fix fulfilled wishes disappearing for wishlist owner"
|
msgid "Fix fulfilled wishes disappearing for wishlist owner"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:278
|
#: pages/changelog.php:272
|
||||||
msgid "Fix fulfilled wishes showing after using filter"
|
msgid "Fix fulfilled wishes showing after using filter"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Improved
|
#. TRANSLATORS: Changelog: Improved
|
||||||
#: pages/changelog.php:299
|
#: pages/changelog.php:293
|
||||||
msgid "MJML settings page"
|
msgid "MJML settings page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Improved
|
#. TRANSLATORS: Changelog: Improved
|
||||||
#: pages/changelog.php:306
|
#: pages/changelog.php:300
|
||||||
msgid "Expired sessions are now invalidated by wishthis instead of relying on the browser to delete the cookies."
|
msgid "Expired sessions are now invalidated by wishthis instead of relying on the browser to delete the cookies."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Improved
|
#. TRANSLATORS: Changelog: Improved
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:312 pages/changelog.php:401
|
#: pages/changelog.php:306 pages/changelog.php:395
|
||||||
msgid "Dark theme"
|
msgid "Dark theme"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Improved
|
#. TRANSLATORS: Changelog: Improved
|
||||||
#: pages/changelog.php:318
|
#: pages/changelog.php:312
|
||||||
msgid "Remembered lists design"
|
msgid "Remembered lists design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Improved
|
#. TRANSLATORS: Changelog: Improved
|
||||||
#: pages/changelog.php:324
|
#: pages/changelog.php:318
|
||||||
msgid "Translations"
|
msgid "Translations"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:334
|
#: pages/changelog.php:328
|
||||||
msgid "Label on top of dropdown menu"
|
msgid "Label on top of dropdown menu"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:341
|
#: pages/changelog.php:335
|
||||||
msgid "Encoding issue in wish description"
|
msgid "Encoding issue in wish description"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:348
|
#: pages/changelog.php:342
|
||||||
msgid "Caching issue with the blog"
|
msgid "Caching issue with the blog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:355
|
#: pages/changelog.php:349
|
||||||
msgid "An error when a blog post doesn't have a featured image."
|
msgid "An error when a blog post doesn't have a featured image."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:361
|
#: pages/changelog.php:355
|
||||||
msgid "Version number not being stored correctly causing the migration to execute the wrong script."
|
msgid "Version number not being stored correctly causing the migration to execute the wrong script."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:367
|
#: pages/changelog.php:361
|
||||||
msgid "Wishlist filter cut off on mobile"
|
msgid "Wishlist filter cut off on mobile"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:373
|
#: pages/changelog.php:367
|
||||||
msgid "Wish options not selectable after filtering"
|
msgid "Wish options not selectable after filtering"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:407
|
#: pages/changelog.php:401
|
||||||
msgid "Wish properties. You can now mark a wish as purchasable and add a price."
|
msgid "Wish properties. You can now mark a wish as purchasable and add a price."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:413
|
#: pages/changelog.php:407
|
||||||
msgid "Jump to last edited wishlist from home"
|
msgid "Jump to last edited wishlist from home"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:419
|
#: pages/changelog.php:413
|
||||||
msgid "Quick add wish from home"
|
msgid "Quick add wish from home"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:425
|
#: pages/changelog.php:419
|
||||||
msgid "Button to request more wishes from a users wishlist"
|
msgid "Button to request more wishes from a users wishlist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:431
|
#: pages/changelog.php:425
|
||||||
msgid "Option to stay logged in"
|
msgid "Option to stay logged in"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Improved
|
#. TRANSLATORS: Changelog: Improved
|
||||||
#: pages/changelog.php:441
|
#: pages/changelog.php:435
|
||||||
msgid "Localisation (many new translations added)"
|
msgid "Localisation (many new translations added)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Improved
|
#. TRANSLATORS: Changelog: Improved
|
||||||
#: pages/changelog.php:447
|
#: pages/changelog.php:441
|
||||||
msgid "Additional logins are no longer required when switching between wishthis channels"
|
msgid "Additional logins are no longer required when switching between wishthis channels"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Improved
|
#. TRANSLATORS: Changelog: Improved
|
||||||
#: pages/changelog.php:453
|
#: pages/changelog.php:447
|
||||||
msgid "Remembered wishlists design"
|
msgid "Remembered wishlists design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Changed
|
#. TRANSLATORS: Changelog: Changed
|
||||||
#: pages/changelog.php:463
|
#: pages/changelog.php:457
|
||||||
msgid "Changelog is now a page instead of a downloadable markdown file"
|
msgid "Changelog is now a page instead of a downloadable markdown file"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Changed
|
#. TRANSLATORS: Changelog: Changed
|
||||||
#: pages/changelog.php:469
|
#: pages/changelog.php:463
|
||||||
msgid "Wishes can be edited from the wishlist now, without loading another page"
|
msgid "Wishes can be edited from the wishlist now, without loading another page"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Changed
|
#. TRANSLATORS: Changelog: Changed
|
||||||
#: pages/changelog.php:475
|
#: pages/changelog.php:469
|
||||||
msgid "\"Saved wishlists\" has been renamed to \"Remember lists\""
|
msgid "\"Saved wishlists\" has been renamed to \"Remember lists\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:485
|
#: pages/changelog.php:479
|
||||||
msgid "Various minor things (typos, menu order, etc)"
|
msgid "Various minor things (typos, menu order, etc)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:491
|
#: pages/changelog.php:485
|
||||||
msgid "Wish information being updated with 404 content from URL"
|
msgid "Wish information being updated with 404 content from URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:497
|
#: pages/changelog.php:491
|
||||||
msgid "Wish image not showing"
|
msgid "Wish image not showing"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:503
|
#: pages/changelog.php:497
|
||||||
msgid "An error when saving a wish with a really long URL"
|
msgid "An error when saving a wish with a really long URL"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:509
|
#: pages/changelog.php:503
|
||||||
msgid "Redirect errors on Nginx"
|
msgid "Redirect errors on Nginx"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Fixed
|
#. TRANSLATORS: Changelog: Fixed
|
||||||
#: pages/changelog.php:515
|
#: pages/changelog.php:509
|
||||||
msgid "An error when fetching title from an URL containing quotes"
|
msgid "An error when fetching title from an URL containing quotes"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:537
|
#: pages/changelog.php:531
|
||||||
msgid "This changelog"
|
msgid "This changelog"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:543
|
#: pages/changelog.php:537
|
||||||
msgid "Wish properties"
|
msgid "Wish properties"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Added
|
#. TRANSLATORS: Changelog: Added
|
||||||
#: pages/changelog.php:549
|
#: pages/changelog.php:543
|
||||||
msgid "Button to mark wish as fulfilled"
|
msgid "Button to mark wish as fulfilled"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Improved
|
#. TRANSLATORS: Changelog: Improved
|
||||||
#: pages/changelog.php:559
|
#: pages/changelog.php:553
|
||||||
msgid "Card design"
|
msgid "Card design"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: Changelog: Improved
|
#. TRANSLATORS: Changelog: Improved
|
||||||
#: pages/changelog.php:569
|
#: pages/changelog.php:563
|
||||||
msgid "Various small bugs"
|
msgid "Various small bugs"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1019,16 +1014,16 @@ msgstr ""
|
||||||
msgid "Username"
|
msgid "Username"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/install.php:68 pages/login.php:208 pages/profile.php:190
|
#: pages/install.php:68 pages/login.php:208 pages/profile.php:200
|
||||||
#: pages/profile.php:268 pages/profile.php:277 pages/register.php:240
|
#: pages/profile.php:282 pages/profile.php:291 pages/register.php:240
|
||||||
msgid "Password"
|
msgid "Password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/install.php:76 pages/install.php:77 pages/parts/wishlist.php:184
|
#: pages/install.php:76 pages/install.php:77 pages/parts/wishlist.php:184
|
||||||
#: pages/parts/wishlist.php:185 pages/profile.php:259 pages/profile.php:260
|
#: pages/parts/wishlist.php:185 pages/profile.php:273 pages/profile.php:274
|
||||||
#: pages/profile.php:293 pages/profile.php:294 pages/profile.php:393
|
#: pages/profile.php:307 pages/profile.php:308 pages/profile.php:407
|
||||||
#: pages/profile.php:394 pages/profile.php:492 pages/profile.php:493
|
#: pages/profile.php:408 pages/profile.php:506 pages/profile.php:507
|
||||||
#: pages/profile.php:538 pages/profile.php:539 pages/settings.php:53
|
#: pages/profile.php:552 pages/profile.php:553 pages/settings.php:53
|
||||||
#: pages/settings.php:54
|
#: pages/settings.php:54
|
||||||
msgid "Save"
|
msgid "Save"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
@ -1055,7 +1050,7 @@ msgid "User not found!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/login-as.php:68 pages/login.php:199 pages/profile.php:34
|
#: pages/login-as.php:68 pages/login.php:199 pages/profile.php:34
|
||||||
#: pages/profile.php:231 pages/register.php:222
|
#: pages/profile.php:245 pages/register.php:222
|
||||||
msgid "Email"
|
msgid "Email"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1320,15 +1315,15 @@ msgstr ""
|
||||||
msgid "You do not have enough power to view this page. You need %s to see this page, but only have %s."
|
msgid "You do not have enough power to view this page. You need %s to see this page, but only have %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:19 pages/profile.php:211
|
#: pages/profile.php:19 pages/profile.php:225
|
||||||
msgid "First name"
|
msgid "First name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:24 pages/profile.php:217
|
#: pages/profile.php:24 pages/profile.php:231
|
||||||
msgid "Last name"
|
msgid "Last name"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:29 pages/profile.php:223
|
#: pages/profile.php:29 pages/profile.php:237
|
||||||
msgid "Nickname"
|
msgid "Nickname"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -1353,120 +1348,132 @@ msgstr ""
|
||||||
msgid "It is required for you to login again."
|
msgid "It is required for you to login again."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:186 pages/profile.php:202
|
#: pages/profile.php:196 pages/profile.php:216
|
||||||
msgid "Personal"
|
msgid "Personal"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:187
|
#: pages/profile.php:197
|
||||||
msgid "Information regarding yourself"
|
msgid "Information regarding yourself"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:191
|
#: pages/profile.php:201
|
||||||
msgid "Change your password"
|
msgid "Change your password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:194 pages/profile.php:331
|
#: pages/profile.php:204 pages/profile.php:345
|
||||||
msgid "Preferences"
|
msgid "Preferences"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:195
|
#: pages/profile.php:205
|
||||||
msgid "Improve your wishthis experience"
|
msgid "Improve your wishthis experience"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:236
|
#: pages/profile.php:209
|
||||||
|
msgid "Configuration for your account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pages/profile.php:250
|
||||||
msgid "Used to suggest a wishlist called \"Birthday\", if it's coming up."
|
msgid "Used to suggest a wishlist called \"Birthday\", if it's coming up."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:238
|
#: pages/profile.php:252
|
||||||
msgid "Birthdate"
|
msgid "Birthdate"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:247
|
#: pages/profile.php:261
|
||||||
msgid "Pick a date"
|
msgid "Pick a date"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:283
|
#: pages/profile.php:297
|
||||||
msgid "Password (repeat)"
|
msgid "Password (repeat)"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:299
|
#: pages/profile.php:313
|
||||||
msgid "Safe password checklist"
|
msgid "Safe password checklist"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:306
|
#: pages/profile.php:320
|
||||||
msgid "Long"
|
msgid "Long"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:307
|
#: pages/profile.php:321
|
||||||
msgid "Over eight characters in length."
|
msgid "Over eight characters in length."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: A special character (for a password)
|
#. TRANSLATORS: A special character (for a password)
|
||||||
#: pages/profile.php:318
|
#: pages/profile.php:332
|
||||||
msgid "Special"
|
msgid "Special"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:321
|
#: pages/profile.php:335
|
||||||
msgid "Contains special characters."
|
msgid "Contains special characters."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:340
|
#: pages/profile.php:354
|
||||||
msgid "Language"
|
msgid "Language"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:358
|
#: pages/profile.php:372
|
||||||
msgid "Currency"
|
msgid "Currency"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:444
|
#: pages/profile.php:458
|
||||||
msgid "Channel"
|
msgid "Channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:447
|
#: pages/profile.php:461
|
||||||
msgid "Select channel"
|
msgid "Select channel"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:460
|
#: pages/profile.php:474
|
||||||
msgid "In order to improve the user experience of wishthis, newer versions are published after an extensive testing period."
|
msgid "In order to improve the user experience of wishthis, newer versions are published after an extensive testing period."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:461
|
#: pages/profile.php:475
|
||||||
msgid "Subscribing to the Stable channel ensures you have the highest possible stability while using wishthis, minimizing the amount of errors you may encounter (if any)."
|
msgid "Subscribing to the Stable channel ensures you have the highest possible stability while using wishthis, minimizing the amount of errors you may encounter (if any)."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:462
|
#: pages/profile.php:476
|
||||||
msgid "If you want to speed up the release of newer versions, consider subscribing to the Release candidate of wishthis. A newer version is not published unless the next release candidate has been sufficiently tested."
|
msgid "If you want to speed up the release of newer versions, consider subscribing to the Release candidate of wishthis. A newer version is not published unless the next release candidate has been sufficiently tested."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:475
|
#: pages/profile.php:489
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "%d more subscriber needed"
|
msgid "%d more subscriber needed"
|
||||||
msgid_plural "%d more subscribers needed"
|
msgid_plural "%d more subscribers needed"
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: pages/profile.php:504
|
#: pages/profile.php:518
|
||||||
msgid "Advertisements"
|
msgid "Advertisements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:517
|
#: pages/profile.php:531
|
||||||
msgid "Enable advertisements"
|
msgid "Enable advertisements"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. TRANSLATORS: %s: sponsor me
|
#. TRANSLATORS: %s: sponsor me
|
||||||
#: pages/profile.php:526
|
#: pages/profile.php:540
|
||||||
#, php-format
|
#, php-format
|
||||||
msgid "Time spent on wishthis is time not doing for-profit work. If you would like to support me but either can't or don't want to %s, consider selling your body to Google and becoming its product."
|
msgid "Time spent on wishthis is time not doing for-profit work. If you would like to support me but either can't or don't want to %s, consider selling your body to Google and becoming its product."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:527
|
#: pages/profile.php:541
|
||||||
msgid "sponsor me"
|
msgid "sponsor me"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: pages/profile.php:531
|
#: pages/profile.php:545
|
||||||
msgid "Please remember to add an exception to your ad-blocker and browser."
|
msgid "Please remember to add an exception to your ad-blocker and browser."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
#: pages/profile.php:569 pages/profile.php:582 pages/profile.php:583
|
||||||
|
msgid "Delete account"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
|
#: pages/profile.php:574
|
||||||
|
msgid "Delete this account completely and irreversibly"
|
||||||
|
msgstr ""
|
||||||
|
|
||||||
#: pages/register.php:13
|
#: pages/register.php:13
|
||||||
msgid "Reset password"
|
msgid "Reset password"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
Binary file not shown.
Loading…
Reference in a new issue