Compare commits
15 Commits
| Author | SHA1 | Date | |
|---|---|---|---|
| fb66afbf71 | |||
| 365fa6abc9 | |||
| d7a824f35f | |||
| 0d8e412220 | |||
| 991f6ef508 | |||
| 37f03f5e2e | |||
| b4a4ff0a06 | |||
| de8876bd5e | |||
| 5ad272e628 | |||
| 3b22582752 | |||
| e734fcbd21 | |||
| 435879c121 | |||
| ed81650f55 | |||
| 1276a880de | |||
| 584016c291 |
+17
-65
@@ -1,81 +1,33 @@
|
|||||||
include:
|
image: registry.gitlab.gnome.org/gnome/gnome-shell/extension-ci:v2
|
||||||
- remote: "https://gitlab.freedesktop.org/freedesktop/ci-templates/-/raw/8445ff7af2a68795afb98f486251f2ef8f90621c/templates/ci-fairy.yml"
|
|
||||||
|
|
||||||
image: registry.gitlab.gnome.org/gnome/gnome-shell/fedora/33:2020-11-17.0
|
|
||||||
|
|
||||||
stages:
|
stages:
|
||||||
- pre_review
|
|
||||||
- review
|
- review
|
||||||
- build
|
- build
|
||||||
|
|
||||||
default:
|
|
||||||
# Cancel jobs if newer commits are pushed to the branch
|
|
||||||
interruptible: true
|
|
||||||
# Auto-retry jobs in case of infra failures
|
|
||||||
retry:
|
|
||||||
max: 1
|
|
||||||
when:
|
|
||||||
- 'runner_system_failure'
|
|
||||||
- 'stuck_or_timeout_failure'
|
|
||||||
- 'scheduler_failure'
|
|
||||||
- 'api_failure'
|
|
||||||
|
|
||||||
variables:
|
variables:
|
||||||
LINT_LOG: "eslint-report.xml"
|
LINT_LOG: "eslint-report.txt"
|
||||||
JS_LOG: "js-report.txt"
|
JS_LOG: "js-report.txt"
|
||||||
|
|
||||||
workflow:
|
.only_default: &only_default
|
||||||
rules:
|
only:
|
||||||
- if: '$CI_MERGE_REQUEST_IID'
|
- branches
|
||||||
- if: '$CI_COMMIT_TAG'
|
- tags
|
||||||
- if: '$CI_COMMIT_BRANCH'
|
- merge_requests
|
||||||
|
|
||||||
.pipeline_guard: &pipeline_guard
|
|
||||||
rules:
|
|
||||||
- if: '$CI_PIPELINE_SOURCE == "merge_request_event"'
|
|
||||||
- if: '$CI_COMMIT_TAG'
|
|
||||||
- if: '$CI_COMMIT_BRANCH == $CI_DEFAULT_BRANCH'
|
|
||||||
- if: '$CI_COMMIT_BRANCH =~ /^gnome-[0-9-]+$/'
|
|
||||||
- when: 'manual'
|
|
||||||
|
|
||||||
check_commit_log:
|
check_commit_log:
|
||||||
extends:
|
image: registry.gitlab.gnome.org/gnome/gjs:fedora.static-analysis
|
||||||
- .fdo.ci-fairy
|
stage: review
|
||||||
stage: pre_review
|
|
||||||
script:
|
script:
|
||||||
- ./.gitlab-ci/check-commit-log.sh
|
- ./.gitlab-ci/check-commit-log.sh
|
||||||
<<: *pipeline_guard
|
only:
|
||||||
artifacts:
|
- merge_requests
|
||||||
expire_in: 1 week
|
|
||||||
paths:
|
|
||||||
- commit-message-junit-report.xml
|
|
||||||
reports:
|
|
||||||
junit: commit-message-junit-report.xml
|
|
||||||
|
|
||||||
check-merge-request:
|
|
||||||
extends:
|
|
||||||
- .fdo.ci-fairy
|
|
||||||
stage: pre_review
|
|
||||||
script:
|
|
||||||
- if [[ x"$CI_MERGE_REQUEST_TARGET_BRANCH_NAME" != "x" ]] ;
|
|
||||||
then
|
|
||||||
ci-fairy check-merge-request --require-allow-collaboration --junit-xml=check-merge-request-report.xml ;
|
|
||||||
else
|
|
||||||
echo "Not a merge request" ;
|
|
||||||
fi
|
|
||||||
<<: *pipeline_guard
|
|
||||||
artifacts:
|
|
||||||
expire_in: 1 week
|
|
||||||
paths:
|
|
||||||
- check-merge-request-report.xml
|
|
||||||
reports:
|
|
||||||
junit: check-merge-request-report.xml
|
|
||||||
|
|
||||||
js_check:
|
js_check:
|
||||||
stage: review
|
stage: review
|
||||||
script:
|
script:
|
||||||
- find extensions -name '*.js' -exec js78 -c '{}' ';' 2>&1 | tee $JS_LOG
|
- find extensions -name '*.js' -exec js68 -c -s '{}' ';' 2>&1 | tee $JS_LOG
|
||||||
- (! grep -q . $JS_LOG)
|
- (! grep -q . $JS_LOG)
|
||||||
|
<<: *only_default
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- ${JS_LOG}
|
- ${JS_LOG}
|
||||||
@@ -84,18 +36,18 @@ js_check:
|
|||||||
eslint:
|
eslint:
|
||||||
stage: review
|
stage: review
|
||||||
script:
|
script:
|
||||||
- eslint -o $LINT_LOG -f junit extensions
|
- eslint -o $LINT_LOG extensions --no-color || { cat $LINT_LOG; false; }
|
||||||
|
<<: *only_default
|
||||||
artifacts:
|
artifacts:
|
||||||
paths:
|
paths:
|
||||||
- ${LINT_LOG}
|
- ${LINT_LOG}
|
||||||
reports:
|
when: on_failure
|
||||||
junit: ${LINT_LOG}
|
|
||||||
|
|
||||||
build-bundles:
|
build-bundles:
|
||||||
stage: build
|
stage: build
|
||||||
needs: ["check_commit_log"]
|
|
||||||
script:
|
script:
|
||||||
- ./export-zips.sh
|
- ./export-zips.sh
|
||||||
|
<<: *only_default
|
||||||
artifacts:
|
artifacts:
|
||||||
name: 'Extension bundles'
|
name: 'Extension bundles'
|
||||||
expose_as: 'Get Extension bundles here'
|
expose_as: 'Get Extension bundles here'
|
||||||
|
|||||||
@@ -1,8 +1,8 @@
|
|||||||
#!/usr/bin/env bash
|
#!/usr/bin/env bash
|
||||||
|
|
||||||
if [ -z "$CI_MERGE_REQUEST_TARGET_BRANCH_NAME" ]; then
|
if [ -z "$CI_MERGE_REQUEST_TARGET_BRANCH_NAME" ]; then
|
||||||
echo This is not a merge request, skipping
|
echo Cannot review non-merge request
|
||||||
exit 0
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
git fetch $CI_MERGE_REQUEST_PROJECT_URL.git $CI_MERGE_REQUEST_TARGET_BRANCH_NAME
|
git fetch $CI_MERGE_REQUEST_PROJECT_URL.git $CI_MERGE_REQUEST_TARGET_BRANCH_NAME
|
||||||
@@ -16,59 +16,16 @@ if [ -z "$commits" ]; then
|
|||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
JUNIT_REPORT_TESTS_FILE=$(mktemp)
|
function commit_message_has_url() {
|
||||||
|
|
||||||
function append_failed_test_case() {
|
|
||||||
test_name="$1"
|
|
||||||
commit="$2"
|
|
||||||
test_message="$3"
|
|
||||||
commit_short=${commit:0:8}
|
|
||||||
|
|
||||||
echo "<testcase name=\"$test_name: $commit_short\"><failure message=\"$commit_short: $test_message\"/></testcase>" >> $JUNIT_REPORT_TESTS_FILE
|
|
||||||
echo &>2 "Commit check failed: $commit_short: $test_message"
|
|
||||||
}
|
|
||||||
|
|
||||||
function append_passed_test_case() {
|
|
||||||
test_name="$1"
|
|
||||||
commit="$2"
|
|
||||||
commit_short=${commit:0:8}
|
|
||||||
echo "<testcase name=\"$test_name: $commit_short\"></testcase>" >> $JUNIT_REPORT_TESTS_FILE
|
|
||||||
}
|
|
||||||
|
|
||||||
function generate_junit_report() {
|
|
||||||
junit_report_file="$1"
|
|
||||||
num_tests=$(cat "$JUNIT_REPORT_TESTS_FILE" | wc -l)
|
|
||||||
num_failures=$(grep '<failure />' "$JUNIT_REPORT_TESTS_FILE" | wc -l )
|
|
||||||
|
|
||||||
echo Generating JUnit report \"$(pwd)/$junit_report_file\" with $num_tests tests and $num_failures failures.
|
|
||||||
|
|
||||||
cat > $junit_report_file << __EOF__
|
|
||||||
<?xml version="1.0" encoding="utf-8"?>
|
|
||||||
<testsuites tests="$num_tests" errors="0" failures="$num_failures">
|
|
||||||
<testsuite name="commit-review" tests="$num_tests" errors="0" failures="$num_failures" skipped="0">
|
|
||||||
$(< $JUNIT_REPORT_TESTS_FILE)
|
|
||||||
</testsuite>
|
|
||||||
</testsuites>
|
|
||||||
__EOF__
|
|
||||||
}
|
|
||||||
|
|
||||||
function commit_message_has_mr_url() {
|
|
||||||
commit=$1
|
commit=$1
|
||||||
commit_message=$(git show -s --format='format:%b' $commit)
|
commit_message=$(git show -s --format='format:%b' $commit)
|
||||||
echo "$commit_message" | grep -qe "^$CI_MERGE_REQUEST_PROJECT_URL\/\(-\/\)\?merge_requests\/$CI_MERGE_REQUEST_IID$"
|
echo "$commit_message" | grep -qe "\($CI_MERGE_REQUEST_PROJECT_URL/\(-/\)\?\(issues\|merge_requests\)/[0-9]\+\|https://bugzilla.gnome.org/show_bug.cgi?id=[0-9]\+\)"
|
||||||
return $?
|
return $?
|
||||||
}
|
}
|
||||||
|
|
||||||
for commit in $commits; do
|
for commit in $commits; do
|
||||||
if commit_message_has_mr_url $commit; then
|
if ! commit_message_has_url $commit; then
|
||||||
append_failed_test_case superfluous_url $commit \
|
echo "Missing merge request or issue URL on commit $(echo $commit | cut -c -8)"
|
||||||
"Commit message must not contain a link to its own merge request"
|
exit 1
|
||||||
else
|
|
||||||
append_passed_test_case superfluous_url $commit
|
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
generate_junit_report commit-message-junit-report.xml
|
|
||||||
|
|
||||||
! grep -q '<failure' commit-message-junit-report.xml
|
|
||||||
exit $?
|
|
||||||
|
|||||||
@@ -1,20 +1,15 @@
|
|||||||
40.alpha
|
3.38.2
|
||||||
========
|
======
|
||||||
* window-list: Honor changes in skip-taskbar property [Sergio; !130]
|
* window-list: Honor changes in skip-taskbar property [Sergio; !130]
|
||||||
* window-list, workspace-indicator: Adjust to 3.38 changes [Florian; !133]
|
|
||||||
* window-list, workspace-indicator: Improve previews in workspace thumbs
|
* window-list, workspace-indicator: Improve previews in workspace thumbs
|
||||||
[Florian; #260, !142]
|
[Florian; #260, !142]
|
||||||
|
* window-list, workspace-indicator: Adjust to 3.38 changes [Florian; !133]
|
||||||
* auto-move: Improve behavior on multi-monitor setups [Florian; !135]
|
* auto-move: Improve behavior on multi-monitor setups [Florian; !135]
|
||||||
* windowNavigator: Adjust to 3.38 changes [Thun; #259]
|
* windowNavigator: Adjust to 3.38 changes [Thun; #259]
|
||||||
* Misc. bug fixes and cleanups [Florian, Jonas Å, Jordan, Ray; !131, !136,
|
* Misc. bug fixes [Ray; !145]
|
||||||
!137, !140, !141, !144, !146, !145]
|
|
||||||
|
|
||||||
Contributors:
|
Contributors:
|
||||||
Sergio Costas, Florian Müllner, Jordan Petridis, Thun Pin, Ray Strode,
|
Sergio Costas, Florian Müllner, Thun Pin, Ray Strode
|
||||||
Jonas Ådahl
|
|
||||||
|
|
||||||
Translators:
|
|
||||||
Fabio Tomat [fur], Jordi Mas [ca]
|
|
||||||
|
|
||||||
3.38.1
|
3.38.1
|
||||||
======
|
======
|
||||||
|
|||||||
+1
-1
Submodule data/gnome-shell-sass updated: 710fc54a26...d82ed82871
@@ -103,6 +103,7 @@ class NaturalLayoutStrategy extends Workspace.LayoutStrategy {
|
|||||||
direction++;
|
direction++;
|
||||||
if (direction === 4)
|
if (direction === 4)
|
||||||
direction = 0;
|
direction = 0;
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
let loopCounter = 0;
|
let loopCounter = 0;
|
||||||
|
|||||||
@@ -486,6 +486,7 @@ var PlacesManager = class {
|
|||||||
}
|
}
|
||||||
|
|
||||||
_reloadBookmarks() {
|
_reloadBookmarks() {
|
||||||
|
|
||||||
this._bookmarks = [];
|
this._bookmarks = [];
|
||||||
|
|
||||||
let content = Shell.get_file_contents_utf8_sync(this._bookmarksFile.get_path());
|
let content = Shell.get_file_contents_utf8_sync(this._bookmarksFile.get_path());
|
||||||
|
|||||||
@@ -612,6 +612,7 @@ class AppButton extends BaseButton {
|
|||||||
this._contextMenuManager.addMenu(this._appContextMenu);
|
this._contextMenuManager.addMenu(this._appContextMenu);
|
||||||
this.label_actor = this._multiWindowTitle.label_actor;
|
this.label_actor = this._multiWindowTitle.label_actor;
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
||||||
_onClicked(actor, button) {
|
_onClicked(actor, button) {
|
||||||
|
|||||||
@@ -34,10 +34,4 @@ and will be picked automatically at next login.
|
|||||||
<gnome:userid>fmuellner</gnome:userid>
|
<gnome:userid>fmuellner</gnome:userid>
|
||||||
</foaf:Person>
|
</foaf:Person>
|
||||||
</maintainer>
|
</maintainer>
|
||||||
<maintainer>
|
|
||||||
<foaf:Person>
|
|
||||||
<foaf:name>Marge Bot</foaf:name>
|
|
||||||
<gnome:userid>marge-bot</gnome:userid>
|
|
||||||
</foaf:Person>
|
|
||||||
</maintainer>
|
|
||||||
</Project>
|
</Project>
|
||||||
|
|||||||
+6
-15
@@ -1,5 +1,4 @@
|
|||||||
---
|
---
|
||||||
# SPDX-License-Identifier: MIT OR LGPL-2.0-or-later
|
|
||||||
env:
|
env:
|
||||||
es6: true
|
es6: true
|
||||||
extends: 'eslint:recommended'
|
extends: 'eslint:recommended'
|
||||||
@@ -25,9 +24,7 @@ rules:
|
|||||||
# allow: [^vfunc_, ^on_, _instance_init]
|
# allow: [^vfunc_, ^on_, _instance_init]
|
||||||
comma-dangle:
|
comma-dangle:
|
||||||
- error
|
- error
|
||||||
- arrays: always-multiline
|
- always-multiline
|
||||||
objects: always-multiline
|
|
||||||
functions: never
|
|
||||||
comma-spacing:
|
comma-spacing:
|
||||||
- error
|
- error
|
||||||
- before: false
|
- before: false
|
||||||
@@ -90,7 +87,6 @@ rules:
|
|||||||
- error
|
- error
|
||||||
- all
|
- all
|
||||||
- conditionalAssign: false
|
- conditionalAssign: false
|
||||||
nestedBinaryExpressions: false
|
|
||||||
returnAssign: false
|
returnAssign: false
|
||||||
no-implicit-coercion:
|
no-implicit-coercion:
|
||||||
- error
|
- error
|
||||||
@@ -109,15 +105,15 @@ rules:
|
|||||||
no-prototype-builtins: 'off'
|
no-prototype-builtins: 'off'
|
||||||
no-restricted-properties:
|
no-restricted-properties:
|
||||||
- error
|
- error
|
||||||
- object: Lang
|
|
||||||
property: copyProperties
|
|
||||||
message: Use Object.assign()
|
|
||||||
- object: Lang
|
- object: Lang
|
||||||
property: bind
|
property: bind
|
||||||
message: Use arrow notation or Function.prototype.bind()
|
message: Use arrow notation or Function.prototype.bind()
|
||||||
- object: Lang
|
- object: Lang
|
||||||
property: Class
|
property: Class
|
||||||
message: Use ES6 classes
|
message: Use ES6 classes
|
||||||
|
- object: imports
|
||||||
|
property: mainloop
|
||||||
|
message: Use GLib main loops and timeouts
|
||||||
no-restricted-syntax:
|
no-restricted-syntax:
|
||||||
- error
|
- error
|
||||||
- selector: >-
|
- selector: >-
|
||||||
@@ -133,8 +129,6 @@ rules:
|
|||||||
BlockStatement[body.length=1]
|
BlockStatement[body.length=1]
|
||||||
CallExpression[arguments.length=0][callee.object.type="Super"][callee.property.name="_init"]
|
CallExpression[arguments.length=0][callee.object.type="Super"][callee.property.name="_init"]
|
||||||
message: _init() that only calls super._init() is unnecessary
|
message: _init() that only calls super._init() is unnecessary
|
||||||
- selector: BinaryExpression[operator="instanceof"][right.name="Array"]
|
|
||||||
message: Use Array.isArray()
|
|
||||||
no-return-assign: error
|
no-return-assign: error
|
||||||
no-return-await: error
|
no-return-await: error
|
||||||
no-self-compare: error
|
no-self-compare: error
|
||||||
@@ -171,9 +165,6 @@ rules:
|
|||||||
object-shorthand: error
|
object-shorthand: error
|
||||||
operator-assignment: error
|
operator-assignment: error
|
||||||
operator-linebreak: error
|
operator-linebreak: error
|
||||||
padded-blocks:
|
|
||||||
- error
|
|
||||||
- never
|
|
||||||
# These may be a bit controversial, we can try them out and enable them later
|
# These may be a bit controversial, we can try them out and enable them later
|
||||||
# prefer-const: error
|
# prefer-const: error
|
||||||
# prefer-destructuring: error
|
# prefer-destructuring: error
|
||||||
@@ -226,12 +217,12 @@ globals:
|
|||||||
ARGV: readonly
|
ARGV: readonly
|
||||||
Debugger: readonly
|
Debugger: readonly
|
||||||
GIRepositoryGType: readonly
|
GIRepositoryGType: readonly
|
||||||
globalThis: readonly
|
|
||||||
imports: readonly
|
imports: readonly
|
||||||
Intl: readonly
|
Intl: readonly
|
||||||
log: readonly
|
log: readonly
|
||||||
logError: readonly
|
logError: readonly
|
||||||
print: readonly
|
print: readonly
|
||||||
printerr: readonly
|
printerr: readonly
|
||||||
|
window: readonly
|
||||||
parserOptions:
|
parserOptions:
|
||||||
ecmaVersion: 2020
|
ecmaVersion: 2017
|
||||||
|
|||||||
+4
-4
@@ -1,5 +1,5 @@
|
|||||||
project('gnome-shell-extensions',
|
project('gnome-shell-extensions',
|
||||||
version: '40.alpha',
|
version: '3.38.2',
|
||||||
meson_version: '>= 0.44.0',
|
meson_version: '>= 0.44.0',
|
||||||
license: 'GPL2+'
|
license: 'GPL2+'
|
||||||
)
|
)
|
||||||
@@ -21,9 +21,9 @@ sessiondir = join_paths(datadir, 'gnome-session', 'sessions')
|
|||||||
xsessiondir = join_paths(datadir, 'xsessions')
|
xsessiondir = join_paths(datadir, 'xsessions')
|
||||||
|
|
||||||
ver_arr = meson.project_version().split('.')
|
ver_arr = meson.project_version().split('.')
|
||||||
if ver_arr[1].version_compare('>=0')
|
if ver_arr[1].to_int().is_even()
|
||||||
shell_version = ver_arr[0]
|
shell_version = '@0@.@1@'.format(ver_arr[0], ver_arr[1])
|
||||||
else # pre-release (alpha, beta, rc)
|
else
|
||||||
shell_version = '.'.join(ver_arr)
|
shell_version = '.'.join(ver_arr)
|
||||||
endif
|
endif
|
||||||
|
|
||||||
|
|||||||
@@ -83,7 +83,7 @@ msgid ""
|
|||||||
msgstr ""
|
msgstr ""
|
||||||
"Intenta utilitzar més espai de la pantalla per a posicionar les miniatures de "
|
"Intenta utilitzar més espai de la pantalla per a posicionar les miniatures de "
|
||||||
"les finestres adaptant-les a la ràtio d'aspecte de la pantalla, consolidant-"
|
"les finestres adaptant-les a la ràtio d'aspecte de la pantalla, consolidant-"
|
||||||
"les més per a reduir la caixa que les envolta. Aquest paràmetre de "
|
"les més per a reduir la capsa que les envolta. Aquest paràmetre de "
|
||||||
"configuració només s'aplica a l'estratègia de posicionament de finestres "
|
"configuració només s'aplica a l'estratègia de posicionament de finestres "
|
||||||
"natural."
|
"natural."
|
||||||
|
|
||||||
|
|||||||
@@ -8,23 +8,23 @@ msgstr ""
|
|||||||
"Project-Id-Version: gnome-shell-extensions master\n"
|
"Project-Id-Version: gnome-shell-extensions master\n"
|
||||||
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
|
"Report-Msgid-Bugs-To: https://gitlab.gnome.org/GNOME/gnome-shell-extensions/"
|
||||||
"issues\n"
|
"issues\n"
|
||||||
"POT-Creation-Date: 2020-10-08 21:24+0000\n"
|
"POT-Creation-Date: 2020-05-28 00:55+0000\n"
|
||||||
"PO-Revision-Date: 2020-10-17 22:14+0200\n"
|
"PO-Revision-Date: 2020-07-12 18:10+0200\n"
|
||||||
"Last-Translator: Fabio Tomat <f.t.public@gmail.com>\n"
|
"Last-Translator: Fabio Tomat <f.t.public@gmail.com>\n"
|
||||||
"Language-Team: Friulian <fur@li.org>\n"
|
"Language-Team: Friulian <fur@li.org>\n"
|
||||||
"Language: fur\n"
|
"Language: fur\n"
|
||||||
"MIME-Version: 1.0\n"
|
"MIME-Version: 1.0\n"
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
"Content-Type: text/plain; charset=UTF-8\n"
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"X-Generator: Poedit 2.4.1\n"
|
"X-Generator: Poedit 2.3.1\n"
|
||||||
|
|
||||||
#: data/gnome-classic.desktop.in:3
|
#: data/gnome-classic.desktop.in:3 data/gnome-classic.session.desktop.in:3
|
||||||
msgid "GNOME Classic"
|
msgid "GNOME Classic"
|
||||||
msgstr "GNOME Classic"
|
msgstr "GNOME Classic"
|
||||||
|
|
||||||
#: data/gnome-classic.desktop.in:4
|
#: data/gnome-classic.desktop.in:4
|
||||||
msgid "This session logs you into GNOME Classic"
|
msgid "This session logs you into GNOME Classic"
|
||||||
msgstr "Cheste session ti fâs jentrâ in GNOME Classic"
|
msgstr "Cheste session a si invie cun GNOME classic"
|
||||||
|
|
||||||
#: extensions/apps-menu/extension.js:113
|
#: extensions/apps-menu/extension.js:113
|
||||||
msgid "Favorites"
|
msgid "Favorites"
|
||||||
@@ -43,8 +43,8 @@ msgid ""
|
|||||||
"A list of strings, each containing an application id (desktop file name), "
|
"A list of strings, each containing an application id (desktop file name), "
|
||||||
"followed by a colon and the workspace number"
|
"followed by a colon and the workspace number"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Une liste di stringhis, ogniune e ten il ID di une aplicazion (non dal file ."
|
"Une liste di stringhis, ogniune a ten il ID di une aplicazion (non dal file ."
|
||||||
"desktop), cun daûr doi ponts e il numar dal spazi di lavôr"
|
"desktop), seguît di doi ponts e il numar dal spazi di lavôr"
|
||||||
|
|
||||||
#: extensions/auto-move-windows/prefs.js:35
|
#: extensions/auto-move-windows/prefs.js:35
|
||||||
msgid "Workspace Rules"
|
msgid "Workspace Rules"
|
||||||
@@ -63,15 +63,15 @@ msgstr "No si è rivâts a parâ fûr la unitât “%s”»:"
|
|||||||
|
|
||||||
#: extensions/drive-menu/extension.js:128
|
#: extensions/drive-menu/extension.js:128
|
||||||
msgid "Removable devices"
|
msgid "Removable devices"
|
||||||
msgstr "Dispositîfs estraibii"
|
msgstr "Argagn rimovibil"
|
||||||
|
|
||||||
#: extensions/drive-menu/extension.js:155
|
#: extensions/drive-menu/extension.js:155
|
||||||
msgid "Open Files"
|
msgid "Open Files"
|
||||||
msgstr "Vierç i files"
|
msgstr "Vierç i file"
|
||||||
|
|
||||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:5
|
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:5
|
||||||
msgid "Use more screen for windows"
|
msgid "Use more screen for windows"
|
||||||
msgstr "Dopre plui schermi pai barcons"
|
msgstr "Dopre plui spazi par i balcons"
|
||||||
|
|
||||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:6
|
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:6
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -79,14 +79,14 @@ msgid ""
|
|||||||
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
"aspect ratio, and consolidating them further to reduce the bounding box. "
|
||||||
"This setting applies only with the natural placement strategy."
|
"This setting applies only with the natural placement strategy."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Cîr di doprâ plui schermi par plaçâ lis miniaturis dai barcons, adatant il "
|
"Cîr di doprâ plui puest par plaçâ lis miniaturis dai balcons, adatânsi al "
|
||||||
"rapuart di aspiet dal visôr e consolidant ancjemo di plui lis miniaturis par "
|
"rapuart di aspiet dal visôr e consolidanlis ancjemo di plui par ridusi il "
|
||||||
"ridusi il spazi complessîf. Cheste impostazion si apliche dome se "
|
"spazi complessîf. Cheste impostazion a si apliche dome se l'algoritmo di "
|
||||||
"l'algoritmi di plaçament al è naturâl."
|
"posizionament al è \"natural\"."
|
||||||
|
|
||||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11
|
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:11
|
||||||
msgid "Place window captions on top"
|
msgid "Place window captions on top"
|
||||||
msgstr "Met il titul dal barcon parsore"
|
msgstr "Met il titul dal balcon insomp"
|
||||||
|
|
||||||
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12
|
#: extensions/native-window-placement/org.gnome.shell.extensions.native-window-placement.gschema.xml:12
|
||||||
msgid ""
|
msgid ""
|
||||||
@@ -94,9 +94,9 @@ msgid ""
|
|||||||
"shell default of placing it at the bottom. Changing this setting requires "
|
"shell default of placing it at the bottom. Changing this setting requires "
|
||||||
"restarting the shell to have any effect."
|
"restarting the shell to have any effect."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Se VÊR, al place i titui dai barcons denant des relativis miniaturis, "
|
"Se VÊR, al place i titui dai balcons insomp as relativis miniaturis, lant in "
|
||||||
"sorpassant il compuartament predefinît de shell, che lis place in bas. "
|
"volte al compuartament normâl de shell, che lis place in bas.Cambiant cheste "
|
||||||
"Cambiant cheste impostazion si scugne tornâ a inviâ la shell."
|
"impostazion a si scugne tornâ a inviâ la shell."
|
||||||
|
|
||||||
#: extensions/places-menu/extension.js:89
|
#: extensions/places-menu/extension.js:89
|
||||||
#: extensions/places-menu/extension.js:93
|
#: extensions/places-menu/extension.js:93
|
||||||
@@ -120,7 +120,7 @@ msgstr "Computer"
|
|||||||
|
|
||||||
#: extensions/places-menu/placeDisplay.js:359
|
#: extensions/places-menu/placeDisplay.js:359
|
||||||
msgid "Home"
|
msgid "Home"
|
||||||
msgstr "Home"
|
msgstr "Cjase"
|
||||||
|
|
||||||
#: extensions/places-menu/placeDisplay.js:404
|
#: extensions/places-menu/placeDisplay.js:404
|
||||||
msgid "Browse Network"
|
msgid "Browse Network"
|
||||||
@@ -128,11 +128,11 @@ msgstr "Esplore rêt"
|
|||||||
|
|
||||||
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:7
|
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:7
|
||||||
msgid "Cycle Screenshot Sizes"
|
msgid "Cycle Screenshot Sizes"
|
||||||
msgstr "Dimensions videadis catuardis ciclichis"
|
msgstr "Dimensions caturis di schermi ciclichis"
|
||||||
|
|
||||||
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:11
|
#: extensions/screenshot-window-sizer/org.gnome.shell.extensions.screenshot-window-sizer.gschema.xml:11
|
||||||
msgid "Cycle Screenshot Sizes Backward"
|
msgid "Cycle Screenshot Sizes Backward"
|
||||||
msgstr "Dimensions videadis caturadis ciclichis indaûr"
|
msgstr "Dimensions caturis di schermi ciclichis indaûr"
|
||||||
|
|
||||||
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5
|
#: extensions/user-theme/org.gnome.shell.extensions.user-theme.gschema.xml:5
|
||||||
msgid "Theme name"
|
msgid "Theme name"
|
||||||
@@ -184,19 +184,19 @@ msgstr "Siere ducj"
|
|||||||
|
|
||||||
#: extensions/window-list/extension.js:734
|
#: extensions/window-list/extension.js:734
|
||||||
msgid "Window List"
|
msgid "Window List"
|
||||||
msgstr "Liste barcons"
|
msgstr "Liste balcons"
|
||||||
|
|
||||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:12
|
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:12
|
||||||
msgid "When to group windows"
|
msgid "When to group windows"
|
||||||
msgstr "Cuant meti in grup i barcons"
|
msgstr "Quant ingrumâ i balcons"
|
||||||
|
|
||||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:13
|
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:13
|
||||||
msgid ""
|
msgid ""
|
||||||
"Decides when to group windows from the same application on the window list. "
|
"Decides when to group windows from the same application on the window list. "
|
||||||
"Possible values are “never”, “auto” and “always”."
|
"Possible values are “never”, “auto” and “always”."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Al decît cuant meti dongje i barcons de stesse aplicazion su la liste dai "
|
"Al decît cuant intropâ i balcons de stesse aplicazion su le liste dai "
|
||||||
"barcons. I valôrs pussibii a son “never”, “auto” e “always”."
|
"balcons. I pussibii valôrs a son “never”, “auto” e “always”."
|
||||||
|
|
||||||
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20
|
#: extensions/window-list/org.gnome.shell.extensions.window-list.gschema.xml:20
|
||||||
#: extensions/window-list/prefs.js:100
|
#: extensions/window-list/prefs.js:100
|
||||||
@@ -218,23 +218,23 @@ msgid ""
|
|||||||
"primary one."
|
"primary one."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Indiche se mostrâ la liste dai barcons su ducj i visôrs tacâts o nome sul "
|
"Indiche se mostrâ la liste dai barcons su ducj i visôrs tacâts o nome sul "
|
||||||
"chel principâl."
|
"principâl."
|
||||||
|
|
||||||
#: extensions/window-list/prefs.js:29
|
#: extensions/window-list/prefs.js:29
|
||||||
msgid "Window Grouping"
|
msgid "Window Grouping"
|
||||||
msgstr "Intropament di barcons"
|
msgstr "Ingrumament balcons"
|
||||||
|
|
||||||
#: extensions/window-list/prefs.js:58
|
#: extensions/window-list/prefs.js:58
|
||||||
msgid "Never group windows"
|
msgid "Never group windows"
|
||||||
msgstr "No sta meti mai in grup i barcons"
|
msgstr "No ingrumâ i balcons"
|
||||||
|
|
||||||
#: extensions/window-list/prefs.js:59
|
#: extensions/window-list/prefs.js:59
|
||||||
msgid "Group windows when space is limited"
|
msgid "Group windows when space is limited"
|
||||||
msgstr "Met dongje i barcons cuant che il spazi al è limitât"
|
msgstr "Ingrume i balcons quanche al'è pôc puest"
|
||||||
|
|
||||||
#: extensions/window-list/prefs.js:60
|
#: extensions/window-list/prefs.js:60
|
||||||
msgid "Always group windows"
|
msgid "Always group windows"
|
||||||
msgstr "Met simpri in grup i barcons"
|
msgstr "Ingrume simpri i balcons"
|
||||||
|
|
||||||
#: extensions/window-list/prefs.js:94
|
#: extensions/window-list/prefs.js:94
|
||||||
msgid "Show on all monitors"
|
msgid "Show on all monitors"
|
||||||
|
|||||||
Reference in New Issue
Block a user