@@ -146,7 +146,7 @@ export default ({ strapi }) => ({
146146 * @param {string | string[] } [options.entriesQuery.fields] - Fields present in the returned entry.
147147 * @param {object } [options.entriesQuery.populate] - Relations, components and dynamic zones to populate.
148148 * @param {string } [options.entriesQuery.status] - Publication state: draft or published.
149- * @param {string } [options.entriesQuery.locale] - When using internalization , the language to fetch.
149+ * @param {string } [options.entriesQuery.locale] - When using internationalization (i18n) , the language to fetch.
150150 * @param {string } options.contentType - Content type.
151151 *
152152 * @returns {Promise<object> } - Entries.
@@ -191,7 +191,7 @@ export default ({ strapi }) => ({
191191 * @param {object } [options.populate] - Relations, components and dynamic zones to populate.
192192 * @param {object } [options.status] - Publication state: draft or published.
193193 * @param {string } options.contentType - Content type.
194- * @param {string } [options.locale] - When using internalization , the language to fetch.
194+ * @param {string } [options.locale] - When using internationalization (i18n) , the language to fetch.
195195 *
196196 * @returns {Promise<object[]> } - Entries.
197197 */
@@ -218,7 +218,7 @@ export default ({ strapi }) => ({
218218 populate,
219219 status,
220220 }
221- // To avoid issue if internalization is not installed by the user
221+ // To avoid issue if internationalization (i18n) is not installed by the user
222222 if ( locale ) {
223223 queryOptions . locale = locale
224224 }
0 commit comments