From c65e8d03b5c0a627a8fc137b11288763f147f8b2 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 23:16:37 -0400 Subject: [PATCH 001/257] spelling: abandoned Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- static/settings.config.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/settings.config.php b/static/settings.config.php index 04994bc73..2ee58e051 100644 --- a/static/settings.config.php +++ b/static/settings.config.php @@ -48,7 +48,7 @@ return [ ], 'system' => [ // account_abandon_days (Integer) - // Will not waste system resources polling external sites for abandonded accounts. + // Will not waste system resources polling external sites for abandoned accounts. // Enter 0 for no time limit. 'account_abandon_days' => 0, From 1ac0b8762e576ebe26a59452fdcb1d3bbe0b0578 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 23:16:49 -0400 Subject: [PATCH 002/257] spelling: acquire Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/App/Router.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/App/Router.php b/src/App/Router.php index 0bd66d40f..6d90fb013 100644 --- a/src/App/Router.php +++ b/src/App/Router.php @@ -412,7 +412,7 @@ class Router } if (!$this->lock->acquire('getCachedDispatchData', 0)) { - // Immediately return uncached data when we can't aquire a lock + // Immediately return uncached data when we can't acquire a lock return $this->getDispatchData(); } From 07862b8a8840e2e7f833cd7ef670fb442d865860 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 23:16:39 -0400 Subject: [PATCH 003/257] spelling: activity Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- spec/zot.txt | 2 +- src/Model/Nodeinfo.php | 2 +- src/Model/User.php | 2 +- view/theme/vier/mobile.css | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/spec/zot.txt b/spec/zot.txt index 2c3bbb180..e1e4640c9 100644 --- a/spec/zot.txt +++ b/spec/zot.txt @@ -353,7 +353,7 @@ Salmon Magic Envelope Atom Activity Stream Draft http://activitystrea.ms/specs/atom/1.0/ -Activty Stream Base Schema +Activity Stream Base Schema http://activitystrea.ms/head/activity-schema.html WebFinger Protocol diff --git a/src/Model/Nodeinfo.php b/src/Model/Nodeinfo.php index 51692f016..4dbe06c9b 100644 --- a/src/Model/Nodeinfo.php +++ b/src/Model/Nodeinfo.php @@ -67,7 +67,7 @@ class Nodeinfo DI::keyValue()->set('nodeinfo_local_posts', $posts); DI::keyValue()->set('nodeinfo_local_comments', $comments); - $logger->info('User actitivy', ['posts' => $posts, 'comments' => $comments]); + $logger->info('User activity', ['posts' => $posts, 'comments' => $comments]); } /** diff --git a/src/Model/User.php b/src/Model/User.php index 50586183a..80c8f60b8 100644 --- a/src/Model/User.php +++ b/src/Model/User.php @@ -684,7 +684,7 @@ class User if ($user['last-activity'] != $current_day) { User::update(['last-activity' => $current_day], $uid); - // Set the last actitivy for all identities of the user + // Set the last activity for all identities of the user DBA::update('user', ['last-activity' => $current_day], ['parent-uid' => $uid, 'account_removed' => false]); } } diff --git a/view/theme/vier/mobile.css b/view/theme/vier/mobile.css index 6a70d55b1..e49cff9ee 100644 --- a/view/theme/vier/mobile.css +++ b/view/theme/vier/mobile.css @@ -1,4 +1,4 @@ -aside, header, #nav-search-box, #nav-admin-link, #nav-messages-linkmenu, #activitiy-by-date-tab, #shared-links-tab, #nav-logout-link, +aside, header, #nav-search-box, #nav-admin-link, #nav-messages-linkmenu, #activity-by-date-tab, #shared-links-tab, #nav-logout-link, .wall-item-location { display: none; } From 29e74b3061af1374dce2e697aa0ebaf0e053e3e1 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 23:16:41 -0400 Subject: [PATCH 004/257] spelling: actor Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/Protocol/ActivityPub/Transmitter.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Protocol/ActivityPub/Transmitter.php b/src/Protocol/ActivityPub/Transmitter.php index fb4ed0b4c..5498f162e 100644 --- a/src/Protocol/ActivityPub/Transmitter.php +++ b/src/Protocol/ActivityPub/Transmitter.php @@ -444,7 +444,7 @@ class Transmitter } /** - * Get a minimal actror array for the C2S API + * Get a minimal actor array for the C2S API * * @param integer $cid * @return array From 01e1e9b67642267c70291860afbdc48fd9858f77 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 23:16:43 -0400 Subject: [PATCH 005/257] spelling: additional Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- src/Module/Delegation.php | 2 +- view/theme/frio/css/style.css | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Module/Delegation.php b/src/Module/Delegation.php index 0003ae08b..3595ff7f3 100644 --- a/src/Module/Delegation.php +++ b/src/Module/Delegation.php @@ -120,7 +120,7 @@ class Delegation extends BaseModule $identities = User::identities(DI::userSession()->getSubManagedUserId() ?: DI::userSession()->getLocalUserId()); - //getting additinal information for each identity + //getting additional information for each identity foreach ($identities as $key => $identity) { $identities[$key]['thumb'] = User::getAvatarUrl($identity, Proxy::SIZE_THUMB); diff --git a/view/theme/frio/css/style.css b/view/theme/frio/css/style.css index a12c2ae6a..69ac73e46 100644 --- a/view/theme/frio/css/style.css +++ b/view/theme/frio/css/style.css @@ -1790,7 +1790,7 @@ blockquote.shared_content { font-weight: 500; color: $font_color_darker; } -.media .media-body .addional-info a { +.media .media-body .additional-info a { display: block; } .media .contact-info-comment { From f83fb1deb7c93c2271707d727be46aee7601e979 Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 23:16:42 -0400 Subject: [PATCH 006/257] spelling: addresses Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- doc/smarty3-templates.md | 2 +- spec/zot.txt | 2 +- src/Protocol/Relay.php | 2 +- static/defaults.config.php | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/doc/smarty3-templates.md b/doc/smarty3-templates.md index f3f7c3e60..4d50eb7d4 100644 --- a/doc/smarty3-templates.md +++ b/doc/smarty3-templates.md @@ -37,7 +37,7 @@ Form Templates To guarantee a consistent look and feel for input forms, i.e. in the settings sections, there are templates for the basic form fields. They are initialized with an array of data, depending on the tyle of the field. -All of these take an array holding the values, e.g. for a one line text input field, which is required and should be used to type email addesses use something along the lines of: +All of these take an array holding the values, e.g. for a one line text input field, which is required and should be used to type email addresses use something along the lines of: '$adminmail' => array('adminmail', DI::l10n()->t('Site administrator email address'), $adminmail, DI::l10n()->t('Your account email address must match this in order to use the web admin panel.'), 'required', '', 'email'), diff --git a/spec/zot.txt b/spec/zot.txt index e1e4640c9..af82b0b36 100644 --- a/spec/zot.txt +++ b/spec/zot.txt @@ -127,7 +127,7 @@ MUST be present. Z-To: zot:bob@example.com, zot:alice@example.com, mailto:dave@example.com Z-Bcc: zot:https://example.com/profile/richard -are valid entries. Adresses are comma separated and individual entries MUST NOT +are valid entries. Addresses are comma separated and individual entries MUST NOT contain commas. There MAY be any number of ASCII space characters between entries for legibility. Header lines are terminated with a linefeed character (ASCII 0x0A). diff --git a/src/Protocol/Relay.php b/src/Protocol/Relay.php index 028a7885b..dda7ddbdc 100644 --- a/src/Protocol/Relay.php +++ b/src/Protocol/Relay.php @@ -302,7 +302,7 @@ class Relay DBA::close($tagserver); } - // All adresses with the given id + // All addresses with the given id if (!empty($tagserverlist)) { $servers = DBA::select('gserver', ['id', 'url', 'network'], ['relay-subscribe' => true, 'relay-scope' => 'tags', 'id' => $tagserverlist]); while ($server = DBA::fetch($servers)) { diff --git a/static/defaults.config.php b/static/defaults.config.php index 4fb96cfce..0b8ed0a6f 100644 --- a/static/defaults.config.php +++ b/static/defaults.config.php @@ -106,7 +106,7 @@ return [ 'always_show_preview' => false, // ap_always_bcc (Boolean) - // Adresses non-mentioned ActivityPub receivers by BCC instead of CC. Increases privacy, decreases performance. + // Addresses non-mentioned ActivityPub receivers by BCC instead of CC. Increases privacy, decreases performance. 'ap_always_bcc' => false, // archival_days (Integer) From 6e105fbec1fd415ca9ced0b41f1343fa538f93de Mon Sep 17 00:00:00 2001 From: Josh Soref <2119212+jsoref@users.noreply.github.com> Date: Tue, 21 Mar 2023 23:07:09 -0400 Subject: [PATCH 007/257] spelling: advanced Signed-off-by: Josh Soref <2119212+jsoref@users.noreply.github.com> --- view/theme/frio/templates/admin/site.tpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/view/theme/frio/templates/admin/site.tpl b/view/theme/frio/templates/admin/site.tpl index 95eba383a..4d0553b0c 100644 --- a/view/theme/frio/templates/admin/site.tpl +++ b/view/theme/frio/templates/admin/site.tpl @@ -177,7 +177,7 @@ * Corporate */ -->
-