Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Replace 'Owners' by 'Collaborators' #254

Merged
merged 2 commits into from
Aug 24, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion qgis-app/plugins/docs/introduction.rst
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ The Plugin model

The plugin model represents a QGIS plugin and holds general informations such as title and description and icon.

The plugin can have zero or more *owners*, *owners* have the same permissions of the original plugin creator.
The plugin can have zero or more *owners* (also named 'collaborators'), *owners* have the same permissions of the original plugin creator.

Permissions
-----------
Expand Down
2 changes: 1 addition & 1 deletion qgis-app/plugins/templates/plugins/plugin_detail.html
Original file line number Diff line number Diff line change
Expand Up @@ -131,7 +131,7 @@ <h2>{{ object.name }}
<a href="{% url "user_details" object.created_by %}">{{ object.created_by }}</a>
</dd>
{% if object.owners.count %}
<dt>{% trans "Owners"%}</dt>
<dt>{% trans "Collaborators"%}</dt>
<dd>
{% for owner in object.owners.all %}
<a href="{% url "user_details" owner.username %}">{{ owner.username }}</a>{% if not forloop.last %},{% endif %}
Expand Down