Skip to content

Commit 5a820d0

Browse files
authored
Merge pull request #14701 from nextcloud/backport/14645/stable33
2 parents 8f573b3 + 23abe5d commit 5a820d0

13 files changed

Lines changed: 19 additions & 18 deletions

File tree

admin_manual/ai/app_assistant.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -65,7 +65,7 @@ Text processing
6565
In order to make use of text processing features in the assistant, you will need an app that provides a Text processing backend:
6666

6767
* :ref:`llm2<ai-app-llm2>` - Runs open source AI language models locally on your own server hardware (Customer support available upon request)
68-
* * `OpenAI and LocalAI integration (via OpenAI API) <https://apps.nextcloud.com/apps/integration_openai>`_ - Integrates with the OpenAI API to provide AI functionality from OpenAI servers (Customer support available upon request; see :ref:`AI as a Service<ai-ai_as_a_service>`)
68+
* `OpenAI and LocalAI integration (via OpenAI API) <https://apps.nextcloud.com/apps/integration_openai>`_ - Integrates with the OpenAI API to provide AI functionality from OpenAI servers (Customer support available upon request; see :ref:`AI as a Service<ai-ai_as_a_service>`)
6969
* *integration_watsonx* - Integrates with the IBM watsonx.ai API to provide AI functionality from IBM Cloud servers (Customer support available upon request; see :ref:`AI as a Service<ai-ai_as_a_service>`)
7070

7171
These apps currently implement the following Assistant Tasks:
@@ -85,7 +85,7 @@ Text-To-Image
8585
In order to make use of Text-To-Image features, you will need an app that provides an image generation backend:
8686

8787
* :ref:`tex2image_stablediffusion2<ai-app-text2image_stablediffusion2>` (Customer support available upon request)
88-
* * `OpenAI and LocalAI integration (via OpenAI API) <https://apps.nextcloud.com/apps/integration_openai>`_ - Integrates with the OpenAI API to provide AI functionality from OpenAI servers (Customer support available upon request; see :ref:`AI as a Service<ai-ai_as_a_service>`)
88+
* `OpenAI and LocalAI integration (via OpenAI API) <https://apps.nextcloud.com/apps/integration_openai>`_ - Integrates with the OpenAI API to provide AI functionality from OpenAI servers (Customer support available upon request; see :ref:`AI as a Service<ai-ai_as_a_service>`)
8989
* *integration_replicate* - Integrates with the replicate API to provide AI functionality from replicate servers (see :ref:`AI as a Service<ai-ai_as_a_service>`)
9090

9191
Context Chat
@@ -103,7 +103,7 @@ Chat
103103
In order to make use of our "Chat with AI" feature you will need any one of the following apps:
104104

105105
* :ref:`llm2<ai-app-llm2>` - Runs open source AI language models locally on your own server hardware (Customer support available upon request)
106-
* * `OpenAI and LocalAI integration (via OpenAI API) <https://apps.nextcloud.com/apps/integration_openai>`_ - Integrates with the OpenAI API to provide AI functionality from OpenAI servers (Customer support available upon request; see :ref:`AI as a Service<ai-ai_as_a_service>`)
106+
* `OpenAI and LocalAI integration (via OpenAI API) <https://apps.nextcloud.com/apps/integration_openai>`_ - Integrates with the OpenAI API to provide AI functionality from OpenAI servers (Customer support available upon request; see :ref:`AI as a Service<ai-ai_as_a_service>`)
107107

108108

109109
Voice Chat

admin_manual/configuration_files/external_storage/openstack.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ protocol. Your Nextcloud configuration needs:
1818
* **Identity Endpoint URL**, the URL to log in to your OpenStack account.
1919

2020
.. figure:: images/openstack.png
21-
:alt: Openstack configuration.
21+
:alt: OpenStack configuration.
2222

2323
The Rackspace authentication mechanism requires:
2424

@@ -29,7 +29,7 @@ The Rackspace authentication mechanism requires:
2929
You must also enter the term **cloudFiles** in the **Service name** field.
3030

3131
.. figure:: images/rackspace.png
32-
:alt: Openstack configuration.
32+
:alt: OpenStack configuration.
3333

3434
It may be necessary to specify a **Region**. Your region should be named in
3535
your account information, and you can read about Rackspace regions at

admin_manual/configuration_server/language_configuration.rst

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,8 @@ If this does not work properly or you want to make sure that Nextcloud always
1010
starts with a given language, you can set a **default_language** parameter in the
1111
:file:`config/config.php`.
1212

13-
.. note:: The default_language parameter is only used when the browser does not send any language, and the user hasn’t configured their own language preferences. This sets the default language on your Nextcloud server, using ISO_639-1 language codes such as en for English, de for German, and fr for French. Nextcloud has two distinguished language codes for German, de and de_DE. de is used for informal German and de_DE for formal German. By setting this value to de_DE, you can enforce the formal version of German unless the user has chosen something different explicitly.
13+
.. note:: The ``default_language`` parameter only applies when the browser sends no language preference and the user has not set their own.
14+
Accepts ISO 639-1 codes such as ``en`` (English), ``fr`` (French), ``de`` (informal German), or ``de_DE`` (formal German).
1415

