29
0
mirror of https://github.com/joomla/joomla-cms.git synced 2024-06-27 07:33:41 +00:00
cms/language/en-GB/com_content.ini

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

98 lines
4.9 KiB
INI
Raw Permalink Normal View History

; Joomla! Project
; (C) 2005 Open Source Matters, Inc. <https://www.joomla.org>
; License GNU General Public License version 2 or later; see LICENSE.txt
2015-03-26 09:41:44 +00:00
; Note : All ini files need to be saved as UTF-8
COM_CONTENT_ARTICLE_CONTENT="Content"
COM_CONTENT_ARTICLE_HITS="Hits: %s"
COM_CONTENT_ARTICLE_INFO="Details"
COM_CONTENT_ARTICLE_VOTE_FAILURE="You already rated this article today!"
COM_CONTENT_ARTICLE_VOTE_SUCCESS="Thank you for rating this article."
COM_CONTENT_ARTICLES_TABLE_CAPTION="Articles"
COM_CONTENT_AUTHOR_FILTER_LABEL="Author Filter"
COM_CONTENT_CAPTCHA_DESC="Please complete the security check."
COM_CONTENT_CAPTCHA_LABEL="Captcha"
COM_CONTENT_CATEGORY="Category: %s"
COM_CONTENT_CATEGORY_LIST_TABLE_CAPTION="Articles in category %s"
COM_CONTENT_CHECKED_OUT_BY="Checked out by %s"
2014-10-31 08:39:57 +00:00
COM_CONTENT_CONTENT_TYPE_ARTICLE="Article"
2014-11-03 10:43:53 +00:00
COM_CONTENT_CONTENT_TYPE_CATEGORY="Article Category"
COM_CONTENT_CREATED_DATE="Created Date"
2012-08-16 06:04:31 +00:00
COM_CONTENT_CREATED_DATE_ON="Created: %s"
COM_CONTENT_EDIT_ITEM="Edit Article"
COM_CONTENT_EDIT_PUBLISHED_ARTICLE="Published Article"
COM_CONTENT_EDIT_UNPUBLISHED_ARTICLE="Unpublished Article"
COM_CONTENT_ERROR_ARTICLE_NOT_FOUND="Article not found"
COM_CONTENT_ERROR_LOGIN_TO_VIEW_ARTICLE="Please login to view the article"
2013-11-10 15:53:13 +00:00
COM_CONTENT_ERROR_PARENT_CATEGORY_NOT_FOUND="Parent category not found"
COM_CONTENT_ERROR_PRINT_POPUP="Sorry, Joomla 4 no longer supports print_popup"
2022-10-28 19:22:53 +00:00
COM_CONTENT_ERROR_UNIQUE_ALIAS="Another Article in this category has the same alias."
COM_CONTENT_ERROR_UNIQUE_ALIAS_TRASHED="A trashed Article in this category has the same alias."
COM_CONTENT_FEED_READMORE="Read More &hellip;"
COM_CONTENT_FIELD_ARTICLETEXT_LABEL="Article Text"
COM_CONTENT_FIELD_FEATURED_DOWN_LABEL="Finish Featured"
COM_CONTENT_FIELD_FEATURED_UP_LABEL="Start Featured"
COM_CONTENT_FIELD_FULL_LABEL="Full Article Image"
[4.0] Intro and Full image accessibility (#31318) * [4.0] Intro and Full image accessibility An alt text provides an accessible description of an image. Most of the time you should always have one. You should never not have any alt because then assistive technology such as a screenreader will announce the filename. See the October Joomla Magazine article on this In the rarer situation that the image is purely decorative then it is acceptable to have an empty alt text which should be alt="". Currently there are several places in Joomla where if you are too lazy to enter a text description of the image then joomla will insert alt="" While this does prevent the filename being read aloud it is not good practice as you are preventing a significant % of your readers being able to access all the content. Research conducted by the EU shows that content creators want to (need to) create accessible content but don't really know how. The main tool that they have available to them is an accessibility checker. And they then act upon the findings of that tool. **If the content author performs an accessibility check of their site then most checkers will not report any errors or warnings about missing descriptions as it sees the alt="" and ignores it.** Adding alt="" is perfectly valid for a decorative image only. It should be a conscious/active decision to mark an image as decorative. Comment from @brucel confirming this https://github.com/joomla/joomla-cms/issues/31138#issuecomment-711789514 Comment from @mgifford confirming this https://github.com/joomla/joomla-cms/issues/31138#issuecomment-712222061 Adding an additional helptext to the description is not enough Making this a required field is not possible in Joomla with the current codebase as it would only be required IF there is an image and we dont have support for that condition. Suggesting that you have to put `""` in the description to mark something as decorative is not very user friendly and it is actually adding more keystrokes etc than skipping to the next field and checking the box - as explained to @carcam The correct use of alt text is **not** advanced accessibility. It is very basic accessibility and addressed at level A There is no point in making the commitment and statement that Joomla itself is accessible if it at the same time makes it harder to create an accessible site. ### Testing Testing is really easy. No npm, js or css involved. Merge the pull request and then go to edit an article on both the admin and site. For the site you might need to enable the frontend images and urls option in the component. You now have a new field and tweaked text Please test three scenarios when adding an intro image 1. Image Description (Alt Text) = Empty No Description = unchecked 2. Image Description (Alt Text) = "some description" No Description = unchecked 3. Image Description (Alt Text) = Empty No Description = checked The expected behaviour for each of these tests is 1. `<img loading="lazy" src="filename.jpg" itemprop="thumbnailUrl">` 2. `<img loading="lazy" src="filename.jpg" alt="some description" itemprop="thumbnailUrl">` 3. `<img loading="lazy" src="filename.jpg" alt itemprop="thumbnailUrl">` or `<img loading="lazy" src="filename.jpg" alt="" itemprop="thumbnailUrl">` * Update full_image.php code style
2020-11-07 08:25:05 +00:00
COM_CONTENT_FIELD_IMAGE_ALT_EMPTY_DESC="Decorative Image - no description required"
COM_CONTENT_FIELD_IMAGE_ALT_EMPTY_LABEL="No Description"
COM_CONTENT_FIELD_IMAGE_ALT_LABEL="Image Description (Alt Text)"
COM_CONTENT_FIELD_IMAGE_CAPTION_LABEL="Caption"
[4.0] Intro and Full image accessibility (#31318) * [4.0] Intro and Full image accessibility An alt text provides an accessible description of an image. Most of the time you should always have one. You should never not have any alt because then assistive technology such as a screenreader will announce the filename. See the October Joomla Magazine article on this In the rarer situation that the image is purely decorative then it is acceptable to have an empty alt text which should be alt="". Currently there are several places in Joomla where if you are too lazy to enter a text description of the image then joomla will insert alt="" While this does prevent the filename being read aloud it is not good practice as you are preventing a significant % of your readers being able to access all the content. Research conducted by the EU shows that content creators want to (need to) create accessible content but don't really know how. The main tool that they have available to them is an accessibility checker. And they then act upon the findings of that tool. **If the content author performs an accessibility check of their site then most checkers will not report any errors or warnings about missing descriptions as it sees the alt="" and ignores it.** Adding alt="" is perfectly valid for a decorative image only. It should be a conscious/active decision to mark an image as decorative. Comment from @brucel confirming this https://github.com/joomla/joomla-cms/issues/31138#issuecomment-711789514 Comment from @mgifford confirming this https://github.com/joomla/joomla-cms/issues/31138#issuecomment-712222061 Adding an additional helptext to the description is not enough Making this a required field is not possible in Joomla with the current codebase as it would only be required IF there is an image and we dont have support for that condition. Suggesting that you have to put `""` in the description to mark something as decorative is not very user friendly and it is actually adding more keystrokes etc than skipping to the next field and checking the box - as explained to @carcam The correct use of alt text is **not** advanced accessibility. It is very basic accessibility and addressed at level A There is no point in making the commitment and statement that Joomla itself is accessible if it at the same time makes it harder to create an accessible site. ### Testing Testing is really easy. No npm, js or css involved. Merge the pull request and then go to edit an article on both the admin and site. For the site you might need to enable the frontend images and urls option in the component. You now have a new field and tweaked text Please test three scenarios when adding an intro image 1. Image Description (Alt Text) = Empty No Description = unchecked 2. Image Description (Alt Text) = "some description" No Description = unchecked 3. Image Description (Alt Text) = Empty No Description = checked The expected behaviour for each of these tests is 1. `<img loading="lazy" src="filename.jpg" itemprop="thumbnailUrl">` 2. `<img loading="lazy" src="filename.jpg" alt="some description" itemprop="thumbnailUrl">` 3. `<img loading="lazy" src="filename.jpg" alt itemprop="thumbnailUrl">` or `<img loading="lazy" src="filename.jpg" alt="" itemprop="thumbnailUrl">` * Update full_image.php code style
2020-11-07 08:25:05 +00:00
COM_CONTENT_FIELD_IMAGE_CLASS_LABEL="Image Class"
COM_CONTENT_FIELD_INTRO_LABEL="Intro Image"
COM_CONTENT_FIELD_NOTE_LABEL="Note"
COM_CONTENT_FIELD_URL_LINK_TEXT_LABEL="Link Text"
COM_CONTENT_FIELD_URLA_LABEL="Link A"
COM_CONTENT_FIELD_URLA_LINK_TEXT_LABEL="Link A Text"
COM_CONTENT_FIELD_URLB_LABEL="Link B"
COM_CONTENT_FIELD_URLB_LINK_TEXT_LABEL="Link B Text"
COM_CONTENT_FIELD_URLC_LABEL="Link C"
COM_CONTENT_FIELD_URLC_LINK_TEXT_LABEL="Link C Text"
COM_CONTENT_FILTER_SEARCH_DESC="Content Filter Search"
COM_CONTENT_FLOAT_LABEL="Image Float"
COM_CONTENT_FORM_EDIT_ARTICLE="Edit an article"
COM_CONTENT_FORM_FILTER_LEGEND="Filters"
COM_CONTENT_FORM_FILTER_SUBMIT="Filter"
COM_CONTENT_HEADING_TITLE="Title"
COM_CONTENT_HITS_FILTER_LABEL="Hits Filter"
COM_CONTENT_IMAGES_AND_URLS="Images and Links"
COM_CONTENT_INTROTEXT="Article must have some content."
COM_CONTENT_INVALID_RATING="Article Rating: Invalid Rating: %s"
2012-08-16 06:04:31 +00:00
COM_CONTENT_LAST_UPDATED="Last Updated: %s"
COM_CONTENT_METADATA="Metadata"
COM_CONTENT_MODAL_FILTER_SEARCH_DESC="Search in title and alias. Prefix with ID: or AUTHOR: to search for an article ID or article author."
COM_CONTENT_MODAL_FILTER_SEARCH_LABEL="Search Articles"
COM_CONTENT_MODIFIED_DATE="Modified Date"
COM_CONTENT_MONTH="Month"
COM_CONTENT_MORE_ARTICLES="More Articles &hellip;"
COM_CONTENT_NEW_ARTICLE="New Article"
COM_CONTENT_NO_ARTICLES="There are no articles in this category. If subcategories display on this page, they may have articles."
COM_CONTENT_NUM_ITEMS="Article Count:"
COM_CONTENT_ON_NEW_CONTENT="A new Article has been submitted by '%1$s' entitled '%2$s'."
COM_CONTENT_ORDERING="Ordering:<br>New articles default to the first position in the Category. The ordering can be changed in Backend."
COM_CONTENT_PAGEBREAK_DOC_TITLE="Page Break"
COM_CONTENT_PAGEBREAK_INSERT_BUTTON="Insert Page Break"
COM_CONTENT_PAGEBREAK_TITLE="Page Title:"
COM_CONTENT_PAGEBREAK_TOC="Table of Contents Alias:"
COM_CONTENT_PARENT="Parent Category: %s"
COM_CONTENT_PUBLISHED_DATE="Published Date"
2012-08-16 06:04:31 +00:00
COM_CONTENT_PUBLISHED_DATE_ON="Published: %s"
COM_CONTENT_PUBLISHING="Publishing"
COM_CONTENT_RATINGS="Rating"
COM_CONTENT_RATINGS_COUNT="Rating: %s"
COM_CONTENT_READ_MORE="Read more &hellip;"
COM_CONTENT_READ_MORE_TITLE="Read more: %s"
COM_CONTENT_REGISTER_TO_READ_MORE="Register to read more &hellip;"
2023-01-25 19:04:23 +00:00
COM_CONTENT_RUN_TRANSITION="Run Transition"
COM_CONTENT_SAVE_SUCCESS="Article saved."
COM_CONTENT_SAVE_WARNING="Alias already existed so a number was added at the end. If you want to change the alias, please contact a site administrator"
2012-12-24 19:05:43 +00:00
COM_CONTENT_SELECT_AN_ARTICLE="Select an Article"
COM_CONTENT_STATE="State"
COM_CONTENT_SUBMIT_SAVE_SUCCESS="Article submitted."
COM_CONTENT_TITLE_FILTER_LABEL="Title Filter"
COM_CONTENT_TRANSITION="Transition"
COM_CONTENT_VOTES="Vote"
COM_CONTENT_VOTES_COUNT="Vote: %s"
COM_CONTENT_WORKFLOW="Workflow"
2023-01-25 19:04:23 +00:00
COM_CONTENT_WORKFLOW_STAGE="Workflow Stage"
COM_CONTENT_WRITTEN_BY="Written by: %s"