Skip to content

Commit 39953f8

Browse files
authored
Fix last strings in English for 3.40 (#10826)
2 parents d01e60b + dec5c1f commit 39953f8

58 files changed

Lines changed: 83 additions & 83 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

docs/about/features.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -209,7 +209,7 @@ use something like:
209209
$ ulimit -Sn
210210
$ qgis
211211
212-
Alternatively, you can use the newer ``prlimit`` utility. More info: https://manpages.ubuntu.com/manpages/latest/man1/prlimit.1.html
212+
Alternatively, you can use the newer ``prlimit`` utility. More info: https://man7.org/linux/man-pages/man1/prlimit.1.html
213213

214214

215215
**To fix it forever**

docs/developers_guide/git.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -45,7 +45,7 @@ To get started using and contributing to the QGIS repository, you need to:
4545
#. make your own copy of the `QGIS repository <https://github.com/qgis/QGIS>`_
4646
(see `fork <https://docs.github.com/en/pull-requests/collaborating-with-pull-requests/working-with-forks/fork-a-repo>`_)
4747
#. have a :ref:`git client installed <installing_git>` on your system
48-
#. set up your `git environment <https://docs.github.com/en/get-started/getting-started-with-git/set-up-git>`_
48+
#. set up your `git environment <https://docs.github.com/en/get-started/git-basics/set-up-git>`_
4949
#. and have fun!
5050

5151

docs/developers_guide/localization.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Another option in the settings allows to define if the
1616
numeric thousands separator has to be used.
1717

1818
All these features are implemented through the
19-
`QLocale <https://doc.qt.io/qt-5/qlocale.html>`_
19+
`QLocale <https://doc.qt.io/archives/qt-5.15/qlocale.html>`_
2020
QT class which provides a very complete support for numeric
2121
and date types representation.
2222

@@ -33,7 +33,7 @@ do not use ``QString::number()`` because it does not take locale
3333
options into consideration and it always uses ``C`` locale.
3434

3535
Also do not use string interpolation unless you use the ``L`` suffix as explained in
36-
`QString documentation <https://doc.qt.io/qt-5/qstring.html#arg-5>`_.
36+
`QString documentation <https://doc.qt.io/archives/qt-5.15/qstring.html#arg-5>`_.
3737

3838
Use ``QLocale().toString()`` instead.
3939

docs/developers_guide/ogcconformancetesting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ The Open Geospatial Consortium (OGC) provides tests which can be run free of
1414
charge to make sure a server is compliant with a certain specification. This
1515
chapter provides a quick tutorial to setup the WMS and OGC API Features tests
1616
on an Ubuntu system. A detailed documentation can be found at the
17-
`OGC website <https://www.ogc.org/announcement/compliance-testing-is-now-available-for-implementations-of-the-ogc-api-features-part-1-core-standard/>`_.
17+
`OGC website <https://www.ogc.org/press-release/compliance-testing-is-now-available-for-implementations-of-the-ogc-api-features-part-1-core-standard/>`_.
1818

1919

2020
pyogctest

docs/developers_guide/qtcreator.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ Installing QtCreator
1616
=====================
1717

1818
Qt Creator is available on all major platforms and can be downloaded from
19-
https://www.qt.io/download-dev (Go the open source route).
19+
https://www.qt.io/development/download (Go the open source route).
2020
The installation procedure depends on your platform.
2121

2222
If you are running a Unix-like platform, you can use the command line,

docs/developers_guide/unittesting.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -689,7 +689,7 @@ like any executable.
689689
********* Finished testing of TestQgsDxfExport *********
690690
691691
These tests also take `command line arguments
692-
<https://doc.qt.io/qt-5/qtest-overview.html#qt-test-command-line-arguments>`_.
692+
<https://doc.qt.io/archives/qt-5.15/qtest-overview.html#qt-test-command-line-arguments>`_.
693693
This makes it possible to run a specific subset of tests:
694694
695695
.. code-block:: bash

docs/documentation_guidelines/do_translations.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -140,7 +140,7 @@ Two different tools are currently used to do translations in QGIS:
140140
transparently does the process described above and pulls all the translatable
141141
texts in one place for the translator. Just pick the files you want and translate.
142142
Translated files are stored in the platform until another release is pushed.
143-
* `Qt Linguist <https://doc.qt.io/qt-5/qtlinguist-index.html>`_, a Qt
143+
* `Qt Linguist <https://doc.qt.io/archives/qt-5.15/qtlinguist-index.html>`_, a Qt
144144
development tool, requires the translator to pull locally
145145
the :file:`.po` (or :file:`.ts`) files from the source code, translate and
146146
then push back.
@@ -283,7 +283,7 @@ In the menu you see the following buttons which are convenient to use.
283283
jumps to the first translation item it finds that still needs a translation.
284284

285285
For further information on the use of Qt Linguist, see
286-
https://doc.qt.io/qt-5/linguist-translators.html
286+
https://doc.qt.io/archives/qt-5.15/linguist-translators.html
287287

288288
.. warning::
289289

docs/pyqgis_developer_cookbook/canvas.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@ This framework generally provides a surface and a view where custom graphics
6262
items are placed and user can interact with them. We will assume that you are
6363
familiar enough with Qt to understand the concepts of the graphics scene, view
6464
and items. If not, please read the `overview of the framework
65-
<https://doc.qt.io/qt-5/graphicsview.html>`_.
65+
<https://doc.qt.io/archives/qt-5.15/graphicsview.html>`_.
6666

6767
Whenever the map has been panned, zoomed in/out (or some other action that triggers
6868
a refresh), the map is rendered again within the current extent. The layers are

docs/pyqgis_developer_cookbook/composer.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -132,12 +132,12 @@ then exported to PDF, SVG, raster images or directly printed on a printer.
132132
The layout consists of a bunch of classes. They all belong to the core
133133
library. QGIS application has a convenient GUI for placement of the elements,
134134
though it is not available in the GUI library. If you are not familiar with
135-
`Qt Graphics View framework <https://doc.qt.io/qt-5/graphicsview.html>`_,
135+
`Qt Graphics View framework <https://doc.qt.io/archives/qt-5.15/graphicsview.html>`_,
136136
then you are encouraged to check the documentation now, because the layout
137137
is based on it.
138138

139139
The central class of the layout is the :class:`QgsLayout <qgis.core.QgsLayout>`
140-
class, which is derived from the Qt `QGraphicsScene <https://doc.qt.io/qt-5/qgraphicsscene.html>`_
140+
class, which is derived from the Qt `QGraphicsScene <https://doc.qt.io/archives/qt-5.15/qgraphicsscene.html>`_
141141
class. Let us create an instance of it:
142142

143143
.. testcode:: composer

docs/pyqgis_developer_cookbook/geometry.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ coordinates in CRS of the layer.
6464

6565
Description and specifications of all possible geometries construction and
6666
relationships are available in the `OGC Simple Feature Access Standards
67-
<https://www.ogc.org/publications/standard/sfa>`_ for advanced details.
67+
<https://www.ogc.org/standards/sfa/>`_ for advanced details.
6868

6969
.. index:: Geometry; Construction
7070

0 commit comments

Comments
 (0)