1516
::
1617

admin_manual/maintenance/manual_upgrade.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -130,7 +130,7 @@ You'll find previous Nextcloud releases in the `Nextcloud Server Changelog
130130
Troubleshooting
131131
---------------
132132

133-
Occasionally, *files do not show up after a upgrade*. A rescan of the files can
133+
Occasionally, *files do not show up after an upgrade*. A rescan of the files can
134134
help::
135135

136136
sudo -E -u www-data php console.php files:scan --all

admin_manual/maintenance/migrating_owncloud.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Migrating from ownCloud
99

1010
Currently migrating from ownCloud is like performing a manual update.
1111
So it is quite easy, to migrate from one ownCloud version to at least one Nextcloud version.
12-
However this does only work with versions that are close enough database and code-wise.
12+
However this does only work with versions that are sufficiently compatible in database schema and codebase.
1313
See the table below for a version map, where migrating is easily possible:
1414

1515
+-------------------+-------------------------------+

developer_manual/app_development/info.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ A minimum valid **info.xml** would look like this:
3232
</dependencies>
3333
</info>
3434
35-
A full blown example would look like this (needs to be utf-8 encoded):
35+
A comprehensive example would look like this (needs to be utf-8 encoded):
3636

3737
.. code-block:: xml
3838
:caption: appinfo/info.xml

developer_manual/app_publishing_maintenance/publishing.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ To deliver on the promises above, we have two simple rules.
8282

8383
We want to make sure that when you find other things in life which are more urgent or otherwise are unable to help your project anymore, it does not become 'dead code' as long as there are people who want to keep it alive. This is not fair to users, who would be forced to remove the app and install another.
8484

85-
Please note that the role of a maintainer is not to be the most active or prolific contributor to a project! Being friendly, welcoming and responsive are what it takes to be a successful maintainer. Not being the most brilliant developer ever, or spending nights and weekends coding!
85+
Please note that the role of a maintainer is not to be the most active or prolific contributor to a project! Being friendly, welcoming and responsive are what it takes to be a successful maintainer. Not being the most brilliant developer ever, or spending nights and weekends coding.
8686

8787
The goal of these rules is simple: help your project be more successful. We also suggest you watch this talk by `Jan about building a great community. <https://www.youtube.com/watch?v=UtAoRIKVpW4>`_
8888

developer_manual/digging_deeper/snowflake_ids.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -85,7 +85,7 @@ It’s also possible to decode IDs in your code, for example to get creation tim
8585
8686
namespace OCA\MyApp;
8787
88-
use DateTimeImmutable
88+
use DateTimeImmutable;
8989
use OCP\Snowflake\IDecoder;
9090
9191
class MyObject {

developer_manual/prologue/bugtracker/triaging.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ The process of checking, reproducing and closing invalid issues is called ‘bug
2424
2. Incomplete or duplicate bug reports or feature requests
2525
3. Irrelevant or wrong bug reports or feature requests
2626

27-
The job of a bug triager is to identify the One’s for developers to look at, help remove, merge or improve any Two to a One and dismiss Three’s in a friendly and emphatic way.
27+
The job of a bug triager is to identify Category 1 issues for developers to look at, help remove, merge or improve any Category 2 issue to a Category 1, and dismiss Category 3 issues in a friendly and emphatic way.
2828

2929
Triaging follows these steps:
3030

user_manual/desktop/faq.rst

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ FAQ
44

55
How the "Edit locally" functionality works
66
------------------------------------------
7-
This functionality depends on the desktop client ability to register the mime to handle the nc:// scheme. That is the handler used by the server to open a file locally. This will allow the desktop client to open a document with the local editor when you click on the option "Edit locally" in your Nextcloud instance.
7+
This functionality depends on the desktop client ability to register the nc:// protocol handler. That is the handler used by the server to open a file locally. This will allow the desktop client to open a document with the local editor when you click on the option "Edit locally" in your Nextcloud instance.
88

99
.. note::
1010
Without properly registering the mime, independent of the browser and distro being used, the desktop client will fail to open a document with the local editor when you click on the option "Edit locally" in your Nextcloud instance.
@@ -24,9 +24,9 @@ We use AppImage due to its universal compatibility but to take full advantage of
2424
On Windows
2525
^^^^^^^^^^
2626

27-
The MSI installer will alter your system registry to register the mime to handle the nc:// scheme.
27+
The MSI installer will alter your system registry to register the nc:// protocol handler.
2828

29-
Alternatively, you can manually register the mime to handle the nc:// scheme:
29+
Alternatively, you can manually register the nc:// protocol handler:
3030

3131
1. Save the following content to a .reg file:
3232

0 commit comments

Comments
 (0)