Compare commits
38 commits
master
...
tracking/r
Author | SHA1 | Date | |
---|---|---|---|
652fda4ca6 | |||
10cd9c5311 | |||
85c3b600f6 | |||
25f822abd3 | |||
924d91e1e4 | |||
2f9728fb7e | |||
5f0ab0eedc | |||
7e398b3d76 | |||
d5824a76bc | |||
072662bd1b | |||
0c2353d5d9 | |||
1488651d02 | |||
b408085bcb | |||
34ccacf798 | |||
478e1bd9bb | |||
052d8a681f | |||
241d2e6934 | |||
8a2f655197 | |||
aa99c2f4e9 | |||
6761b8188b | |||
71d9bd6724 | |||
890239846e | |||
93e2536db2 | |||
0da5767319 | |||
ecc724dac9 | |||
9ebc8a51ed | |||
0a10eae61d | |||
a422807513 | |||
7f725c12b1 | |||
5d63a01440 | |||
b16e97f9b2 | |||
fc77ecf2ff | |||
cc48491bfc | |||
31c0c87ebf | |||
7bd59cb10c | |||
25fd5eb4ba | |||
14f29065e1 | |||
69a96783b1 |
|
@ -9,7 +9,6 @@ environment:
|
||||||
NIX_CONFIG: "experimental-features = nix-command flakes"
|
NIX_CONFIG: "experimental-features = nix-command flakes"
|
||||||
packages:
|
packages:
|
||||||
- nixos.cachix
|
- nixos.cachix
|
||||||
- nixos.jq
|
|
||||||
tasks:
|
tasks:
|
||||||
- setup: |
|
- setup: |
|
||||||
cachix use rycee
|
cachix use rycee
|
||||||
|
@ -27,7 +26,7 @@ tasks:
|
||||||
if [[ $gitBranch == master ]]; then
|
if [[ $gitBranch == master ]]; then
|
||||||
dirName="unstable"
|
dirName="unstable"
|
||||||
else
|
else
|
||||||
dirName="$(jq -r .release < release.json)"
|
dirName="$(cat .release)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
rsync --delete -r --info=stats \
|
rsync --delete -r --info=stats \
|
||||||
|
|
4
.github/PULL_REQUEST_TEMPLATE.md
vendored
4
.github/PULL_REQUEST_TEMPLATE.md
vendored
|
@ -15,7 +15,7 @@ pull-request.
|
||||||
|
|
||||||
Also make sure to read the guidelines found at
|
Also make sure to read the guidelines found at
|
||||||
|
|
||||||
https://nix-community.github.io/home-manager/#sec-guidelines
|
https://github.com/nix-community/home-manager/blob/master/docs/contributing.adoc#sec-guidelines
|
||||||
|
|
||||||
-->
|
-->
|
||||||
|
|
||||||
|
@ -35,7 +35,7 @@ Also make sure to read the guidelines found at
|
||||||
{long description}
|
{long description}
|
||||||
```
|
```
|
||||||
|
|
||||||
See [CONTRIBUTING](https://nix-community.github.io/home-manager/#sec-commit-style) for more information and [recent commit messages](https://github.com/nix-community/home-manager/commits/master) for examples.
|
See [CONTRIBUTING](https://github.com/nix-community/home-manager/blob/master/docs/contributing.adoc#sec-commit-style) for more information and [recent commit messages](https://github.com/nix-community/home-manager/commits/master) for examples.
|
||||||
|
|
||||||
- If this PR adds a new module
|
- If this PR adds a new module
|
||||||
|
|
||||||
|
|
4
.github/dependabot.yml
vendored
4
.github/dependabot.yml
vendored
|
@ -10,7 +10,7 @@ updates:
|
||||||
|
|
||||||
- package-ecosystem: "github-actions"
|
- package-ecosystem: "github-actions"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
target-branch: "release-23.11"
|
target-branch: "release-23.05"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
commit-message:
|
commit-message:
|
||||||
|
@ -18,7 +18,7 @@ updates:
|
||||||
|
|
||||||
- package-ecosystem: "github-actions"
|
- package-ecosystem: "github-actions"
|
||||||
directory: "/"
|
directory: "/"
|
||||||
target-branch: "release-24.05"
|
target-branch: "release-23.11"
|
||||||
schedule:
|
schedule:
|
||||||
interval: "weekly"
|
interval: "weekly"
|
||||||
commit-message:
|
commit-message:
|
||||||
|
|
10
.github/labeler.yml
vendored
10
.github/labeler.yml
vendored
|
@ -1,6 +1,4 @@
|
||||||
"mail":
|
"mail":
|
||||||
- changed-files:
|
|
||||||
- any-glob-to-any-file:
|
|
||||||
- modules/programs/aerc*.nix
|
- modules/programs/aerc*.nix
|
||||||
- modules/programs/alot*.nix
|
- modules/programs/alot*.nix
|
||||||
- tests/modules/programs/aerc/*
|
- tests/modules/programs/aerc/*
|
||||||
|
@ -20,27 +18,19 @@
|
||||||
- modules/services/imapnotify.nix
|
- modules/services/imapnotify.nix
|
||||||
|
|
||||||
"neovim":
|
"neovim":
|
||||||
- changed-files:
|
|
||||||
- any-glob-to-any-file:
|
|
||||||
- modules/programs/neovim.nix
|
- modules/programs/neovim.nix
|
||||||
- tests/modules/programs/neovim/**/*
|
- tests/modules/programs/neovim/**/*
|
||||||
|
|
||||||
"shell":
|
"shell":
|
||||||
- changed-files:
|
|
||||||
- any-glob-to-any-file:
|
|
||||||
- modules/lib/zsh.nix
|
- modules/lib/zsh.nix
|
||||||
- modules/programs/zsh*
|
- modules/programs/zsh*
|
||||||
- modules/programs/bash*
|
- modules/programs/bash*
|
||||||
- tests/modules/programs/zsh/**/*
|
- tests/modules/programs/zsh/**/*
|
||||||
|
|
||||||
"calendar":
|
"calendar":
|
||||||
- changed-files:
|
|
||||||
- any-glob-to-any-file:
|
|
||||||
- modules/programs/khal*
|
- modules/programs/khal*
|
||||||
- modules/*/vdirsyncer*
|
- modules/*/vdirsyncer*
|
||||||
- modules/accounts/calendar.nix
|
- modules/accounts/calendar.nix
|
||||||
|
|
||||||
"contacts":
|
"contacts":
|
||||||
- changed-files:
|
|
||||||
- any-glob-to-any-file:
|
|
||||||
- modules/accounts/contacts.nix
|
- modules/accounts/contacts.nix
|
||||||
|
|
6
.github/workflows/github_pages.yml
vendored
6
.github/workflows/github_pages.yml
vendored
|
@ -11,10 +11,10 @@ jobs:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: cachix/install-nix-action@v27
|
- uses: cachix/install-nix-action@v23
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
nix_path: nixpkgs=channel:nixos-unstable
|
||||||
- uses: cachix/cachix-action@v15
|
- uses: cachix/cachix-action@v13
|
||||||
with:
|
with:
|
||||||
name: nix-community
|
name: nix-community
|
||||||
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
|
@ -22,7 +22,7 @@ jobs:
|
||||||
nix-build -A docs.html
|
nix-build -A docs.html
|
||||||
cp -r result/share/doc/home-manager public
|
cp -r result/share/doc/home-manager public
|
||||||
- name: Deploy
|
- name: Deploy
|
||||||
uses: peaceiris/actions-gh-pages@v4
|
uses: peaceiris/actions-gh-pages@v3
|
||||||
with:
|
with:
|
||||||
github_token: ${{ secrets.GITHUB_TOKEN }}
|
github_token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
publish_dir: ./public
|
publish_dir: ./public
|
||||||
|
|
3
.github/workflows/labeler.yml
vendored
3
.github/workflows/labeler.yml
vendored
|
@ -17,7 +17,8 @@ jobs:
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.repository_owner == 'nix-community'
|
if: github.repository_owner == 'nix-community'
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/labeler@v5
|
- uses: actions/labeler@v4
|
||||||
with:
|
with:
|
||||||
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
repo-token: ${{ secrets.GITHUB_TOKEN }}
|
||||||
sync-labels: true
|
sync-labels: true
|
||||||
|
|
||||||
|
|
9
.github/workflows/test.yml
vendored
9
.github/workflows/test.yml
vendored
|
@ -12,9 +12,13 @@ jobs:
|
||||||
runs-on: ${{ matrix.os }}
|
runs-on: ${{ matrix.os }}
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v4
|
- uses: actions/checkout@v4
|
||||||
- uses: cachix/install-nix-action@v27
|
- uses: cachix/install-nix-action@v23
|
||||||
with:
|
with:
|
||||||
nix_path: nixpkgs=channel:nixos-unstable
|
nix_path: nixpkgs=channel:nixos-23.11
|
||||||
|
- uses: cachix/cachix-action@v13
|
||||||
|
with:
|
||||||
|
name: nix-community
|
||||||
|
authToken: '${{ secrets.CACHIX_AUTH_TOKEN }}'
|
||||||
- run: |
|
- run: |
|
||||||
if grep -R --exclude stdlib-extended.nix literalExample modules ; then
|
if grep -R --exclude stdlib-extended.nix literalExample modules ; then
|
||||||
echo "Error: literalExample should be replaced by literalExpression" > /dev/stderr
|
echo "Error: literalExample should be replaced by literalExpression" > /dev/stderr
|
||||||
|
@ -23,5 +27,4 @@ jobs:
|
||||||
- run: nix-build --show-trace -A docs.jsonModuleMaintainers
|
- run: nix-build --show-trace -A docs.jsonModuleMaintainers
|
||||||
- run: ./format -c
|
- run: ./format -c
|
||||||
- run: nix-shell --show-trace . -A install
|
- run: nix-shell --show-trace . -A install
|
||||||
- run: yes | home-manager -I home-manager=. uninstall
|
|
||||||
- run: nix-shell --show-trace --arg enableBig false --pure tests -A run.all
|
- run: nix-shell --show-trace --arg enableBig false --pure tests -A run.all
|
||||||
|
|
4
.github/workflows/update-flake.yml
vendored
4
.github/workflows/update-flake.yml
vendored
|
@ -12,9 +12,9 @@ jobs:
|
||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
- name: Install Nix
|
- name: Install Nix
|
||||||
uses: cachix/install-nix-action@v27
|
uses: cachix/install-nix-action@v23
|
||||||
- name: Update flake.lock
|
- name: Update flake.lock
|
||||||
uses: DeterminateSystems/update-flake-lock@v23
|
uses: DeterminateSystems/update-flake-lock@v20
|
||||||
with:
|
with:
|
||||||
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
token: ${{ secrets.GH_TOKEN_FOR_UPDATES }}
|
||||||
pr-labels: dependencies
|
pr-labels: dependencies
|
||||||
|
|
10
README.md
10
README.md
|
@ -17,7 +17,7 @@ For a systematic overview of Home Manager and its available options, please see:
|
||||||
- [Home Manager manual][manual]
|
- [Home Manager manual][manual]
|
||||||
- [Home Manager configuration options][configuration options]
|
- [Home Manager configuration options][configuration options]
|
||||||
- [3rd party Home Manager option
|
- [3rd party Home Manager option
|
||||||
search](https://home-manager-options.extranix.com/)
|
search](https://mipmip.github.io/home-manager-option-search/)
|
||||||
|
|
||||||
If you would like to contribute to Home Manager, then please have a look at
|
If you would like to contribute to Home Manager, then please have a look at
|
||||||
["Contributing" in the manual][contributing].
|
["Contributing" in the manual][contributing].
|
||||||
|
@ -28,7 +28,7 @@ Releases
|
||||||
Home Manager is developed against `nixpkgs-unstable` branch, which often causes
|
Home Manager is developed against `nixpkgs-unstable` branch, which often causes
|
||||||
it to contain tweaks for changes/packages not yet released in stable [NixOS][].
|
it to contain tweaks for changes/packages not yet released in stable [NixOS][].
|
||||||
To avoid breaking users' configurations, Home Manager is released in branches
|
To avoid breaking users' configurations, Home Manager is released in branches
|
||||||
corresponding to NixOS releases (e.g. `release-24.05`). These branches get
|
corresponding to NixOS releases (e.g. `release-23.11`). These branches get
|
||||||
fixes, but usually not new modules. If you need a module to be backported, then
|
fixes, but usually not new modules. If you need a module to be backported, then
|
||||||
feel free to open an issue.
|
feel free to open an issue.
|
||||||
|
|
||||||
|
@ -49,7 +49,7 @@ dconf store and cannot tell whether a configuration that it is about to be
|
||||||
overwritten was from a previous Home Manager generation or from manual
|
overwritten was from a previous Home Manager generation or from manual
|
||||||
configuration.
|
configuration.
|
||||||
|
|
||||||
Home Manager targets [NixOS][] unstable and NixOS version 24.05 (the current
|
Home Manager targets [NixOS][] unstable and NixOS version 23.11 (the current
|
||||||
stable version), it may or may not work on other Linux distributions and NixOS
|
stable version), it may or may not work on other Linux distributions and NixOS
|
||||||
versions.
|
versions.
|
||||||
|
|
||||||
|
@ -112,7 +112,7 @@ License
|
||||||
This project is licensed under the terms of the [MIT license](LICENSE).
|
This project is licensed under the terms of the [MIT license](LICENSE).
|
||||||
|
|
||||||
[#home-manager]: https://webchat.oftc.net/?channels=home-manager
|
[#home-manager]: https://webchat.oftc.net/?channels=home-manager
|
||||||
[Nix Flakes]: https://wiki.nixos.org/wiki/Flakes
|
[Nix Flakes]: https://nixos.wiki/wiki/Flakes
|
||||||
[NixOS]: https://nixos.org/
|
[NixOS]: https://nixos.org/
|
||||||
[Nix]: https://nixos.org/explore.html
|
[Nix]: https://nixos.org/explore.html
|
||||||
[Nixpkgs]: https://github.com/NixOS/nixpkgs
|
[Nixpkgs]: https://github.com/NixOS/nixpkgs
|
||||||
|
@ -125,4 +125,4 @@ This project is licensed under the terms of the [MIT license](LICENSE).
|
||||||
[manual standalone install]: https://nix-community.github.io/home-manager/#sec-install-standalone
|
[manual standalone install]: https://nix-community.github.io/home-manager/#sec-install-standalone
|
||||||
[manual]: https://nix-community.github.io/home-manager/
|
[manual]: https://nix-community.github.io/home-manager/
|
||||||
[nix-darwin]: https://github.com/LnL7/nix-darwin
|
[nix-darwin]: https://github.com/LnL7/nix-darwin
|
||||||
[rollbacks]: https://nix-community.github.io/home-manager/index.xhtml#sec-usage-rollbacks
|
[rollbacks]: https://nix-community.github.io/home-manager/#sec-usage-rollbacks
|
||||||
|
|
|
@ -7,37 +7,28 @@
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
# Recursively replace each derivation in the given attribute set
|
nmdSrc = fetchTarball {
|
||||||
# with the same derivation but with the `outPath` attribute set to
|
url = "https://git.sr.ht/~rycee/nmd/archive/v0.5.0.tar.gz";
|
||||||
# the string `"\${pkgs.attribute.path}"`. This allows the
|
sha256 = "0hnd86jd19zb5j3hmpwmdmdiasg65lgahqv7n8frl9p1vdqz6z67";
|
||||||
# documentation to refer to derivations through their values without
|
};
|
||||||
# establishing an actual dependency on the derivation output.
|
|
||||||
#
|
nmd = import nmdSrc {
|
||||||
# This is not perfect, but it seems to cover a vast majority of use
|
inherit lib;
|
||||||
# cases.
|
# The DocBook output of `nixos-render-docs` doesn't have the change
|
||||||
#
|
# `nmd` uses to work around the broken stylesheets in
|
||||||
# Caveat: even if the package is reached by a different means, the
|
# `docbook-xsl-ns`, so we restore the patched version here.
|
||||||
# path above will be shown and not e.g.
|
pkgs = pkgs // {
|
||||||
# `${config.services.foo.package}`.
|
docbook-xsl-ns =
|
||||||
scrubDerivations = prefixPath: attrs:
|
pkgs.docbook-xsl-ns.override { withManOptDedupPatch = true; };
|
||||||
let
|
};
|
||||||
scrubDerivation = name: value:
|
};
|
||||||
let pkgAttrName = prefixPath + "." + name;
|
|
||||||
in if lib.isAttrs value then
|
|
||||||
scrubDerivations pkgAttrName value
|
|
||||||
// lib.optionalAttrs (lib.isDerivation value) {
|
|
||||||
outPath = "\${${pkgAttrName}}";
|
|
||||||
}
|
|
||||||
else
|
|
||||||
value;
|
|
||||||
in lib.mapAttrs scrubDerivation attrs;
|
|
||||||
|
|
||||||
# Make sure the used package is scrubbed to avoid actually
|
# Make sure the used package is scrubbed to avoid actually
|
||||||
# instantiating derivations.
|
# instantiating derivations.
|
||||||
scrubbedPkgsModule = {
|
scrubbedPkgsModule = {
|
||||||
imports = [{
|
imports = [{
|
||||||
_module.args = {
|
_module.args = {
|
||||||
pkgs = lib.mkForce (scrubDerivations "pkgs" pkgs);
|
pkgs = lib.mkForce (nmd.scrubDerivations "pkgs" pkgs);
|
||||||
pkgs_i686 = lib.mkForce { };
|
pkgs_i686 = lib.mkForce { };
|
||||||
};
|
};
|
||||||
}];
|
}];
|
||||||
|
@ -55,11 +46,7 @@ let
|
||||||
hmPath = toString ./..;
|
hmPath = toString ./..;
|
||||||
|
|
||||||
buildOptionsDocs = args@{ modules, includeModuleSystemOptions ? true, ... }:
|
buildOptionsDocs = args@{ modules, includeModuleSystemOptions ? true, ... }:
|
||||||
let
|
let options = (lib.evalModules { inherit modules; }).options;
|
||||||
options = (lib.evalModules {
|
|
||||||
inherit modules;
|
|
||||||
class = "homeManager";
|
|
||||||
}).options;
|
|
||||||
in pkgs.buildPackages.nixosOptionsDoc ({
|
in pkgs.buildPackages.nixosOptionsDoc ({
|
||||||
options = if includeModuleSystemOptions then
|
options = if includeModuleSystemOptions then
|
||||||
options
|
options
|
||||||
|
@ -126,6 +113,7 @@ let
|
||||||
'';
|
'';
|
||||||
# Generate the HTML manual pages
|
# Generate the HTML manual pages
|
||||||
home-manager-manual = pkgs.callPackage ./home-manager-manual.nix {
|
home-manager-manual = pkgs.callPackage ./home-manager-manual.nix {
|
||||||
|
nmd = nmdSrc;
|
||||||
home-manager-options = {
|
home-manager-options = {
|
||||||
home-manager = hmOptionsDocs.optionsJSON;
|
home-manager = hmOptionsDocs.optionsJSON;
|
||||||
nixos = nixosOptionsDocs.optionsJSON;
|
nixos = nixosOptionsDocs.optionsJSON;
|
||||||
|
@ -136,6 +124,8 @@ let
|
||||||
html = home-manager-manual;
|
html = home-manager-manual;
|
||||||
htmlOpenTool = pkgs.callPackage ./html-open-tool.nix { } { inherit html; };
|
htmlOpenTool = pkgs.callPackage ./html-open-tool.nix { } { inherit html; };
|
||||||
in {
|
in {
|
||||||
|
inherit nmdSrc;
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
# TODO: Use `hmOptionsDocs.optionsJSON` directly once upstream
|
# TODO: Use `hmOptionsDocs.optionsJSON` directly once upstream
|
||||||
# `nixosOptionsDoc` is more customizable.
|
# `nixosOptionsDoc` is more customizable.
|
||||||
|
@ -164,7 +154,6 @@ in {
|
||||||
inherit lib pkgs;
|
inherit lib pkgs;
|
||||||
check = false;
|
check = false;
|
||||||
} ++ [ scrubbedPkgsModule ];
|
} ++ [ scrubbedPkgsModule ];
|
||||||
class = "homeManager";
|
|
||||||
};
|
};
|
||||||
in builtins.toJSON result.config.meta.maintainers);
|
in builtins.toJSON result.config.meta.maintainers);
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,45 +0,0 @@
|
||||||
{
|
|
||||||
"nodes": {
|
|
||||||
"nixpkgs": {
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1706683685,
|
|
||||||
"narHash": "sha256-FtPPshEpxH/ewBOsdKBNhlsL2MLEFv1hEnQ19f/bFsQ=",
|
|
||||||
"owner": "NixOS",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"rev": "5ad9903c16126a7d949101687af0aa589b1d7d3d",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "NixOS",
|
|
||||||
"ref": "nixpkgs-unstable",
|
|
||||||
"repo": "nixpkgs",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": {
|
|
||||||
"inputs": {
|
|
||||||
"nixpkgs": "nixpkgs",
|
|
||||||
"scss-reset": "scss-reset"
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"scss-reset": {
|
|
||||||
"flake": false,
|
|
||||||
"locked": {
|
|
||||||
"lastModified": 1683906868,
|
|
||||||
"narHash": "sha256-cif5Sx8Ca5vxdw/mNAgpulLH15TwmzyJFNM7JURpoaE=",
|
|
||||||
"owner": "andreymatin",
|
|
||||||
"repo": "scss-reset",
|
|
||||||
"rev": "5a7bd491ac82441e6283fb0d5d54644b913b30c7",
|
|
||||||
"type": "github"
|
|
||||||
},
|
|
||||||
"original": {
|
|
||||||
"owner": "andreymatin",
|
|
||||||
"ref": "1.4.2",
|
|
||||||
"repo": "scss-reset",
|
|
||||||
"type": "github"
|
|
||||||
}
|
|
||||||
}
|
|
||||||
},
|
|
||||||
"root": "root",
|
|
||||||
"version": 7
|
|
||||||
}
|
|
|
@ -1,54 +0,0 @@
|
||||||
{
|
|
||||||
description = "Support developing Home Manager documentation";
|
|
||||||
|
|
||||||
inputs = {
|
|
||||||
nixpkgs.url = "github:NixOS/nixpkgs/nixpkgs-unstable";
|
|
||||||
scss-reset = {
|
|
||||||
url = "github:andreymatin/scss-reset/1.4.2";
|
|
||||||
flake = false;
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
outputs = { self, nixpkgs, scss-reset }:
|
|
||||||
let
|
|
||||||
supportedSystems = [
|
|
||||||
"aarch64-darwin"
|
|
||||||
"aarch64-linux"
|
|
||||||
"i686-linux"
|
|
||||||
"x86_64-darwin"
|
|
||||||
"x86_64-linux"
|
|
||||||
];
|
|
||||||
|
|
||||||
lib = nixpkgs.lib;
|
|
||||||
|
|
||||||
forAllSystems = lib.genAttrs supportedSystems;
|
|
||||||
|
|
||||||
flakePkgs = pkgs: {
|
|
||||||
p-build = pkgs.writeShellScriptBin "p-build" ''
|
|
||||||
set -euo pipefail
|
|
||||||
|
|
||||||
export PATH=${lib.makeBinPath [ pkgs.coreutils pkgs.rsass ]}
|
|
||||||
|
|
||||||
tmpfile=$(mktemp -d)
|
|
||||||
trap "rm -r $tmpfile" EXIT
|
|
||||||
|
|
||||||
ln -s "${scss-reset}/build" "$tmpfile/scss-reset"
|
|
||||||
|
|
||||||
rsass --load-path="$tmpfile" --style compressed \
|
|
||||||
./static/style.scss > ./static/style.css
|
|
||||||
echo "Generated ./static/style.css"
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
in {
|
|
||||||
devShells = forAllSystems (system:
|
|
||||||
let
|
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
|
||||||
fpkgs = flakePkgs pkgs;
|
|
||||||
in {
|
|
||||||
default = pkgs.mkShell {
|
|
||||||
name = "hm-docs";
|
|
||||||
packages = [ fpkgs.p-build ];
|
|
||||||
};
|
|
||||||
});
|
|
||||||
};
|
|
||||||
}
|
|
8
docs/highlight-style.css
Normal file
8
docs/highlight-style.css
Normal file
|
@ -0,0 +1,8 @@
|
||||||
|
pre {
|
||||||
|
padding: 0;
|
||||||
|
}
|
||||||
|
|
||||||
|
pre code.hljs {
|
||||||
|
border: none;
|
||||||
|
margin: 0;
|
||||||
|
}
|
|
@ -1,4 +1,4 @@
|
||||||
{ stdenv, lib, documentation-highlighter, revision, home-manager-options
|
{ stdenv, lib, documentation-highlighter, nmd, revision, home-manager-options
|
||||||
, nixos-render-docs }:
|
, nixos-render-docs }:
|
||||||
let outputPath = "share/doc/home-manager";
|
let outputPath = "share/doc/home-manager";
|
||||||
in stdenv.mkDerivation {
|
in stdenv.mkDerivation {
|
||||||
|
@ -9,8 +9,9 @@ in stdenv.mkDerivation {
|
||||||
src = ./manual;
|
src = ./manual;
|
||||||
|
|
||||||
buildPhase = ''
|
buildPhase = ''
|
||||||
mkdir -p out/{highlightjs,media}
|
mkdir -p out/media
|
||||||
|
|
||||||
|
mkdir -p out/highlightjs
|
||||||
cp -t out/highlightjs \
|
cp -t out/highlightjs \
|
||||||
${documentation-highlighter}/highlight.pack.js \
|
${documentation-highlighter}/highlight.pack.js \
|
||||||
${documentation-highlighter}/LICENSE \
|
${documentation-highlighter}/LICENSE \
|
||||||
|
@ -18,23 +19,23 @@ in stdenv.mkDerivation {
|
||||||
${documentation-highlighter}/loader.js
|
${documentation-highlighter}/loader.js
|
||||||
|
|
||||||
substituteInPlace ./options.md \
|
substituteInPlace ./options.md \
|
||||||
--subst-var-by \
|
--replace \
|
||||||
OPTIONS_JSON \
|
'@OPTIONS_JSON@' \
|
||||||
${home-manager-options.home-manager}/share/doc/nixos/options.json
|
${home-manager-options.home-manager}/share/doc/nixos/options.json
|
||||||
|
|
||||||
substituteInPlace ./nixos-options.md \
|
substituteInPlace ./nixos-options.md \
|
||||||
--subst-var-by \
|
--replace \
|
||||||
OPTIONS_JSON \
|
'@OPTIONS_JSON@' \
|
||||||
${home-manager-options.nixos}/share/doc/nixos/options.json
|
${home-manager-options.nixos}/share/doc/nixos/options.json
|
||||||
|
|
||||||
substituteInPlace ./nix-darwin-options.md \
|
substituteInPlace ./nix-darwin-options.md \
|
||||||
--subst-var-by \
|
--replace \
|
||||||
OPTIONS_JSON \
|
'@OPTIONS_JSON@' \
|
||||||
${home-manager-options.nix-darwin}/share/doc/nixos/options.json
|
${home-manager-options.nix-darwin}/share/doc/nixos/options.json
|
||||||
|
|
||||||
cp ${./options.html} out/options.html
|
cp ${nmd}/static/style.css out/style.css
|
||||||
|
cp -t out/highlightjs ${nmd}/static/highlightjs/tomorrow-night.min.css
|
||||||
cp ${./static/style.css} out/style.css
|
cp ${./highlight-style.css} out/highlightjs/highlight-style.css
|
||||||
|
|
||||||
cp -r ${./release-notes} release-notes
|
cp -r ${./release-notes} release-notes
|
||||||
|
|
||||||
|
@ -42,6 +43,8 @@ in stdenv.mkDerivation {
|
||||||
--manpage-urls ./manpage-urls.json \
|
--manpage-urls ./manpage-urls.json \
|
||||||
--revision ${lib.trivial.revisionWithDefault revision} \
|
--revision ${lib.trivial.revisionWithDefault revision} \
|
||||||
--stylesheet style.css \
|
--stylesheet style.css \
|
||||||
|
--stylesheet highlightjs/tomorrow-night.min.css \
|
||||||
|
--stylesheet highlightjs/highlight-style.css \
|
||||||
--script highlightjs/highlight.pack.js \
|
--script highlightjs/highlight.pack.js \
|
||||||
--script highlightjs/loader.js \
|
--script highlightjs/loader.js \
|
||||||
--toc-depth 1 \
|
--toc-depth 1 \
|
||||||
|
|
|
@ -97,7 +97,7 @@ Instantiate the configuration and print the resulting derivation\&.
|
||||||
|
|
||||||
.It Cm edit
|
.It Cm edit
|
||||||
.RS 16
|
.RS 16
|
||||||
Open the home configuration using the editor indicated by \fBVISUAL\fR or \fBEDITOR\fR\&.
|
Open the home configuration using the editor indicated by \fBEDITOR\fR\&.
|
||||||
.RE
|
.RE
|
||||||
.Pp
|
.Pp
|
||||||
|
|
||||||
|
|
|
@ -69,10 +69,13 @@ All contributed code *must* pass the test suite.
|
||||||
|
|
||||||
## Add relevant documentation {#sec-guidelines-module-maintainer}
|
## Add relevant documentation {#sec-guidelines-module-maintainer}
|
||||||
|
|
||||||
Many code changes require changing the documentation as well. The
|
Many code changes require changing the documentation as well. Module
|
||||||
documentation is written in
|
options should be documented with [Nixpkgs-flavoured
|
||||||
[Nixpkgs-flavoured Markdown](https://nixos.org/manual/nixpkgs/unstable/#sec-contributing-markup).
|
Markdown](https://nixos.org/manual/nixpkgs/unstable/#sec-contributing-markup).
|
||||||
All text is hosted in Home Manager's Git repository.
|
Home Manager is itself documented using a combination of
|
||||||
|
[DocBook](https://tdg.docbook.org/) and
|
||||||
|
[AsciiDoc](https://asciidoc.org/). All text is hosted in Home Manager's
|
||||||
|
Git repository.
|
||||||
|
|
||||||
The HTML version of the manual containing both the module option
|
The HTML version of the manual containing both the module option
|
||||||
descriptions and the documentation of Home Manager can be generated and
|
descriptions and the documentation of Home Manager can be generated and
|
||||||
|
@ -102,9 +105,6 @@ If you are present in the nixpkgs maintainer list then you can use that
|
||||||
entry. If you are not then you can add yourself to
|
entry. If you are not then you can add yourself to
|
||||||
`modules/lib/maintainers.nix` in the Home Manager project.
|
`modules/lib/maintainers.nix` in the Home Manager project.
|
||||||
|
|
||||||
As a maintainer you are expected to respond to issues and
|
|
||||||
pull-requests associated with your module.
|
|
||||||
|
|
||||||
Maintainers are encouraged to join the IRC or Matrix channel and
|
Maintainers are encouraged to join the IRC or Matrix channel and
|
||||||
participate when they have opportunity.
|
participate when they have opportunity.
|
||||||
|
|
||||||
|
|
|
@ -6,5 +6,5 @@ faq/session-variables.md
|
||||||
faq/multiple-users-machines.md
|
faq/multiple-users-machines.md
|
||||||
faq/ca-desrt-dconf.md
|
faq/ca-desrt-dconf.md
|
||||||
faq/unstable.md
|
faq/unstable.md
|
||||||
faq/change-package-module.md
|
faq/override-package-module.md
|
||||||
```
|
```
|
||||||
|
|
|
@ -1,4 +1,4 @@
|
||||||
# How do I change the package used by a module? {#_how_do_i_change_the_package_used_by_a_module}
|
# How do I override the package used by a module? {#_how_do_i_override_the_package_used_by_a_module}
|
||||||
|
|
||||||
By default Home Manager will install the package provided by your chosen
|
By default Home Manager will install the package provided by your chosen
|
||||||
`nixpkgs` channel but occasionally you might end up needing to change
|
`nixpkgs` channel but occasionally you might end up needing to change
|
||||||
|
@ -6,35 +6,13 @@ this package. This can typically be done in two ways.
|
||||||
|
|
||||||
1. If the module provides a `package` option, such as
|
1. If the module provides a `package` option, such as
|
||||||
`programs.beets.package`, then this is the recommended way to
|
`programs.beets.package`, then this is the recommended way to
|
||||||
perform the change. For example,
|
perform the override. For example,
|
||||||
|
|
||||||
``` nix
|
``` nix
|
||||||
programs.beets.package = pkgs.beets.override { pluginOverrides = { beatport.enable = false; }; };
|
programs.beets.package = pkgs.beets.override { enableCheck = true; };
|
||||||
```
|
```
|
||||||
|
|
||||||
See [Nix pill 17](https://nixos.org/guides/nix-pills/nixpkgs-overriding-packages.html)
|
2. If no `package` option is available then you can typically override
|
||||||
for more information on package overrides. Alternatively, if you want
|
|
||||||
to use the `beets` package from Nixpkgs unstable, then a configuration like
|
|
||||||
|
|
||||||
``` nix
|
|
||||||
{ pkgs, config, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
pkgsUnstable = import <nixpkgs-unstable> {};
|
|
||||||
|
|
||||||
in
|
|
||||||
|
|
||||||
{
|
|
||||||
programs.beets.package = pkgsUnstable.beets;
|
|
||||||
|
|
||||||
# …
|
|
||||||
}
|
|
||||||
```
|
|
||||||
|
|
||||||
should work OK.
|
|
||||||
|
|
||||||
3. If no `package` option is available then you can typically change
|
|
||||||
the relevant package using an
|
the relevant package using an
|
||||||
[overlay](https://nixos.org/nixpkgs/manual/#chap-overlays).
|
[overlay](https://nixos.org/nixpkgs/manual/#chap-overlays).
|
||||||
|
|
|
@ -24,7 +24,7 @@ Home Manager can be used in three primary ways:
|
||||||
:::{.note}
|
:::{.note}
|
||||||
In this chapter we describe how to install Home Manager in the standard
|
In this chapter we describe how to install Home Manager in the standard
|
||||||
way using channels. If you prefer to use [Nix
|
way using channels. If you prefer to use [Nix
|
||||||
Flakes](https://wiki.nixos.org/wiki/Flakes) then please see the instructions
|
Flakes](https://nixos.wiki/wiki/Flakes) then please see the instructions
|
||||||
in [nix flakes](#ch-nix-flakes).
|
in [nix flakes](#ch-nix-flakes).
|
||||||
:::
|
:::
|
||||||
|
|
||||||
|
|
|
@ -15,10 +15,10 @@ $ nix-channel --add https://github.com/nix-community/home-manager/archive/master
|
||||||
$ nix-channel --update
|
$ nix-channel --update
|
||||||
```
|
```
|
||||||
|
|
||||||
and if you follow a Nixpkgs version 24.05 channel, you can run
|
and if you follow a Nixpkgs version 23.11 channel, you can run
|
||||||
|
|
||||||
``` shell
|
``` shell
|
||||||
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-24.05.tar.gz home-manager
|
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz home-manager
|
||||||
$ nix-channel --update
|
$ nix-channel --update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -45,7 +45,7 @@ home-manager.users.eve = { pkgs, ... }: {
|
||||||
|
|
||||||
# The state version is required and should stay at the version you
|
# The state version is required and should stay at the version you
|
||||||
# originally installed.
|
# originally installed.
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "23.11";
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -17,10 +17,10 @@ $ sudo nix-channel --add https://github.com/nix-community/home-manager/archive/m
|
||||||
$ sudo nix-channel --update
|
$ sudo nix-channel --update
|
||||||
```
|
```
|
||||||
|
|
||||||
and if you follow a Nixpkgs version 24.05 channel, you can run
|
and if you follow a Nixpkgs version 23.11 channel, you can run
|
||||||
|
|
||||||
``` shell
|
``` shell
|
||||||
$ sudo nix-channel --add https://github.com/nix-community/home-manager/archive/release-24.05.tar.gz home-manager
|
$ sudo nix-channel --add https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz home-manager
|
||||||
$ sudo nix-channel --update
|
$ sudo nix-channel --update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -44,7 +44,7 @@ home-manager.users.eve = { pkgs, ... }: {
|
||||||
|
|
||||||
# The state version is required and should stay at the version you
|
# The state version is required and should stay at the version you
|
||||||
# originally installed.
|
# originally installed.
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "23.11";
|
||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -19,10 +19,10 @@
|
||||||
$ nix-channel --update
|
$ nix-channel --update
|
||||||
```
|
```
|
||||||
|
|
||||||
and if you follow a Nixpkgs version 24.05 channel you can run
|
and if you follow a Nixpkgs version 23.11 channel you can run
|
||||||
|
|
||||||
``` shell
|
``` shell
|
||||||
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-24.05.tar.gz home-manager
|
$ nix-channel --add https://github.com/nix-community/home-manager/archive/release-23.11.tar.gz home-manager
|
||||||
$ nix-channel --update
|
$ nix-channel --update
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
|
@ -1,32 +0,0 @@
|
||||||
# Introduction to Home Manager {#ch-introduction}
|
|
||||||
|
|
||||||
Home Manager is a [Nix](https://nix.dev/)-powered tool for reproducible management of the contents of users' home directories.
|
|
||||||
This includes programs, configuration files, environment variables and, well… arbitrary files.
|
|
||||||
The following example snippet of Nix code:
|
|
||||||
|
|
||||||
```nix
|
|
||||||
programs.git = {
|
|
||||||
enable = true;
|
|
||||||
userEmail = "joe@example.org";
|
|
||||||
userName = "joe";
|
|
||||||
};
|
|
||||||
```
|
|
||||||
|
|
||||||
would make available to a user the `git` executable and man pages and a configuration file `~/.config/git/config`:
|
|
||||||
|
|
||||||
```ini
|
|
||||||
[user]
|
|
||||||
email = "joe@example.org"
|
|
||||||
name = "joe"
|
|
||||||
```
|
|
||||||
|
|
||||||
Since Home Manager is implemented in Nix, it provides several benefits:
|
|
||||||
|
|
||||||
- Contents are reproducible — a home will be the exact same every time it is built, unless of course, an intentional change is made.
|
|
||||||
This also means you can have the exact same home on different hosts.
|
|
||||||
- Significantly faster and more powerful than various backup strategies.
|
|
||||||
- Unlike "dotfiles" repositories, Home Manager supports specifying programs, as well as their configurations.
|
|
||||||
- Supported by <http://cache.nixos.org/>, so that you don't have to build from source.
|
|
||||||
- If you do want to build some programs from source, there is hardly a tool more useful than Nix for that, and the build instructions can be neatly integrated in your Home Manager usage.
|
|
||||||
- Infinitely composable, so that values in different configuration files and build instructions can share a source of truth.
|
|
||||||
- Connects you with the [most extensive](https://repology.org/repositories/statistics/total) and [most up-to-date](https://repology.org/repositories/statistics/newest) software package repository on earth, [Nixpkgs](https://github.com/NixOS/nixpkgs).
|
|
|
@ -1,6 +1,6 @@
|
||||||
# Home Manager Manual {#home-manager-manual}
|
# Home Manager Manual {#home-manager-manual}
|
||||||
|
|
||||||
## Version 24.05 (unstable)
|
## Version 23.11
|
||||||
|
|
||||||
|
|
||||||
```{=include=} preface
|
```{=include=} preface
|
||||||
|
@ -8,7 +8,6 @@ preface.md
|
||||||
```
|
```
|
||||||
|
|
||||||
```{=include=} parts
|
```{=include=} parts
|
||||||
introduction.md
|
|
||||||
installation.md
|
installation.md
|
||||||
usage.md
|
usage.md
|
||||||
nix-flakes.md
|
nix-flakes.md
|
||||||
|
|
|
@ -1,7 +1,7 @@
|
||||||
# Nix Flakes {#ch-nix-flakes}
|
# Nix Flakes {#ch-nix-flakes}
|
||||||
|
|
||||||
Home Manager is compatible with [Nix
|
Home Manager is compatible with [Nix
|
||||||
Flakes](https://wiki.nixos.org/wiki/Flakes). But please be aware that this
|
Flakes](https://nixos.wiki/wiki/Flakes). But please be aware that this
|
||||||
support is still experimental and may change in backwards
|
support is still experimental and may change in backwards
|
||||||
incompatible ways.
|
incompatible ways.
|
||||||
|
|
||||||
|
|
|
@ -11,10 +11,10 @@ then to generate and activate a basic configuration run the command
|
||||||
$ nix run home-manager/master -- init --switch
|
$ nix run home-manager/master -- init --switch
|
||||||
```
|
```
|
||||||
|
|
||||||
For Nixpkgs or NixOS version 24.05 run
|
For Nixpkgs or NixOS version 23.11 run
|
||||||
|
|
||||||
``` shell
|
``` shell
|
||||||
$ nix run home-manager/release-24.05 -- init --switch
|
$ nix run home-manager/release-23.11 -- init --switch
|
||||||
```
|
```
|
||||||
|
|
||||||
This will generate a `flake.nix` and a `home.nix` file in
|
This will generate a `flake.nix` and a `home.nix` file in
|
||||||
|
@ -30,7 +30,7 @@ $ # Edit files in ~/.config/home-manager
|
||||||
$ nix run home-manager/$branch -- init --switch
|
$ nix run home-manager/$branch -- init --switch
|
||||||
```
|
```
|
||||||
|
|
||||||
Where `$branch` is one of `master` or `release-24.05`.
|
Where `$branch` is one of `master` or `release-23.11`.
|
||||||
|
|
||||||
After the initial activation has completed successfully then building
|
After the initial activation has completed successfully then building
|
||||||
and activating your flake-based configuration is as simple as
|
and activating your flake-based configuration is as simple as
|
||||||
|
@ -58,5 +58,5 @@ If you only want to update a single flake input, then the command
|
||||||
You can also pass flake-related options such as `--recreate-lock-file`
|
You can also pass flake-related options such as `--recreate-lock-file`
|
||||||
or `--update-input <input>` to `home-manager` when building or
|
or `--update-input <input>` to `home-manager` when building or
|
||||||
switching, and these options will be forwarded to `nix build`. See the
|
switching, and these options will be forwarded to `nix build`. See the
|
||||||
[NixOS Wiki page](https://wiki.nixos.org/wiki/Flakes) for details.
|
[NixOS Wiki page](https://nixos.wiki/wiki/Flakes) for details.
|
||||||
:::
|
:::
|
||||||
|
|
|
@ -20,7 +20,7 @@ A fresh install of Home Manager will generate a minimal
|
||||||
# You can update Home Manager without changing this value. See
|
# You can update Home Manager without changing this value. See
|
||||||
# the Home Manager release notes for a list of state version
|
# the Home Manager release notes for a list of state version
|
||||||
# changes in each release.
|
# changes in each release.
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "23.11";
|
||||||
|
|
||||||
# Let Home Manager install and manage itself.
|
# Let Home Manager install and manage itself.
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
@ -65,7 +65,7 @@ follows:
|
||||||
# You can update Home Manager without changing this value. See
|
# You can update Home Manager without changing this value. See
|
||||||
# the Home Manager release notes for a list of state version
|
# the Home Manager release notes for a list of state version
|
||||||
# changes in each release.
|
# changes in each release.
|
||||||
home.stateVersion = "24.05";
|
home.stateVersion = "23.11";
|
||||||
|
|
||||||
# Let Home Manager install and manage itself.
|
# Let Home Manager install and manage itself.
|
||||||
programs.home-manager.enable = true;
|
programs.home-manager.enable = true;
|
||||||
|
|
|
@ -1,15 +0,0 @@
|
||||||
<!DOCTYPE html>
|
|
||||||
<html lang="en">
|
|
||||||
<head>
|
|
||||||
<title>Redirecting…</title>
|
|
||||||
<meta charset="utf-8">
|
|
||||||
<link rel="canonical" href="options.xhtml">
|
|
||||||
<noscript><meta http-equiv="refresh" content="0; url=options.xhtml"></noscript>
|
|
||||||
</head>
|
|
||||||
<body>
|
|
||||||
<h1>Redirecting…</h1>
|
|
||||||
<script>
|
|
||||||
window.location.href = "options.xhtml" + (window.location.search || "") + (window.location.hash || "");
|
|
||||||
</script>
|
|
||||||
</body>
|
|
||||||
</html>
|
|
|
@ -4,8 +4,6 @@ This section lists the release notes for stable versions of Home Manager
|
||||||
and the current unstable version.
|
and the current unstable version.
|
||||||
|
|
||||||
```{=include=} chapters
|
```{=include=} chapters
|
||||||
rl-2411.md
|
|
||||||
rl-2405.md
|
|
||||||
rl-2311.md
|
rl-2311.md
|
||||||
rl-2305.md
|
rl-2305.md
|
||||||
rl-2211.md
|
rl-2211.md
|
||||||
|
|
|
@ -1,91 +0,0 @@
|
||||||
# Release 24.05 {#sec-release-24.05}
|
|
||||||
|
|
||||||
The 24.05 release branch became stable in May, 2024.
|
|
||||||
|
|
||||||
## Highlights {#sec-release-24.05-highlights}
|
|
||||||
|
|
||||||
This release has the following notable changes:
|
|
||||||
|
|
||||||
- The `.release` file in the Home Manager project root has been
|
|
||||||
removed. Please use the `release.json` file instead.
|
|
||||||
|
|
||||||
- The {command}`home-manager uninstall` command has been reworked to,
|
|
||||||
hopefully, be more robust. The new implementation makes use of a new
|
|
||||||
Boolean configuration option [uninstall](#opt-uninstall) that can
|
|
||||||
also be used in a pure Nix Flake setup.
|
|
||||||
|
|
||||||
Specifically, if you are using a Flake only installation, then you
|
|
||||||
can clean up a Home Manager installation by adding
|
|
||||||
|
|
||||||
``` nix
|
|
||||||
uninstall = true;
|
|
||||||
```
|
|
||||||
|
|
||||||
to your existing configuration and then build and activate. This
|
|
||||||
will override any other configuration and cause, for example, the
|
|
||||||
removal of all managed files.
|
|
||||||
|
|
||||||
Please be very careful when enabling this option since activating
|
|
||||||
the built configuration will not only remove the managed files but
|
|
||||||
_all_ Home Manager state from your user environment. This includes
|
|
||||||
removing all your historic Home Manager generations!
|
|
||||||
|
|
||||||
- The use of `$DRY_RUN_CMD` and `$DRY_RUN_NULL` in activation script
|
|
||||||
blocks is now deprecated. Instead use the new shell function
|
|
||||||
{command}`run`. In most cases it is sufficient to replace
|
|
||||||
`$DRY_RUN_CMD` by {command}`run`. For example, if your configuration
|
|
||||||
currently contains
|
|
||||||
|
|
||||||
```nix
|
|
||||||
home.activation.reportChanges = config.lib.dag.entryAnywhere ''
|
|
||||||
if [[ -v oldGenPath ]]; then
|
|
||||||
$DRY_RUN_CMD nix store diff-closures $oldGenPath $newGenPath
|
|
||||||
fi
|
|
||||||
'';
|
|
||||||
```
|
|
||||||
|
|
||||||
then you are now encouraged to change to
|
|
||||||
|
|
||||||
```nix
|
|
||||||
home.activation.reportChanges = config.lib.dag.entryAnywhere ''
|
|
||||||
if [[ -v oldGenPath ]]; then
|
|
||||||
run nix store diff-closures $oldGenPath $newGenPath
|
|
||||||
fi
|
|
||||||
'';
|
|
||||||
```
|
|
||||||
|
|
||||||
See the description of [home.activation](#opt-home.activation) for
|
|
||||||
more. The deprecated variables will continue to work for now but
|
|
||||||
their use may in the future trigger a warning message and eventually
|
|
||||||
they may be removed entirely.
|
|
||||||
|
|
||||||
- Similarly, the use of `$VERBOSE_ECHO` in activation script blocks is
|
|
||||||
deprecated. Instead use the new shell function
|
|
||||||
{command}`verboseEcho`. That is,
|
|
||||||
|
|
||||||
```nix
|
|
||||||
home.activation.doThing = config.lib.dag.entryAnywhere ''
|
|
||||||
$VERBOSE_ECHO "Doing the thing"
|
|
||||||
''
|
|
||||||
```
|
|
||||||
|
|
||||||
should now be expressed
|
|
||||||
|
|
||||||
```nix
|
|
||||||
home.activation.doThing = config.lib.dag.entryAnywhere ''
|
|
||||||
verboseEcho "Doing the thing"
|
|
||||||
''
|
|
||||||
```
|
|
||||||
|
|
||||||
See the description of [home.activation](#opt-home.activation) for
|
|
||||||
more. The deprecated variable will continue to work for now but its
|
|
||||||
use may in the future trigger a warning message and eventually it
|
|
||||||
may be removed entirely.
|
|
||||||
|
|
||||||
## State Version Changes {#sec-release-24.05-state-version-changes}
|
|
||||||
|
|
||||||
The state version in this release includes the changes below. These
|
|
||||||
changes are only active if the `home.stateVersion` option is set to
|
|
||||||
\"24.05\" or later.
|
|
||||||
|
|
||||||
- There was no state version change in this release.
|
|
|
@ -1,18 +0,0 @@
|
||||||
# Release 24.11 {#sec-release-24.11}
|
|
||||||
|
|
||||||
This is the current unstable branch and the information in this section
|
|
||||||
is therefore not final.
|
|
||||||
|
|
||||||
## Highlights {#sec-release-24.11-highlights}
|
|
||||||
|
|
||||||
This release has the following notable changes:
|
|
||||||
|
|
||||||
- No changes.
|
|
||||||
|
|
||||||
## State Version Changes {#sec-release-24.11-state-version-changes}
|
|
||||||
|
|
||||||
The state version in this release includes the changes below. These
|
|
||||||
changes are only active if the `home.stateVersion` option is set to
|
|
||||||
\"24.11\" or later.
|
|
||||||
|
|
||||||
- No changes.
|
|
7
docs/static/style.css
vendored
7
docs/static/style.css
vendored
File diff suppressed because one or more lines are too long
310
docs/static/style.scss
vendored
310
docs/static/style.scss
vendored
|
@ -1,310 +0,0 @@
|
||||||
:root {
|
|
||||||
--nmd-color0: #0A3E68;
|
|
||||||
--nmd-color1: #268598;
|
|
||||||
--nmd-color2: #B8D09E;
|
|
||||||
--nmd-color3: #F6CF5E;
|
|
||||||
--nmd-color4: #EC733B;
|
|
||||||
|
|
||||||
--nmd-color-info: #167cb9;
|
|
||||||
--nmd-color-warn: #ff6700;
|
|
||||||
}
|
|
||||||
|
|
||||||
// Copied from Tailwind CSS.
|
|
||||||
$color-gray-50: #F9FAFB;
|
|
||||||
$color-gray-100: #F3F4F6;
|
|
||||||
$color-gray-200: #E5E7EB;
|
|
||||||
$color-gray-300: #D1D5DB;
|
|
||||||
$color-gray-400: #9CA3AF;
|
|
||||||
$color-gray-500: #6B7280;
|
|
||||||
$color-gray-600: #4B5563;
|
|
||||||
$color-gray-700: #374151;
|
|
||||||
$color-gray-800: #1F2937;
|
|
||||||
$color-gray-900: #111827;
|
|
||||||
|
|
||||||
$color-blue-50: #EFF6FF;
|
|
||||||
$color-blue-100: #DBEAFE;
|
|
||||||
$color-blue-200: #BFDBFE;
|
|
||||||
$color-blue-300: #93C5FD;
|
|
||||||
$color-blue-400: #60A5FA;
|
|
||||||
$color-blue-500: #3B82F6;
|
|
||||||
$color-blue-600: #2563EB;
|
|
||||||
$color-blue-700: #1D4ED8;
|
|
||||||
$color-blue-800: #1E40AF;
|
|
||||||
$color-blue-900: #1E3A8A;
|
|
||||||
|
|
||||||
|
|
||||||
@use 'scss-reset/reset';
|
|
||||||
|
|
||||||
@mixin boxed {
|
|
||||||
background: $color-gray-50;
|
|
||||||
margin: 2rem 16px;
|
|
||||||
padding: 10px;
|
|
||||||
border: 1px solid $color-gray-200;
|
|
||||||
border-radius: 4px;
|
|
||||||
box-shadow: 4px 4px 8px $color-gray-200;
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
background: $color-gray-800;
|
|
||||||
border-color: black;
|
|
||||||
box-shadow: 4px 4px 8px black;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
@mixin margined {
|
|
||||||
margin: 0.9rem 0;
|
|
||||||
|
|
||||||
&:first-child {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:last-child {
|
|
||||||
margin-bottom: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
body {
|
|
||||||
background: white;
|
|
||||||
color: $color-gray-900;
|
|
||||||
max-width: min(100ch, 1024px);
|
|
||||||
margin: 0 auto;
|
|
||||||
padding: 10px;
|
|
||||||
|
|
||||||
font-family: 'Lucida Sans', Arial, sans-serif;
|
|
||||||
font-size: 16px;
|
|
||||||
line-height: 1.4em;
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
background: $color-gray-900;
|
|
||||||
color: $color-gray-50;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
h1, h2, h3 {
|
|
||||||
color: var(--nmd-color0);
|
|
||||||
font-family: "Lato", sans-serif;
|
|
||||||
font-weight: 300;
|
|
||||||
line-height: 1.125;
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
color: var(--nmd-color4);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
h1 {
|
|
||||||
font-size: 48px;
|
|
||||||
font-weight: 300;
|
|
||||||
margin: 4rem 0 1.5rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
h2 {
|
|
||||||
font-size: 32px;
|
|
||||||
font-weight: 300;
|
|
||||||
margin: 2rem 0 1rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
h3 {
|
|
||||||
font-size: 20px;
|
|
||||||
font-weight: 400;
|
|
||||||
margin: 0.5rem 0.25rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
p {
|
|
||||||
@include margined;
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
color: var(--nmd-color0); //$color-secondary-1-3;
|
|
||||||
text-decoration: underline;
|
|
||||||
text-underline-offset: 3px;
|
|
||||||
|
|
||||||
&:visited {
|
|
||||||
color: var(--nmd-color1);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: var(--nmd-color1);
|
|
||||||
}
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
color: var(--nmd-color3);
|
|
||||||
|
|
||||||
&:visited {
|
|
||||||
color: var(--nmd-color2);
|
|
||||||
}
|
|
||||||
|
|
||||||
&:hover {
|
|
||||||
color: var(--nmd-color4);
|
|
||||||
}
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
code {
|
|
||||||
font-size: 90%;
|
|
||||||
}
|
|
||||||
|
|
||||||
span.command {
|
|
||||||
font-size: 90%;
|
|
||||||
font-family: monospace;
|
|
||||||
}
|
|
||||||
|
|
||||||
em {
|
|
||||||
font-style: italic;
|
|
||||||
}
|
|
||||||
|
|
||||||
strong {
|
|
||||||
font-weight: bold;
|
|
||||||
}
|
|
||||||
|
|
||||||
pre {
|
|
||||||
@include boxed;
|
|
||||||
|
|
||||||
font-size: 90%;
|
|
||||||
margin-bottom: 1.5rem;
|
|
||||||
padding: 6px;
|
|
||||||
overflow: auto;
|
|
||||||
|
|
||||||
// The callout markers should not be selectable.
|
|
||||||
span img {
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
pre:has(code) {
|
|
||||||
padding: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
td, th {
|
|
||||||
padding: 2px 5px;
|
|
||||||
|
|
||||||
&:first-child {
|
|
||||||
padding-left: 0;
|
|
||||||
}
|
|
||||||
|
|
||||||
&:last-child {
|
|
||||||
padding-right: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
dt {
|
|
||||||
margin: 1.2rem 0 0.8rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
dd {
|
|
||||||
margin-left: 2rem;
|
|
||||||
}
|
|
||||||
|
|
||||||
div.book {
|
|
||||||
|
|
||||||
}
|
|
||||||
|
|
||||||
ul {
|
|
||||||
@include margined;
|
|
||||||
|
|
||||||
padding-left: 30px;
|
|
||||||
list-style: disc;
|
|
||||||
}
|
|
||||||
|
|
||||||
ol {
|
|
||||||
@include margined;
|
|
||||||
|
|
||||||
padding-left: 30px;
|
|
||||||
list-style: decimal;
|
|
||||||
}
|
|
||||||
|
|
||||||
li {
|
|
||||||
@include margined;
|
|
||||||
|
|
||||||
padding-left: 5px;
|
|
||||||
}
|
|
||||||
|
|
||||||
.navheader, .navfooter {
|
|
||||||
hr {
|
|
||||||
margin: 1rem 0;
|
|
||||||
background: $color-gray-200;
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
background: $color-gray-600;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
div.titlepage {
|
|
||||||
margin: 40px 0;
|
|
||||||
|
|
||||||
hr {
|
|
||||||
display: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
div.toc {
|
|
||||||
@include boxed;
|
|
||||||
|
|
||||||
a {
|
|
||||||
text-decoration: none;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
div.note, div.warning {
|
|
||||||
@include boxed;
|
|
||||||
|
|
||||||
font-style: italic;
|
|
||||||
|
|
||||||
h3 {
|
|
||||||
float: right;
|
|
||||||
margin: 0 0 1rem 1rem;
|
|
||||||
width: 42px;
|
|
||||||
height: 42px;
|
|
||||||
content: url();
|
|
||||||
}
|
|
||||||
|
|
||||||
|
|
||||||
h3 + p {
|
|
||||||
margin-top: 0;
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
div.note {
|
|
||||||
h3 {
|
|
||||||
background-color: var(--nmd-color-info);
|
|
||||||
// From https://tabler-icons.io/i/info-square-rounded
|
|
||||||
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 24 24' stroke-width='2' stroke='black' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'%3E%3C/path%3E%3Cpath d='M12 8h.01'%3E%3C/path%3E%3Cpath d='M11 12h1v4h1'%3E%3C/path%3E%3Cpath d='M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z'%3E%3C/path%3E%3C/svg%3E");
|
|
||||||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 24 24' stroke-width='2' stroke='black' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'%3E%3C/path%3E%3Cpath d='M12 8h.01'%3E%3C/path%3E%3Cpath d='M11 12h1v4h1'%3E%3C/path%3E%3Cpath d='M12 3c7.2 0 9 1.8 9 9s-1.8 9 -9 9s-9 -1.8 -9 -9s1.8 -9 9 -9z'%3E%3C/path%3E%3C/svg%3E");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
div.warning {
|
|
||||||
h3 {
|
|
||||||
background-color: var(--nmd-color-warn);
|
|
||||||
// From https://tabler-icons.io/i/alert-triangle
|
|
||||||
mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 24 24' stroke-width='2' stroke='black' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'%3E%3C/path%3E%3Cpath d='M12 9v2m0 4v.01'%3E%3C/path%3E%3Cpath d='M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75'%3E%3C/path%3E%3C/svg%3E");
|
|
||||||
-webkit-mask-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='42' height='42' viewBox='0 0 24 24' stroke-width='2' stroke='black' fill='none' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath stroke='none' d='M0 0h24v24H0z' fill='none'%3E%3C/path%3E%3Cpath d='M12 9v2m0 4v.01'%3E%3C/path%3E%3Cpath d='M5 19h14a2 2 0 0 0 1.84 -2.75l-7.1 -12.25a2 2 0 0 0 -3.5 0l-7.1 12.25a2 2 0 0 0 1.75 2.75'%3E%3C/path%3E%3C/svg%3E");
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
.term {
|
|
||||||
font-weight: 300;
|
|
||||||
}
|
|
||||||
|
|
||||||
.docbook .xref img[src^=images\/callouts\/],
|
|
||||||
.screen img,
|
|
||||||
.programlisting img {
|
|
||||||
width: 1em;
|
|
||||||
}
|
|
||||||
|
|
||||||
.calloutlist img {
|
|
||||||
width: 1.3em;
|
|
||||||
}
|
|
||||||
|
|
||||||
/** The console prompt, e.g., `$` and `#` should not be selectable. */
|
|
||||||
.programlisting.language-shell .hljs-meta.prompt_ {
|
|
||||||
user-select: none;
|
|
||||||
}
|
|
||||||
|
|
||||||
@import 'tomorrow.min.css';
|
|
||||||
|
|
||||||
@media (prefers-color-scheme: dark) {
|
|
||||||
@import 'tomorrow-night.min.css';
|
|
||||||
}
|
|
7
docs/static/tomorrow-night.min.css
vendored
7
docs/static/tomorrow-night.min.css
vendored
|
@ -1,7 +0,0 @@
|
||||||
/*!
|
|
||||||
Theme: Tomorrow Night
|
|
||||||
Author: Chris Kempson (http://chriskempson.com)
|
|
||||||
License: ~ MIT (or more permissive) [via base16-schemes-source]
|
|
||||||
Maintainer: @highlightjs/core-team
|
|
||||||
Version: 2021.09.0
|
|
||||||
*/pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#ccc;background:#2d2d2d}.hljs ::selection,.hljs::selection{background-color:#515151;color:#ccc}.hljs-comment{color:#999}.hljs-tag{color:#b4b7b4}.hljs-operator,.hljs-punctuation,.hljs-subst{color:#ccc}.hljs-operator{opacity:.7}.hljs-bullet,.hljs-deletion,.hljs-name,.hljs-selector-tag,.hljs-template-variable,.hljs-variable{color:#f2777a}.hljs-attr,.hljs-link,.hljs-literal,.hljs-number,.hljs-symbol,.hljs-variable.constant_{color:#f99157}.hljs-class .hljs-title,.hljs-title,.hljs-title.class_{color:#fc6}.hljs-strong{font-weight:700;color:#fc6}.hljs-addition,.hljs-code,.hljs-string,.hljs-title.class_.inherited__{color:#9c9}.hljs-built_in,.hljs-doctag,.hljs-keyword.hljs-atrule,.hljs-quote,.hljs-regexp{color:#6cc}.hljs-attribute,.hljs-function .hljs-title,.hljs-section,.hljs-title.function_,.ruby .hljs-property{color:#69c}.diff .hljs-meta,.hljs-keyword,.hljs-template-tag,.hljs-type{color:#c9c}.hljs-emphasis{color:#c9c;font-style:italic}.hljs-meta,.hljs-meta .hljs-keyword,.hljs-meta .hljs-string{color:#a3685a}.hljs-meta .hljs-keyword,.hljs-meta-keyword{font-weight:700}
|
|
7
docs/static/tomorrow.min.css
vendored
7
docs/static/tomorrow.min.css
vendored
|
@ -1,7 +0,0 @@
|
||||||
/*!
|
|
||||||
Theme: Tomorrow
|
|
||||||
Author: Chris Kempson (http://chriskempson.com)
|
|
||||||
License: ~ MIT (or more permissive) [via base16-schemes-source]
|
|
||||||
Maintainer: @highlightjs/core-team
|
|
||||||
Version: 2021.09.0
|
|
||||||
*/pre code.hljs{display:block;overflow-x:auto;padding:1em}code.hljs{padding:3px 5px}.hljs{color:#4d4d4c;background:#fff}.hljs ::selection,.hljs::selection{background-color:#d6d6d6;color:#4d4d4c}.hljs-comment{color:#8e908c}.hljs-tag{color:#969896}.hljs-operator,.hljs-punctuation,.hljs-subst{color:#4d4d4c}.hljs-operator{opacity:.7}.hljs-bullet,.hljs-deletion,.hljs-name,.hljs-selector-tag,.hljs-template-variable,.hljs-variable{color:#c82829}.hljs-attr,.hljs-link,.hljs-literal,.hljs-number,.hljs-symbol,.hljs-variable.constant_{color:#f5871f}.hljs-class .hljs-title,.hljs-title,.hljs-title.class_{color:#eab700}.hljs-strong{font-weight:700;color:#eab700}.hljs-addition,.hljs-code,.hljs-string,.hljs-title.class_.inherited__{color:#718c00}.hljs-built_in,.hljs-doctag,.hljs-keyword.hljs-atrule,.hljs-quote,.hljs-regexp{color:#3e999f}.hljs-attribute,.hljs-function .hljs-title,.hljs-section,.hljs-title.function_,.ruby .hljs-property{color:#4271ae}.diff .hljs-meta,.hljs-keyword,.hljs-template-tag,.hljs-type{color:#8959a8}.hljs-emphasis{color:#8959a8;font-style:italic}.hljs-meta,.hljs-meta .hljs-keyword,.hljs-meta .hljs-string{color:#a3685a}.hljs-meta .hljs-keyword,.hljs-meta-keyword{font-weight:700}
|
|
|
@ -2,16 +2,16 @@
|
||||||
"nodes": {
|
"nodes": {
|
||||||
"nixpkgs": {
|
"nixpkgs": {
|
||||||
"locked": {
|
"locked": {
|
||||||
"lastModified": 1722185531,
|
"lastModified": 1705331948,
|
||||||
"narHash": "sha256-veKR07psFoJjINLC8RK4DiLniGGMgF3QMlS4tb74S6k=",
|
"narHash": "sha256-qjQXfvrAT1/RKDFAMdl8Hw3m4tLVvMCc8fMqzJv0pP4=",
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"rev": "52ec9ac3b12395ad677e8b62106f0b98c1f8569d",
|
"rev": "b8dd8be3c790215716e7c12b247f45ca525867e2",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
},
|
},
|
||||||
"original": {
|
"original": {
|
||||||
"owner": "NixOS",
|
"owner": "NixOS",
|
||||||
"ref": "nixos-unstable",
|
"ref": "nixos-23.11",
|
||||||
"repo": "nixpkgs",
|
"repo": "nixpkgs",
|
||||||
"type": "github"
|
"type": "github"
|
||||||
}
|
}
|
||||||
|
|
22
flake.nix
22
flake.nix
|
@ -1,7 +1,7 @@
|
||||||
{
|
{
|
||||||
description = "Home Manager for Nix";
|
description = "Home Manager for Nix";
|
||||||
|
|
||||||
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-unstable";
|
inputs.nixpkgs.url = "github:NixOS/nixpkgs/nixos-23.11";
|
||||||
|
|
||||||
outputs = { self, nixpkgs, ... }:
|
outputs = { self, nixpkgs, ... }:
|
||||||
{
|
{
|
||||||
|
@ -55,7 +55,7 @@
|
||||||
- 'system'
|
- 'system'
|
||||||
|
|
||||||
have been removed. Instead use the arguments 'pkgs' and
|
have been removed. Instead use the arguments 'pkgs' and
|
||||||
'modules'. See the 22.11 release notes for more: https://nix-community.github.io/home-manager/release-notes.xhtml#sec-release-22.11-highlights
|
'modules'. See the 22.11 release notes for more: https://nix-community.github.io/home-manager/release-notes.html#sec-release-22.11-highlights
|
||||||
'';
|
'';
|
||||||
|
|
||||||
throwForRemovedArgs = v:
|
throwForRemovedArgs = v:
|
||||||
|
@ -78,7 +78,8 @@
|
||||||
in throwForRemovedArgs (import ./modules {
|
in throwForRemovedArgs (import ./modules {
|
||||||
inherit pkgs lib check extraSpecialArgs;
|
inherit pkgs lib check extraSpecialArgs;
|
||||||
configuration = { ... }: {
|
configuration = { ... }: {
|
||||||
imports = modules ++ [{ programs.home-manager.path = "${./.}"; }];
|
imports = modules
|
||||||
|
++ [{ programs.home-manager.path = toString ./.; }];
|
||||||
nixpkgs = {
|
nixpkgs = {
|
||||||
config = nixpkgs.lib.mkDefault pkgs.config;
|
config = nixpkgs.lib.mkDefault pkgs.config;
|
||||||
inherit (pkgs) overlays;
|
inherit (pkgs) overlays;
|
||||||
|
@ -105,23 +106,12 @@
|
||||||
packages = forAllSystems (system:
|
packages = forAllSystems (system:
|
||||||
let
|
let
|
||||||
pkgs = nixpkgs.legacyPackages.${system};
|
pkgs = nixpkgs.legacyPackages.${system};
|
||||||
lib = pkgs.lib;
|
|
||||||
releaseInfo = nixpkgs.lib.importJSON ./release.json;
|
releaseInfo = nixpkgs.lib.importJSON ./release.json;
|
||||||
docs = import ./docs {
|
docs = import ./docs {
|
||||||
inherit pkgs;
|
inherit pkgs;
|
||||||
inherit (releaseInfo) release isReleaseBranch;
|
inherit (releaseInfo) release isReleaseBranch;
|
||||||
};
|
};
|
||||||
hmPkg = pkgs.callPackage ./home-manager { path = "${./.}"; };
|
hmPkg = pkgs.callPackage ./home-manager { path = toString ./.; };
|
||||||
|
|
||||||
testPackages = let
|
|
||||||
tests = import ./tests { inherit pkgs; };
|
|
||||||
renameTestPkg = n: lib.nameValuePair "test-${n}";
|
|
||||||
in lib.mapAttrs' renameTestPkg tests.build;
|
|
||||||
|
|
||||||
integrationTestPackages = let
|
|
||||||
tests = import ./tests/integration { inherit pkgs; };
|
|
||||||
renameTestPkg = n: lib.nameValuePair "integration-test-${n}";
|
|
||||||
in lib.mapAttrs' renameTestPkg tests;
|
|
||||||
in {
|
in {
|
||||||
default = hmPkg;
|
default = hmPkg;
|
||||||
home-manager = hmPkg;
|
home-manager = hmPkg;
|
||||||
|
@ -129,7 +119,7 @@
|
||||||
docs-html = docs.manual.html;
|
docs-html = docs.manual.html;
|
||||||
docs-json = docs.options.json;
|
docs-json = docs.options.json;
|
||||||
docs-manpages = docs.manPages;
|
docs-manpages = docs.manPages;
|
||||||
} // testPackages // integrationTestPackages);
|
});
|
||||||
|
|
||||||
defaultPackage = forAllSystems (system: self.packages.${system}.default);
|
defaultPackage = forAllSystems (system: self.packages.${system}.default);
|
||||||
});
|
});
|
||||||
|
|
6
format
6
format
|
@ -26,9 +26,15 @@ done
|
||||||
# The excludes are for files touched by open pull requests and we want
|
# The excludes are for files touched by open pull requests and we want
|
||||||
# to avoid merge conflicts.
|
# to avoid merge conflicts.
|
||||||
excludes=(
|
excludes=(
|
||||||
|
modules/default.nix
|
||||||
modules/files.nix
|
modules/files.nix
|
||||||
modules/home-environment.nix
|
modules/home-environment.nix
|
||||||
|
modules/lib/default.nix
|
||||||
|
modules/lib/file-type.nix
|
||||||
|
modules/misc/news.nix
|
||||||
|
modules/programs/ssh.nix
|
||||||
modules/programs/zsh.nix
|
modules/programs/zsh.nix
|
||||||
|
tests/default.nix
|
||||||
)
|
)
|
||||||
|
|
||||||
exclude_args=()
|
exclude_args=()
|
||||||
|
|
|
@ -11,28 +11,45 @@ export TEXTDOMAINDIR=@OUT@/share/locale
|
||||||
# shellcheck disable=1091
|
# shellcheck disable=1091
|
||||||
source @HOME_MANAGER_LIB@
|
source @HOME_MANAGER_LIB@
|
||||||
|
|
||||||
function errMissingOptArg() {
|
function nixProfileList() {
|
||||||
# translators: For example: "home-manager: missing argument for --cores"
|
# We attempt to use `--json` first (added in Nix 2.17). Otherwise attempt to
|
||||||
_iError "%s: missing argument for %s" "$0" "$1" >&2
|
# parse the legacy output format.
|
||||||
exit 1
|
{
|
||||||
|
nix profile list --json 2>/dev/null \
|
||||||
|
| jq -r --arg name "$1" '.elements[].storePaths[] | select(endswith($name))'
|
||||||
|
} || {
|
||||||
|
nix profile list \
|
||||||
|
| { grep "$1\$" || test $? = 1; } \
|
||||||
|
| cut -d ' ' -f 4
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function removeByName() {
|
||||||
|
nixProfileList "$1" | xargs -t $DRY_RUN_CMD nix profile remove $VERBOSE_ARG
|
||||||
}
|
}
|
||||||
|
|
||||||
function setNixProfileCommands() {
|
function setNixProfileCommands() {
|
||||||
if [[ -e $HOME/.nix-profile/manifest.json \
|
if [[ -e $HOME/.nix-profile/manifest.json ]] ; then
|
||||||
|| -e ${XDG_STATE_HOME:-$HOME/.local/state}/nix/profile/manifest.json ]] ; then
|
|
||||||
|
|
||||||
LIST_OUTPATH_CMD="nix profile list"
|
LIST_OUTPATH_CMD="nix profile list"
|
||||||
|
REMOVE_CMD="removeByName"
|
||||||
else
|
else
|
||||||
LIST_OUTPATH_CMD="nix-env -q --out-path"
|
LIST_OUTPATH_CMD="nix-env -q --out-path"
|
||||||
|
REMOVE_CMD="nix-env --uninstall"
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function setVerboseArg() {
|
function setVerboseAndDryRun() {
|
||||||
if [[ -v VERBOSE ]]; then
|
if [[ -v VERBOSE ]]; then
|
||||||
export VERBOSE_ARG="--verbose"
|
export VERBOSE_ARG="--verbose"
|
||||||
else
|
else
|
||||||
export VERBOSE_ARG=""
|
export VERBOSE_ARG=""
|
||||||
fi
|
fi
|
||||||
|
|
||||||
|
if [[ -v DRY_RUN ]] ; then
|
||||||
|
export DRY_RUN_CMD=echo
|
||||||
|
else
|
||||||
|
export DRY_RUN_CMD=""
|
||||||
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
function setWorkDir() {
|
function setWorkDir() {
|
||||||
|
@ -143,10 +160,6 @@ function setHomeManagerPathVariables() {
|
||||||
return
|
return
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_iVerbose "Sanity checking Nix"
|
|
||||||
nix-build --quiet --expr '{}' --no-out-link > /dev/null 2>&1 || true
|
|
||||||
nix-env -q > /dev/null 2>&1 || true
|
|
||||||
|
|
||||||
declare -r globalNixStateDir="${NIX_STATE_DIR:-/nix/var/nix}"
|
declare -r globalNixStateDir="${NIX_STATE_DIR:-/nix/var/nix}"
|
||||||
declare -r globalProfilesDir="$globalNixStateDir/profiles/per-user/$USER"
|
declare -r globalProfilesDir="$globalNixStateDir/profiles/per-user/$USER"
|
||||||
declare -r globalGcrootsDir="$globalNixStateDir/gcroots/per-user/$USER"
|
declare -r globalGcrootsDir="$globalNixStateDir/gcroots/per-user/$USER"
|
||||||
|
@ -164,7 +177,7 @@ function setHomeManagerPathVariables() {
|
||||||
declare -gr HM_PROFILE_DIR="$globalProfilesDir"
|
declare -gr HM_PROFILE_DIR="$globalProfilesDir"
|
||||||
else
|
else
|
||||||
_iError 'Could not find suitable profile directory, tried %s and %s' \
|
_iError 'Could not find suitable profile directory, tried %s and %s' \
|
||||||
"$userNixStateDir/profiles" "$globalProfilesDir" >&2
|
"$HM_STATE_DIR/profiles" "$globalProfilesDir" >&2
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
@ -198,19 +211,9 @@ function setFlakeAttribute() {
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
local name="$USER"
|
local name="$USER"
|
||||||
|
# Check both long and short hostnames; long first to preserve
|
||||||
local hostnameArray=()
|
|
||||||
# FQDN lookup can fail depending on the resolver.
|
|
||||||
local fqdn
|
|
||||||
fqdn="$(hostname -f 2> /dev/null)"
|
|
||||||
if [[ $? -eq 0 ]]; then
|
|
||||||
hostnameArray+=( "$USER@$fqdn" )
|
|
||||||
fi
|
|
||||||
# Check FQDN, long, and short hostnames; long first to preserve
|
|
||||||
# pre-existing behaviour in case both happen to be defined.
|
# pre-existing behaviour in case both happen to be defined.
|
||||||
hostnameArray+=( "$USER@$(hostname)" "$USER@$(hostname -s)" )
|
for n in "$USER@$(hostname)" "$USER@$(hostname -s)"; do
|
||||||
|
|
||||||
for n in "${hostnameArray[@]}"; do
|
|
||||||
if [[ "$(nix eval "$flake#homeConfigurations" --apply "x: x ? \"$n\"")" == "true" ]]; then
|
if [[ "$(nix eval "$flake#homeConfigurations" --apply "x: x ? \"$n\"")" == "true" ]]; then
|
||||||
name="$n"
|
name="$n"
|
||||||
if [[ -v VERBOSE ]]; then
|
if [[ -v VERBOSE ]]; then
|
||||||
|
@ -278,9 +281,6 @@ function doInit() {
|
||||||
withFlake=1
|
withFlake=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
local homeManagerUrl="github:nix-community/home-manager"
|
|
||||||
local nixpkgsUrl="github:nixos/nixpkgs/nixos-unstable"
|
|
||||||
|
|
||||||
while (( $# > 0 )); do
|
while (( $# > 0 )); do
|
||||||
local opt="$1"
|
local opt="$1"
|
||||||
shift
|
shift
|
||||||
|
@ -292,16 +292,6 @@ function doInit() {
|
||||||
--switch)
|
--switch)
|
||||||
switch=1
|
switch=1
|
||||||
;;
|
;;
|
||||||
--home-manager-url)
|
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
homeManagerUrl="$1"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
--nixpkgs-url)
|
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
nixpkgsUrl="$1"
|
|
||||||
shift
|
|
||||||
;;
|
|
||||||
-*)
|
-*)
|
||||||
_iError "%s: unknown option '%s'" "$0" "$opt" >&2
|
_iError "%s: unknown option '%s'" "$0" "$opt" >&2
|
||||||
exit 1
|
exit 1
|
||||||
|
@ -369,7 +359,7 @@ $xdgVars
|
||||||
# You should not change this value, even if you update Home Manager. If you do
|
# You should not change this value, even if you update Home Manager. If you do
|
||||||
# want to update the value, then make sure to first check the Home Manager
|
# want to update the value, then make sure to first check the Home Manager
|
||||||
# release notes.
|
# release notes.
|
||||||
home.stateVersion = "24.05"; # Please read the comment before changing.
|
home.stateVersion = "23.11"; # Please read the comment before changing.
|
||||||
|
|
||||||
# The home.packages option allows you to install Nix packages into your
|
# The home.packages option allows you to install Nix packages into your
|
||||||
# environment.
|
# environment.
|
||||||
|
@ -408,19 +398,14 @@ $xdgVars
|
||||||
};
|
};
|
||||||
|
|
||||||
# Home Manager can also manage your environment variables through
|
# Home Manager can also manage your environment variables through
|
||||||
# 'home.sessionVariables'. These will be explicitly sourced when using a
|
# 'home.sessionVariables'. If you don't want to manage your shell through Home
|
||||||
# shell provided by Home Manager. If you don't want to manage your shell
|
# Manager then you have to manually source 'hm-session-vars.sh' located at
|
||||||
# through Home Manager then you have to manually source 'hm-session-vars.sh'
|
# either
|
||||||
# located at either
|
|
||||||
#
|
#
|
||||||
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
|
# ~/.nix-profile/etc/profile.d/hm-session-vars.sh
|
||||||
#
|
#
|
||||||
# or
|
# or
|
||||||
#
|
#
|
||||||
# ~/.local/state/nix/profiles/profile/etc/profile.d/hm-session-vars.sh
|
|
||||||
#
|
|
||||||
# or
|
|
||||||
#
|
|
||||||
# /etc/profiles/per-user/$USER/etc/profile.d/hm-session-vars.sh
|
# /etc/profiles/per-user/$USER/etc/profile.d/hm-session-vars.sh
|
||||||
#
|
#
|
||||||
home.sessionVariables = {
|
home.sessionVariables = {
|
||||||
|
@ -453,9 +438,9 @@ EOF
|
||||||
|
|
||||||
inputs = {
|
inputs = {
|
||||||
# Specify the source of Home Manager and Nixpkgs.
|
# Specify the source of Home Manager and Nixpkgs.
|
||||||
nixpkgs.url = "$nixpkgsUrl";
|
nixpkgs.url = "github:nixos/nixpkgs/nixos-unstable";
|
||||||
home-manager = {
|
home-manager = {
|
||||||
url = "$homeManagerUrl";
|
url = "github:nix-community/home-manager";
|
||||||
inputs.nixpkgs.follows = "nixpkgs";
|
inputs.nixpkgs.follows = "nixpkgs";
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -599,15 +584,11 @@ function presentNews() {
|
||||||
}
|
}
|
||||||
|
|
||||||
function doEdit() {
|
function doEdit() {
|
||||||
if [[ ! -v VISUAL || -z $VISUAL ]]; then
|
|
||||||
if [[ ! -v EDITOR || -z $EDITOR ]]; then
|
if [[ ! -v EDITOR || -z $EDITOR ]]; then
|
||||||
# shellcheck disable=2016
|
# shellcheck disable=2016
|
||||||
_i 'Please set the $EDITOR or $VISUAL environment variable' >&2
|
_i 'Please set the $EDITOR environment variable' >&2
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
else
|
|
||||||
EDITOR=$VISUAL
|
|
||||||
fi
|
|
||||||
|
|
||||||
setConfigFile
|
setConfigFile
|
||||||
|
|
||||||
|
@ -693,7 +674,7 @@ function doListGens() {
|
||||||
# generations to remove.
|
# generations to remove.
|
||||||
function doRmGenerations() {
|
function doRmGenerations() {
|
||||||
setHomeManagerPathVariables
|
setHomeManagerPathVariables
|
||||||
setVerboseArg
|
setVerboseAndDryRun
|
||||||
|
|
||||||
pushd "$HM_PROFILE_DIR" > /dev/null
|
pushd "$HM_PROFILE_DIR" > /dev/null
|
||||||
|
|
||||||
|
@ -706,7 +687,7 @@ function doRmGenerations() {
|
||||||
_i 'Cannot remove the current generation %s' "$generationId" >&2
|
_i 'Cannot remove the current generation %s' "$generationId" >&2
|
||||||
else
|
else
|
||||||
_i 'Removing generation %s' "$generationId"
|
_i 'Removing generation %s' "$generationId"
|
||||||
run rm $VERBOSE_ARG $linkName
|
$DRY_RUN_CMD rm $VERBOSE_ARG $linkName
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
||||||
|
@ -735,7 +716,7 @@ function doListPackages() {
|
||||||
local outPath
|
local outPath
|
||||||
outPath="$($LIST_OUTPATH_CMD | grep -o '/.*home-manager-path$')"
|
outPath="$($LIST_OUTPATH_CMD | grep -o '/.*home-manager-path$')"
|
||||||
if [[ -n "$outPath" ]] ; then
|
if [[ -n "$outPath" ]] ; then
|
||||||
nix-store -q --references "$outPath" | sed 's/[^-]*-//' | sort --ignore-case
|
nix-store -q --references "$outPath" | sed 's/[^-]*-//'
|
||||||
else
|
else
|
||||||
_i 'No home-manager packages seem to be installed.' >&2
|
_i 'No home-manager packages seem to be installed.' >&2
|
||||||
fi
|
fi
|
||||||
|
@ -752,11 +733,7 @@ function newsReadIdsFile() {
|
||||||
touch "$path"
|
touch "$path"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
# Remove duplicate slashes in case $HOME or $XDG_DATA_HOME have a trailing
|
echo "$path"
|
||||||
# slash. Double slashes causes Nix to error out with
|
|
||||||
#
|
|
||||||
# error: syntax error, unexpected PATH_END, expecting DOLLAR_CURLY".
|
|
||||||
echo "$path" | tr -s /
|
|
||||||
}
|
}
|
||||||
|
|
||||||
# Builds the Home Manager news data file.
|
# Builds the Home Manager news data file.
|
||||||
|
@ -791,7 +768,7 @@ function buildNews() {
|
||||||
done
|
done
|
||||||
|
|
||||||
local readIdsFile
|
local readIdsFile
|
||||||
readIdsFile="$(newsReadIdsFile)"
|
readIdsFile=$(newsReadIdsFile)
|
||||||
|
|
||||||
nix-instantiate \
|
nix-instantiate \
|
||||||
--no-build-output --strict \
|
--no-build-output --strict \
|
||||||
|
@ -810,7 +787,7 @@ function doShowNews() {
|
||||||
buildNews "$newsNixFile"
|
buildNews "$newsNixFile"
|
||||||
|
|
||||||
local readIdsFile
|
local readIdsFile
|
||||||
readIdsFile="$(newsReadIdsFile)"
|
readIdsFile=$(newsReadIdsFile)
|
||||||
|
|
||||||
local news
|
local news
|
||||||
|
|
||||||
|
@ -845,6 +822,7 @@ function doShowNews() {
|
||||||
|
|
||||||
function doUninstall() {
|
function doUninstall() {
|
||||||
setHomeManagerPathVariables
|
setHomeManagerPathVariables
|
||||||
|
setVerboseAndDryRun
|
||||||
setNixProfileCommands
|
setNixProfileCommands
|
||||||
|
|
||||||
_i 'This will remove Home Manager from your system.'
|
_i 'This will remove Home Manager from your system.'
|
||||||
|
@ -862,17 +840,30 @@ function doUninstall() {
|
||||||
y|Y)
|
y|Y)
|
||||||
_i "Switching to empty Home Manager configuration..."
|
_i "Switching to empty Home Manager configuration..."
|
||||||
HOME_MANAGER_CONFIG="$(mktemp --tmpdir home-manager.XXXXXXXXXX)"
|
HOME_MANAGER_CONFIG="$(mktemp --tmpdir home-manager.XXXXXXXXXX)"
|
||||||
cat > "$HOME_MANAGER_CONFIG" <<EOF
|
echo "{ lib, ... }: {" > "$HOME_MANAGER_CONFIG"
|
||||||
{
|
echo " home.file = lib.mkForce {};" >> "$HOME_MANAGER_CONFIG"
|
||||||
uninstall = true;
|
echo " home.stateVersion = \"18.09\";" >> "$HOME_MANAGER_CONFIG"
|
||||||
home.username = "$USER";
|
echo " manual.manpages.enable = false;" >> "$HOME_MANAGER_CONFIG"
|
||||||
home.homeDirectory = "$HOME";
|
echo "}" >> "$HOME_MANAGER_CONFIG"
|
||||||
home.stateVersion = "24.05";
|
doSwitch
|
||||||
}
|
$DRY_RUN_CMD $REMOVE_CMD home-manager-path || true
|
||||||
EOF
|
rm "$HOME_MANAGER_CONFIG"
|
||||||
# shellcheck disable=2064
|
|
||||||
trap "rm '$HOME_MANAGER_CONFIG'" EXIT
|
if [[ -e $HM_DATA_HOME ]]; then
|
||||||
doSwitch --switch
|
$DRY_RUN_CMD rm $VERBOSE_ARG -r "$HM_DATA_HOME"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -e $HM_STATE_DIR ]]; then
|
||||||
|
$DRY_RUN_CMD rm $VERBOSE_ARG -r "$HM_STATE_DIR"
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -e $HM_PROFILE_DIR ]]; then
|
||||||
|
$DRY_RUN_CMD rm $VERBOSE_ARG "$HM_PROFILE_DIR/home-manager"*
|
||||||
|
fi
|
||||||
|
|
||||||
|
if [[ -e $HM_GCROOT_LEGACY_PATH ]]; then
|
||||||
|
$DRY_RUN_CMD rm $VERBOSE_ARG "$HM_GCROOT_LEGACY_PATH"
|
||||||
|
fi
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
_i "Yay!"
|
_i "Yay!"
|
||||||
|
@ -923,7 +914,7 @@ function doHelp() {
|
||||||
echo
|
echo
|
||||||
echo " help Print this help"
|
echo " help Print this help"
|
||||||
echo
|
echo
|
||||||
echo " edit Open the home configuration in \$VISUAL or \$EDITOR"
|
echo " edit Open the home configuration in \$EDITOR"
|
||||||
echo
|
echo
|
||||||
echo " option OPTION.NAME"
|
echo " option OPTION.NAME"
|
||||||
echo " Inspect configuration option named OPTION.NAME."
|
echo " Inspect configuration option named OPTION.NAME."
|
||||||
|
@ -974,27 +965,22 @@ while [[ $# -gt 0 ]]; do
|
||||||
COMMAND="$opt"
|
COMMAND="$opt"
|
||||||
;;
|
;;
|
||||||
-A)
|
-A)
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
HOME_MANAGER_CONFIG_ATTRIBUTE="$1"
|
HOME_MANAGER_CONFIG_ATTRIBUTE="$1"
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
-I)
|
-I)
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
EXTRA_NIX_PATH+=("$1")
|
EXTRA_NIX_PATH+=("$1")
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
-b)
|
-b)
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
export HOME_MANAGER_BACKUP_EXT="$1"
|
export HOME_MANAGER_BACKUP_EXT="$1"
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
-f|--file)
|
-f|--file)
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
HOME_MANAGER_CONFIG="$1"
|
HOME_MANAGER_CONFIG="$1"
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
--flake)
|
--flake)
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
FLAKE_ARG="$1"
|
FLAKE_ARG="$1"
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
@ -1002,23 +988,18 @@ while [[ $# -gt 0 ]]; do
|
||||||
PASSTHROUGH_OPTS+=("$opt")
|
PASSTHROUGH_OPTS+=("$opt")
|
||||||
;;
|
;;
|
||||||
--update-input)
|
--update-input)
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
PASSTHROUGH_OPTS+=("$opt" "$1")
|
PASSTHROUGH_OPTS+=("$opt" "$1")
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
--override-input)
|
--override-input)
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
[[ -v 2 && $2 != -* ]] || errMissingOptArg "$opt $1"
|
|
||||||
PASSTHROUGH_OPTS+=("$opt" "$1" "$2")
|
PASSTHROUGH_OPTS+=("$opt" "$1" "$2")
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
--experimental-features)
|
--experimental-features)
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
PASSTHROUGH_OPTS+=("$opt" "$1")
|
PASSTHROUGH_OPTS+=("$opt" "$1")
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
--extra-experimental-features)
|
--extra-experimental-features)
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
PASSTHROUGH_OPTS+=("$opt" "$1")
|
PASSTHROUGH_OPTS+=("$opt" "$1")
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
@ -1036,13 +1017,10 @@ while [[ $# -gt 0 ]]; do
|
||||||
export DRY_RUN=1
|
export DRY_RUN=1
|
||||||
;;
|
;;
|
||||||
--option|--arg|--argstr)
|
--option|--arg|--argstr)
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
[[ -v 2 ]] || errMissingOptArg "$opt $1"
|
|
||||||
PASSTHROUGH_OPTS+=("$opt" "$1" "$2")
|
PASSTHROUGH_OPTS+=("$opt" "$1" "$2")
|
||||||
shift 2
|
shift 2
|
||||||
;;
|
;;
|
||||||
-j|--max-jobs|--cores|--builders)
|
-j|--max-jobs|--cores|--builders)
|
||||||
[[ -v 1 && $1 != -* ]] || errMissingOptArg "$opt"
|
|
||||||
PASSTHROUGH_OPTS+=("$opt" "$1")
|
PASSTHROUGH_OPTS+=("$opt" "$1")
|
||||||
shift
|
shift
|
||||||
;;
|
;;
|
||||||
|
@ -1054,7 +1032,7 @@ while [[ $# -gt 0 ]]; do
|
||||||
export VERBOSE=1
|
export VERBOSE=1
|
||||||
;;
|
;;
|
||||||
--version)
|
--version)
|
||||||
echo 24.11-pre
|
echo 23.11-pre
|
||||||
exit 0
|
exit 0
|
||||||
;;
|
;;
|
||||||
*)
|
*)
|
||||||
|
|
|
@ -1,217 +0,0 @@
|
||||||
# SOME DESCRIPTIVE TITLE.
|
|
||||||
# Copyright (C) YEAR Home Manager contributors
|
|
||||||
# This file is distributed under the same license as the Home Manager package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Home Manager\n"
|
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
|
||||||
"Last-Translator: Automatically generated\n"
|
|
||||||
"Language-Team: none\n"
|
|
||||||
"Language: ar\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=6; plural=n==0 ? 0 : n==1 ? 1 : n==2 ? 2 : n%100>=3 "
|
|
||||||
"&& n%100<=10 ? 3 : n%100>=11 ? 4 : 5;\n"
|
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
|
||||||
#. 'home.nix' or 'flake.nix'.
|
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
|
||||||
#: home-manager/home-manager:184
|
|
||||||
msgid ""
|
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
|
||||||
"please move it to %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
|
||||||
msgid "No configuration file found. Please create one at %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
|
||||||
msgid "Home Manager not found at %s."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
|
||||||
#: home-manager/home-manager:115
|
|
||||||
msgid ""
|
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
|
||||||
"was found there."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
|
||||||
#: home-manager/home-manager:118
|
|
||||||
msgid ""
|
|
||||||
"To remove this warning, do one of the following.\n"
|
|
||||||
"\n"
|
|
||||||
"1. Explicitly tell Home Manager to use the path, for example by adding\n"
|
|
||||||
"\n"
|
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" to your configuration.\n"
|
|
||||||
"\n"
|
|
||||||
" If you import Home Manager directly, you can use the `path` parameter\n"
|
|
||||||
"\n"
|
|
||||||
" pkgs.callPackage /path/to/home-manager-package { path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" when calling the Home Manager package.\n"
|
|
||||||
"\n"
|
|
||||||
"2. Remove the deprecated path.\n"
|
|
||||||
"\n"
|
|
||||||
" $ rm -r \"%s\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
|
||||||
#: home-manager/home-manager:221
|
|
||||||
msgid "Can't inspect options of a flake configuration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
|
||||||
#: home-manager/home-manager:1051
|
|
||||||
msgid "%s: unknown option '%s'"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
|
||||||
msgid "Run '%s --help' for usage help"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
|
||||||
msgid "Creating %s..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
|
||||||
msgid "Creating initial Home Manager generation..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
|
||||||
#: home-manager/home-manager:480
|
|
||||||
msgid ""
|
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
|
||||||
"\n"
|
|
||||||
" %s\n"
|
|
||||||
"\n"
|
|
||||||
"to configure Home Manager. Run 'man home-configuration.nix' to\n"
|
|
||||||
"see all available options."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
|
||||||
#: home-manager/home-manager:485
|
|
||||||
msgid ""
|
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
|
||||||
"\n"
|
|
||||||
" %s\n"
|
|
||||||
"\n"
|
|
||||||
"if the error seems to be the fault of Home Manager."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
|
||||||
#: home-manager/home-manager:496
|
|
||||||
msgid "Can't instantiate a flake configuration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
|
||||||
msgid ""
|
|
||||||
"There is %d unread and relevant news item.\n"
|
|
||||||
"Read it by running the command \"%s news\"."
|
|
||||||
msgid_plural ""
|
|
||||||
"There are %d unread and relevant news items.\n"
|
|
||||||
"Read them by running the command \"%s news\"."
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
|
||||||
#, sh-format
|
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
|
||||||
msgid "Cannot run build in read-only directory"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
|
||||||
msgid "No generation with ID %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
|
||||||
msgid "Cannot remove the current generation %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
|
||||||
msgid "Removing generation %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
|
||||||
msgid "No generations to expire"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
|
||||||
msgid "No home-manager packages seem to be installed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
|
||||||
msgid "Unknown argument %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
|
||||||
msgid "This will remove Home Manager from your system."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
|
||||||
msgid "Really uninstall Home Manager?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
|
||||||
msgid "Yay!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
|
||||||
msgid "expire-generations expects one argument, got %d."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
|
||||||
msgid "Unknown command: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/install.nix:18
|
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
|
||||||
msgstr ""
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-04-05 11:01+0000\n"
|
"PO-Revision-Date: 2023-04-23 12:49+0000\n"
|
||||||
"Last-Translator: Leix b <abone9999@gmail.com>\n"
|
"Last-Translator: Leix b <abone9999@gmail.com>\n"
|
||||||
"Language-Team: Catalan <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: Catalan <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"ca/>\n"
|
"ca/>\n"
|
||||||
|
@ -17,21 +17,16 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 4.18-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "No s'ha trobat cap fitxer de configuració a %s"
|
msgstr "No s'ha trobat cap fitxer de configuració a %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,25 +34,23 @@ msgstr ""
|
||||||
"Mantenir el teu Home Manager %s a %s està obsolet,\n"
|
"Mantenir el teu Home Manager %s a %s està obsolet,\n"
|
||||||
"si us plau mou-lo a %s"
|
"si us plau mou-lo a %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "No s'ha trobat cap fitxer de configuració. Si us plau, creeu un a %s"
|
msgstr "No s'ha trobat cap fitxer de configuració. Si us plau, creeu un a %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "No s'ha trobat el Home Manager a %s."
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"La ruta alternativa del Home Manager ha quedat obsoleta i s'ha trobat un "
|
|
||||||
"fitxer/directori allí."
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -77,64 +70,40 @@ msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Per a eliminar aquesta advertència, dugueu a terme una de les següents "
|
|
||||||
"opcions.\n"
|
|
||||||
"\n"
|
|
||||||
"1. Indiqueu explícitament al Home Manager que utilitzi la ruta, per exemple "
|
|
||||||
"afegint\n"
|
|
||||||
"\n"
|
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" a la vostra configuració.\n"
|
|
||||||
"\n"
|
|
||||||
" Si importeu el Home Manager directament, podeu utilitzar el paràmetre "
|
|
||||||
"`path`\n"
|
|
||||||
"\n"
|
|
||||||
" pkgs.callPackage /ruta/al/paquet-del-home-manager { path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" quan invoqueu el paquet del Home Manager.\n"
|
|
||||||
"\n"
|
|
||||||
"2. Elimineu la ruta obsoleta.\n"
|
|
||||||
"\n"
|
|
||||||
" $ rm -r \"%s\""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Comprovant Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"No s'ha pogut trobar un directori de perfils adequat, s'ha provat %s i %s"
|
"No s'ha pogut trobar un directori de perfils adequat, s'ha provat %s i %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "No s'han pogut inspeccionar les opcions de configuració de flake"
|
msgstr "No s'han pogut inspeccionar les opcions de configuració de flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%: opció desconeguda '%s'"
|
msgstr "%: opció desconeguda '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Executa '%s --help' per veure l'ajuda d'ús"
|
msgstr "Executa '%s --help' per veure l'ajuda d'ús"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "El fitxer %s ja existeix, deixant sense modificar..."
|
msgstr "El fitxer %s ja existeix, deixant sense modificar..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Creant %s..."
|
msgstr "Creant %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Creant generació inicial de Home Manager..."
|
msgstr "Creant generació inicial de Home Manager..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -151,7 +120,7 @@ msgstr ""
|
||||||
"a veure totes les opcions disponibles."
|
"a veure totes les opcions disponibles."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -166,11 +135,11 @@ msgstr ""
|
||||||
"si l'error sembla culpa de Home Manager."
|
"si l'error sembla culpa de Home Manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "No es pot instanciar una configuració flake"
|
msgstr "No es pot instanciar una configuració flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -184,73 +153,73 @@ msgstr[1] ""
|
||||||
"Hi han %d notícies rellevants no llegides.\n"
|
"Hi han %d notícies rellevants no llegides.\n"
|
||||||
"Llegeix-les executant la comanda \"%s news\"."
|
"Llegeix-les executant la comanda \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Configuració \"news.display\" no reconeguda \"%s\"."
|
msgstr "Configuració \"news.display\" no reconeguda \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Si us plau, defineix les variables de entorn $EDITOR o $VISUAL"
|
msgstr "Si us plau, defineix la variable d'entorn $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Impossible executar la compilació en un directori només lectura"
|
msgstr "Impossible executar la compilació en un directori només lectura"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "No existeix la generació amb ID %s"
|
msgstr "No existeix la generació amb ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Impossible eliminar la generació actual %s"
|
msgstr "Impossible eliminar la generació actual %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Eliminant la generació %s"
|
msgstr "Eliminant la generació %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "No s'han trobat generacions a expirar"
|
msgstr "No s'han trobat generacions a expirar"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Cap paquet home-manager sembla estar instal·lat."
|
msgstr "Cap paquet home-manager sembla estar instal·lat."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Argument desconegut %s"
|
msgstr "Argument desconegut %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Home Manager serà esborrat del sistema."
|
msgstr "Home Manager serà esborrat del sistema."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Això és un simulacre, res serà realment desinstal·lat."
|
msgstr "Això és un simulacre, res serà realment desinstal·lat."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Estàs segur que vols desinstal·lar Home Manager?"
|
msgstr "Estàs segur que vols desinstal·lar Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Canviant a configuració buida de Home Manager..."
|
msgstr "Canviant a configuració buida de Home Manager..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Visca!"
|
msgstr "Visca!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Home Manager ha estat desinstal·lat però el vostre home.nix es manté intacte."
|
"Home Manager ha estat desinstal·lat però el vostre home.nix es manté intacte."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations espera un argument, obtinguts %d."
|
msgstr "expire-generations espera un argument, obtinguts %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Comanda desconeguda: %s"
|
msgstr "Comanda desconeguda: %s"
|
||||||
|
|
||||||
|
@ -260,10 +229,6 @@ msgstr ""
|
||||||
"Aquesta derivació no es pot construir, si us plau executa-la utilitzant nix-"
|
"Aquesta derivació no es pot construir, si us plau executa-la utilitzant nix-"
|
||||||
"shell."
|
"shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Si us plau, defineix la variable d'entorn $EDITOR"
|
|
||||||
|
|
||||||
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Ho sentim, aquesta comanda encara no està suportada en la configuració de "
|
#~ "Ho sentim, aquesta comanda encara no està suportada en la configuració de "
|
||||||
|
|
|
@ -7,31 +7,26 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-02-16 22:01+0000\n"
|
"PO-Revision-Date: 2023-09-09 13:54+0000\n"
|
||||||
"Last-Translator: Robert Helgesson <robert@rycee.net>\n"
|
"Last-Translator: Karel Kremel <charles@alembiq.net>\n"
|
||||||
"Language-Team: Czech <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: Czech <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"cs/>\n"
|
"cs/>\n"
|
||||||
"Language: cs\n"
|
"Language: cs\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"
|
||||||
"Plural-Forms: nplurals=3; plural=((n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2);\n"
|
"Plural-Forms: nplurals=3; plural=(n==1) ? 0 : (n>=2 && n<=4) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 5.4\n"
|
"X-Generator: Weblate 5.0.1-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "V %s nebyl nalezen konfigurační soubor"
|
msgstr "V %s nebyl nalezen konfigurační soubor"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,16 +34,16 @@ msgstr ""
|
||||||
"Udržovat Home Manager %s v %s je zastaralé,\n"
|
"Udržovat Home Manager %s v %s je zastaralé,\n"
|
||||||
"prosím přesuňte jej do %s"
|
"prosím přesuňte jej do %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Konfigurační soubor nenalezen. Prosím vytvořte jej v %s"
|
msgstr "Konfigurační soubor nenalezen. Prosím vytvořte jej v %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager nebyl nalezen v %s."
|
msgstr "Home Manager nebyl nalezen v %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
|
@ -57,7 +52,7 @@ msgstr ""
|
||||||
"adresář."
|
"adresář."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -77,7 +72,7 @@ msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"K odstranění tohoto varování udělejte jednu z následujících operací.\n"
|
"K odstranení tohoto varování udělejte jednu z následujících operací.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"1. Jmenovitě určete Home Manageru cestu kterou má použít, například "
|
"1. Jmenovitě určete Home Manageru cestu kterou má použít, například "
|
||||||
"přidáním\n"
|
"přidáním\n"
|
||||||
|
@ -96,42 +91,38 @@ msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Kontrola správnosti Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Nebyl nalezen vhodný adresář profilu, byly zkoušeny %s a %s"
|
msgstr "Nebyl nalezen adresář profilu, byly zkoušeny %s a %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Nelze ověřit parametry z konfigurace flake"
|
msgstr "Nelze ověřit parametry z konfigurace flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: neznámý parametr '%s'"
|
msgstr "%s: neznámý parametr '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Spusťte '%s --help' pro vypsání nápovědy"
|
msgstr "Spusťte '%s --help' pro vypsání nápovědy"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Soubor %s již existuje, ponechán beze změn..."
|
msgstr "Soubor %s již existuje, ponechán beze změn..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Vytvářím %s..."
|
msgstr "Vytvářím %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Vytvářím první generaci Home Manageru..."
|
msgstr "Vytvářím první generaci Home Manageru..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -148,7 +139,7 @@ msgstr ""
|
||||||
"k zobrazení všech dostupných možností."
|
"k zobrazení všech dostupných možností."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -162,11 +153,11 @@ msgstr ""
|
||||||
" %s"
|
" %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Nelze vytvořit instanci flake konfigurace"
|
msgstr "Nelze vytvořit instanci flake konfigurace"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -183,79 +174,75 @@ msgstr[2] ""
|
||||||
"%d nepřečtených novinek.\n"
|
"%d nepřečtených novinek.\n"
|
||||||
"Přečtěte je pomocí příkazu \"%s news\"."
|
"Přečtěte je pomocí příkazu \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Neznáme nastavení \"news.display\" \"%s\"."
|
msgstr "Neznáme nastavení \"news.display\" \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr ""
|
msgstr "Prosím nastavte proměnou prostředí $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Sestavení nelze provést v adresáři dostupném pouze pro čtení"
|
msgstr "Sestavení nelze provést v adresáři dostupném pouze pro čtení"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Generace s ID %s neexistuje"
|
msgstr "Generace s ID %s neexistuje"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Nelze odstranit současnou generaci %s"
|
msgstr "Nelze odstranit současnou generaci %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Odstraňuji generaci %s"
|
msgstr "Odstraňuji generaci %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Žádná generace k vypršení platnosti"
|
msgstr "Žádná generace k vypršení platnosti"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Žádný home-manager balíček není nainstalován."
|
msgstr "Žádný home-manager balíček není nainstalován."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Neznámý parametr %s"
|
msgstr "Neznámý parametr %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Toto odstraní Home Manager z vašeho systému."
|
msgstr "Toto odstraní Home Manager z vašeho systému."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Toto zkouška na nečisto, nic nebude odinstalováno."
|
msgstr "Toto zkouška na nečisto, nic nebude odinstalováno."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Opravdu odinstalovat Home Manager?"
|
msgstr "Opravdu odinstalovat Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Přepínám na prázdou konfiguraci Home Manageru..."
|
msgstr "Přepínám na prázdou konfiguraci Home Manageru..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Hurá!"
|
msgstr "Hurá!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager se odinstalovává, ale váš home.nix nebyl změněn."
|
msgstr "Home Manager se odinstalovává, ale váš home.nix nebyl změněn."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations očekává jeden parametr, přítomno %d."
|
msgstr "expire-generations očekává jeden parametr, přítomno %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Neznámý příkaz: %s"
|
msgstr "Neznámý příkaz: %s"
|
||||||
|
|
||||||
#: home-manager/install.nix:18
|
#: home-manager/install.nix:18
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr "Tuto odvozeninu nelze sestavit, prosím spusťte ji pomocí nix-shell."
|
msgstr "Tuto odvozeninu nelze sestavit, prosím spusťte ji pomocí nix-shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Prosím nastavte proměnou prostředí $EDITOR"
|
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-05-25 11:09+0000\n"
|
"PO-Revision-Date: 2023-08-27 13:52+0000\n"
|
||||||
"Last-Translator: DeeKahy <Lennart.Diego.Kahn@gmail.com>\n"
|
"Last-Translator: cafkafk <christina@cafkafk.com>\n"
|
||||||
"Language-Team: Danish <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: Danish <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"da/>\n"
|
"da/>\n"
|
||||||
"Language: da\n"
|
"Language: da\n"
|
||||||
|
@ -17,47 +17,42 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.6-dev\n"
|
"X-Generator: Weblate 5.0.1-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: manglende argument for %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Ingen konfigurationsfiler fundet ved %s"
|
msgstr "Ingen konfigurationsfiler fundet ved %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Det er forældet at holde Home Manager %s i %s,\n"
|
"At have din Home Manager %s i %s er forældet,\n"
|
||||||
"ryk den venligst til %s"
|
"flyt den venligst til %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Ingen konfigurationsfiler fundet. Venligst lav en ved %s"
|
msgstr "Ingen konfigurationsfiler fundet. Venligst lav en ved %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager blev ikke fundet ved %s."
|
msgstr "Home Manager kan ikke findes under %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Det er forældet at bruge fallback Home Manager path %s og der blev fundet en "
|
"Fallback-stien til Home Manager %s er blevet forældet, og en fil/mappe blev "
|
||||||
"fil/mappe der."
|
"fundet der."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -96,42 +91,38 @@ msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Tjekker fornuften af Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Kunne ikke finde en passende profilmappe, forsøgte %s og %s"
|
msgstr "Kunne ikke finde en passende profilmappe, forsøgte %s og %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Kan ikke inspicere indstillinger af en flake konfiguration"
|
msgstr "Kan ikke inspicere indstillinger af en flake konfiguration"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: ukendt indstilling '%s'"
|
msgstr "%s: ukendt indstilling '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Kør '%s --help' for brugsvejledning"
|
msgstr "Kør '%s --help' for brugsvejledning"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Filen %s eksisterer allerede, efterlader den uændret…"
|
msgstr "Filen %s findes allerede, lader den være uændret..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Opretter %s..."
|
msgstr "Opretter %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Laver initial Home Manager generation..."
|
msgstr "Laver initial Home Manager generation..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -149,7 +140,7 @@ msgstr ""
|
||||||
"se alle de mulige indstillinger."
|
"se alle de mulige indstillinger."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -164,11 +155,11 @@ msgstr ""
|
||||||
"hvis fejlen fremstår som forskyldt af Home Manager."
|
"hvis fejlen fremstår som forskyldt af Home Manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Kan ikke instantiere en flake konfiguration"
|
msgstr "Kan ikke instantiere en flake konfiguration"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -182,74 +173,74 @@ msgstr[1] ""
|
||||||
"Der er %d ulæste og relavante nyheder.\n"
|
"Der er %d ulæste og relavante nyheder.\n"
|
||||||
"Læs dem ved at køre \"%s news\"."
|
"Læs dem ved at køre \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Ubekændt \"news.display\" indstilling \"%s\"."
|
msgstr "Ubekændt \"news.display\" indstilling \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Indstil venligst miljøvariablen $EDITOR eller $VISUAL"
|
msgstr "Venligst sæt $EDITOR miljøvariablen"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Kan ikke bygge i en læs-kun folder"
|
msgstr "Kan ikke bygge i en læs-kun folder"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Ingen generation med ID %s"
|
msgstr "Ingen generation med ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Kan ikke fjerne den nuværende generation %s"
|
msgstr "Kan ikke fjerne den nuværende generation %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Fjern generation %s"
|
msgstr "Fjern generation %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Ingen generationer som skal udløbes"
|
msgstr "Ingen generationer som skal udløbes"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Det virker ikke som om der er nogle home-manager pakker der er installeret."
|
"Det virker ikke som om der er nogle home-manager pakker der er installeret."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Ubekendt argument %s"
|
msgstr "Ubekendt argument %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Dette vil fjerne Home Manager fra dit system."
|
msgstr "Dette vil fjerne Home Manager fra dit system."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Dette er en tør kørsel, intet vil rent faktisk blive uinstalleret."
|
msgstr "Dette er en tør kørsel, intet vil rent faktisk blive uinstalleret."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Virkelig uinstaller Home Manager?"
|
msgstr "Virkelig uinstaller Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Skifter til tom Home Manager konfiguration..."
|
msgstr "Skifter til tom Home Manager konfiguration..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Juhuu!"
|
msgstr "Juhuu!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Home Manager bliver uinstalleret, men din home.nix bliver forladt uberørt."
|
"Home Manager bliver uinstalleret, men din home.nix bliver forladt uberørt."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations forventer et argument, fik %d."
|
msgstr "expire-generations forventer et argument, fik %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Ubekendt kommando: %s"
|
msgstr "Ubekendt kommando: %s"
|
||||||
|
|
||||||
|
@ -257,10 +248,6 @@ msgstr "Ubekendt kommando: %s"
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr "Denne derivation er ikke bygbar, venligst kør den gennem nix-shell."
|
msgstr "Denne derivation er ikke bygbar, venligst kør den gennem nix-shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Venligst sæt $EDITOR miljøvariablen"
|
|
||||||
|
|
||||||
#~ msgid "Creating initial Home Manager configuration..."
|
#~ msgid "Creating initial Home Manager configuration..."
|
||||||
#~ msgstr "Laver initial Home Manager konfiguration..."
|
#~ msgstr "Laver initial Home Manager konfiguration..."
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-05-21 18:02+0000\n"
|
"PO-Revision-Date: 2023-08-15 17:51+0000\n"
|
||||||
"Last-Translator: halbGefressen <chzi@pm.me>\n"
|
"Last-Translator: Simon <xxyababx70@gmail.com>\n"
|
||||||
"Language-Team: German <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: German <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"de/>\n"
|
"de/>\n"
|
||||||
"Language: de\n"
|
"Language: de\n"
|
||||||
|
@ -17,21 +17,16 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.6-dev\n"
|
"X-Generator: Weblate 5.0-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: Fehlendes Argument für %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Keine Konfigurationsdatei unter %s gefunden"
|
msgstr "Keine Konfigurationsdatei unter %s gefunden"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,16 +34,16 @@ msgstr ""
|
||||||
"Das Beibehalten Ihres Home Manager %s in %s ist veraltet.\n"
|
"Das Beibehalten Ihres Home Manager %s in %s ist veraltet.\n"
|
||||||
"Bitte verschieben Sie es nach %s"
|
"Bitte verschieben Sie es nach %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Keine Konfigurationsdatei gefunden. Bitte erstellen Sie eine unter %s"
|
msgstr "Keine Konfigurationsdatei gefunden. Bitte erstellen Sie eine unter %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager nicht gefunden unter %s."
|
msgstr "Home Manager nicht gefunden unter %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
|
@ -57,7 +52,7 @@ msgstr ""
|
||||||
"eine Datei/ein Verzeichnis dort gefunden."
|
"eine Datei/ein Verzeichnis dort gefunden."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -80,12 +75,10 @@ msgstr ""
|
||||||
"Um diese Warnung zu entfernen, führen Sie einen der folgenden Schritte aus.\n"
|
"Um diese Warnung zu entfernen, führen Sie einen der folgenden Schritte aus.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"1. Weisen Sie Home Manager explizit an, den Pfad zu verwenden, indem Sie z. "
|
"1. Weisen Sie Home Manager explizit an, den Pfad zu verwenden, indem Sie z. "
|
||||||
"B. :\n"
|
"B. Folgendes zu Ihrer Konfiguration hinzufügen:\n"
|
||||||
"\n"
|
"\n"
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
" { programs.home-manager.path = \"%s\"; }\n"
|
||||||
"\n"
|
"\n"
|
||||||
" zu Ihrer Konfiguration hinzufügen.\n"
|
|
||||||
"\n"
|
|
||||||
" Sollten Sie Home Manager direkt importieren, können Sie den Parameter "
|
" Sollten Sie Home Manager direkt importieren, können Sie den Parameter "
|
||||||
"`path` verwenden, wenn Sie das Home Manager-Paket aufrufen:\n"
|
"`path` verwenden, wenn Sie das Home Manager-Paket aufrufen:\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -95,44 +88,40 @@ msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Überprüfe zur Sicherheit Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Es konnte kein passendes Profilverzeichnis gefunden werden, %s und %s wurden "
|
"Es konnte kein passendes Profilverzeichnis gefunden werden, %s und %s wurden "
|
||||||
"versucht"
|
"versucht"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Die Optionen einer Flake-Konfiguration können nicht inspiziert werden"
|
msgstr "Die Optionen einer Flake-Konfiguration können nicht inspiziert werden"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: unbekannte Option '%s'"
|
msgstr "%s: unbekannte Option '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Führe '%s --help' aus, um Hilfe zur Verwendung zu erhalten"
|
msgstr "Führe '%s --help' aus, um Hilfe zur Verwendung zu erhalten"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Die Datei %s existiert bereits, sie bleibt unverändert..."
|
msgstr "Die Datei %s existiert bereits, sie bleibt unverändert..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Erstelle %s..."
|
msgstr "Erstelle %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Erstelle initiale Home Manager Generation..."
|
msgstr "Erstelle initiale Home Manager Generation..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -150,7 +139,7 @@ msgstr ""
|
||||||
"sehen."
|
"sehen."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -165,11 +154,11 @@ msgstr ""
|
||||||
"falls der Fehler auf Home Manager zurückzuführen ist."
|
"falls der Fehler auf Home Manager zurückzuführen ist."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Kann eine Flake-Konfiguration nicht instanziieren"
|
msgstr "Kann eine Flake-Konfiguration nicht instanziieren"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -183,73 +172,73 @@ msgstr[1] ""
|
||||||
"Es gibt %d ungelesene und relevante Nachrichten.\n"
|
"Es gibt %d ungelesene und relevante Nachrichten.\n"
|
||||||
"Lesen Sie sie, indem Sie den Befehl \"%s news\" ausführen."
|
"Lesen Sie sie, indem Sie den Befehl \"%s news\" ausführen."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Unbekannte \"news.display\" Einstellung \"%s\"."
|
msgstr "Unbekannte \"news.display\" Einstellung \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Bitte definieren Sie die $EDITOR oder $VISUAL Umgebungsvariable"
|
msgstr "Bitte legen Sie die $EDITOR Variable fest"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Build kann nicht im schreibgeschützten Ordner ausgeführt werden"
|
msgstr "Build kann nicht im schreibgeschützten Ordner ausgeführt werden"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Keine Generation mit ID %s"
|
msgstr "Keine Generation mit ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Die jetzige Generation %s kann nicht entfernt werden"
|
msgstr "Die jetzige Generation %s kann nicht entfernt werden"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Entferne Generation %s"
|
msgstr "Entferne Generation %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Keine ablaufenden Generationen"
|
msgstr "Keine ablaufenden Generationen"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Es scheint, als ob keine Home Manager Pakete installiert sind."
|
msgstr "Es scheint, als ob keine Home Manager Pakete installiert sind."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Unbekannte Argumente %s"
|
msgstr "Unbekannte Argumente %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Dies wird Home Manager von Ihrem System entfernen."
|
msgstr "Dies wird Home Manager von Ihrem System entfernen."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Dies ist ein Probelauf, es wird nichts vom System deinstalliert."
|
msgstr "Dies ist ein Probelauf, es wird nichts vom System deinstalliert."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Möchten Sie wirklich Home Manager deinstallieren?"
|
msgstr "Möchten Sie wirklich Home Manager deinstallieren?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Wechsle zu einer leeren Home Manager Konfiguration..."
|
msgstr "Wechsle zu einer leeren Home Manager Konfiguration..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Juhu!"
|
msgstr "Juhu!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Home Manager ist installiert, aber Ihre home.nix Datei bleibt unberührt."
|
"Home Manager ist installiert, aber Ihre home.nix Datei bleibt unberührt."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations erwartet ein Argument, hat aber %d erhalten."
|
msgstr "expire-generations erwartet ein Argument, hat aber %d erhalten."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Unbekannter Befehl: %s"
|
msgstr "Unbekannter Befehl: %s"
|
||||||
|
|
||||||
|
@ -258,10 +247,6 @@ msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Diese Derivation ist nicht kompilierbar. Bitte führen Sie nix-shell aus."
|
"Diese Derivation ist nicht kompilierbar. Bitte führen Sie nix-shell aus."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Bitte legen Sie die $EDITOR Variable fest"
|
|
||||||
|
|
||||||
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
||||||
#~ msgstr "Dieser Befehl wird im Flake-Setup leider noch nicht unterstützt"
|
#~ msgstr "Dieser Befehl wird im Flake-Setup leider noch nicht unterstützt"
|
||||||
|
|
||||||
|
|
|
@ -7,8 +7,8 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-04-19 17:07+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:03+0000\n"
|
||||||
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
"Last-Translator: gallegonovato <fran-carro@hotmail.es>\n"
|
||||||
"Language-Team: Spanish <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: Spanish <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"es/>\n"
|
"es/>\n"
|
||||||
|
@ -17,21 +17,16 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 5.0-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: falta argumento para %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Archivo de configuración no encontrado en %s"
|
msgstr "Archivo de configuración no encontrado en %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,16 +34,16 @@ msgstr ""
|
||||||
"Mantener tu Home Manager %s en %s está obsoleto,\n"
|
"Mantener tu Home Manager %s en %s está obsoleto,\n"
|
||||||
"por favor muévalo a %s"
|
"por favor muévalo a %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Archivo de configuración no encontrado. Por favor cree uno en %s"
|
msgstr "Archivo de configuración no encontrado. Por favor cree uno en %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "No se ha encontrado el Home Manager en %s."
|
msgstr "No se ha encontrado el Home Manager en %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
|
@ -57,7 +52,7 @@ msgstr ""
|
||||||
"archivo/directorio allí."
|
"archivo/directorio allí."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -96,44 +91,40 @@ msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Chequeando Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"No se ha podido encontrar un directorio de perfiles adecuado, se ha probado "
|
"No se ha podido encontrar un directorio de perfiles adecuado, se ha probado "
|
||||||
"con %s y %s"
|
"con %s y %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "No se pudo inspeccionar las opciones de la configuración flake"
|
msgstr "No se pudo inspeccionar las opciones de la configuración flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: opción desconocida '%s'"
|
msgstr "%s: opción desconocida '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Ejecute '%s --help' para ver ayuda"
|
msgstr "Ejecute '%s --help' para ver ayuda"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "El fichero %s ya existe, dejándolo sin modificar..."
|
msgstr "El fichero %s ya existe, dejándolo sin modificar..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Creando %s..."
|
msgstr "Creando %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Creando generación inicial de Home Manager..."
|
msgstr "Creando generación inicial de Home Manager..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -150,7 +141,7 @@ msgstr ""
|
||||||
"ver todas las opciones disponibles."
|
"ver todas las opciones disponibles."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -165,11 +156,11 @@ msgstr ""
|
||||||
"si el error parecer ser culpa de Home Manager."
|
"si el error parecer ser culpa de Home Manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "No se pudo instanciar una configuración flake"
|
msgstr "No se pudo instanciar una configuración flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -183,72 +174,72 @@ msgstr[1] ""
|
||||||
"Hay %d noticias relevantes no leídas.\n"
|
"Hay %d noticias relevantes no leídas.\n"
|
||||||
"Léalas ejecutando el comando \"%s news\"."
|
"Léalas ejecutando el comando \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Configuración \"news.display\" no reconocida \"%s\"."
|
msgstr "Configuración \"news.display\" no reconocida \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Por favor, defina la variable del entorno $EDITOR o $VISUAL"
|
msgstr "Defina la variable de ambiente $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "No se puede ejecutar en un directorio de sólo lectura"
|
msgstr "No se puede ejecutar en un directorio de sólo lectura"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "No existe la generación con ID %s"
|
msgstr "No existe la generación con ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "No se pudo borrar la generación actual %s"
|
msgstr "No se pudo borrar la generación actual %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Borrando generación %s"
|
msgstr "Borrando generación %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "No se encontraron generaciones para expirar"
|
msgstr "No se encontraron generaciones para expirar"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "No se encontró ningún paquete home-manager instalado."
|
msgstr "No se encontró ningún paquete home-manager instalado."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Argumento desconocido %s"
|
msgstr "Argumento desconocido %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Home Manager será borrado del sistema."
|
msgstr "Home Manager será borrado del sistema."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Este es un simulacro, nada será realmente desinstalado."
|
msgstr "Este es un simulacro, nada será realmente desinstalado."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Desinstalar Home Manager?"
|
msgstr "Desinstalar Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Cambiando a configuración vacía de Home Manager..."
|
msgstr "Cambiando a configuración vacía de Home Manager..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Bien!"
|
msgstr "Bien!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager desinstalado pero no se ha modificado home.nix."
|
msgstr "Home Manager desinstalado pero no se ha modificado home.nix."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations espera un argumento pero se dieron %d."
|
msgstr "expire-generations espera un argumento pero se dieron %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Comando desconocido %s"
|
msgstr "Comando desconocido %s"
|
||||||
|
|
||||||
|
@ -256,10 +247,6 @@ msgstr "Comando desconocido %s"
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr "Esta derivación no se puede construir, ejecute con nix-shell."
|
msgstr "Esta derivación no se puede construir, ejecute con nix-shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Defina la variable de ambiente $EDITOR"
|
|
||||||
|
|
||||||
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Lo sentimos, este comando aún no está soportado en la configuración de "
|
#~ "Lo sentimos, este comando aún no está soportado en la configuración de "
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-05-02 10:58+0000\n"
|
"PO-Revision-Date: 2023-05-28 22:49+0000\n"
|
||||||
"Last-Translator: Keivan <keyvan0082@gmail.com>\n"
|
"Last-Translator: Mohammad Abdolirad <m.abdolirad@gmail.com>\n"
|
||||||
"Language-Team: Persian <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: Persian <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"fa/>\n"
|
"fa/>\n"
|
||||||
"Language: fa\n"
|
"Language: fa\n"
|
||||||
|
@ -17,47 +17,38 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 5.5.3-dev\n"
|
"X-Generator: Weblate 4.18-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: مقدار %s یافت نشد"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "هیچ فایل تنظیماتی در %s یافت نشد"
|
msgstr "هیچ فایل تنظیماتی در %s پیدا نشد"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"نگه داری %s در %s منسوخ شده است.\n"
|
|
||||||
"لطفا آنرا به %s انتفال دهید"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "هیچ فایل تنظیماتی پیدا نشد. لطفا یک فایل در %s بسازید"
|
msgstr "هیچ فایل تنظیماتی پیدا نشد. لطفا یک فایل در %s بسازید"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home manager در %s یافت نشد."
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"مسیر زاپاس برای Home manager در %s منسوخ شده است اما یک فایل/دایرکتوری در "
|
|
||||||
"این مسیر پیدا شد."
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -77,61 +68,39 @@ msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"برای از بین بردن این اخطار, یکی از کار های زیر را انجام دهید.\n"
|
|
||||||
"\n"
|
|
||||||
"1. مسیر Home Manager را به صورت دقیق با اضافه کردن خط زیر\n"
|
|
||||||
"\n"
|
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
"به کانفیگ خود, تعریف کنید\n"
|
|
||||||
"\n"
|
|
||||||
"اگر Home Manager را به طور مستقیم import کرده اید, میتوانید از پارامتر `path`"
|
|
||||||
" استفاده کنید\n"
|
|
||||||
"\n"
|
|
||||||
" pkgs.callPackage /path/to/home-manager-package { path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
"برای هنگامی که دارید پکیج Home Manager را صدا میزنید\n"
|
|
||||||
"\n"
|
|
||||||
"2. مسیر منسوخ شده را پاک کنید\n"
|
|
||||||
"\n"
|
|
||||||
" $ rm -r \"%s\""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "چک کردن پایداری Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "بعد از امتحان کردن %s و %s , دایرکتوری مناسب برای پروفایل یافت نشد"
|
msgstr ""
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "عدم امکان بررسی گزینههای تنظیمات Flake"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: آپشن مورد نظر شما یافت نشد %s"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "%s --help برای دیدن راهنمایی دستور رو به رو را اجرا کنید"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "فایل %s از قبل وجود داشته است، بدون تغییر رها شد..."
|
msgstr "فایل %s از قبل وجود داشته است، بدون تغییر رها شد..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "درحال ساختن %s..."
|
msgstr "ساختن %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "در حال ساخت نسخه اولیه Home Manager."
|
msgstr ""
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -140,15 +109,9 @@ msgid ""
|
||||||
"to configure Home Manager. Run 'man home-configuration.nix' to\n"
|
"to configure Home Manager. Run 'man home-configuration.nix' to\n"
|
||||||
"see all available options."
|
"see all available options."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"پایان! ابزار home-manager نصب شده است و شما میتوانید با تغییر دادن فایل\n"
|
|
||||||
"\n"
|
|
||||||
" %s\n"
|
|
||||||
"\n"
|
|
||||||
"تنظیمات Home Manager خود را تغییر دهید. برای دیدن همه ی تنظیمات موجود\n"
|
|
||||||
"دستور 'man home-configuration.nix' را اجرا کنید."
|
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -156,19 +119,13 @@ msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
"if the error seems to be the fault of Home Manager."
|
"if the error seems to be the fault of Home Manager."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"ای بابا, فرایند نصب با شکست مواجه شد! اگر بنظرتان میاید مشکل از Home Manager "
|
|
||||||
"است, لطفا یک issue در\n"
|
|
||||||
"\n"
|
|
||||||
" %s\n"
|
|
||||||
"\n"
|
|
||||||
"ایجاد کنید."
|
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "عدم امکان نمونهسازی تنظیمات flake"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -176,88 +133,81 @@ msgid_plural ""
|
||||||
"There are %d unread and relevant news items.\n"
|
"There are %d unread and relevant news items.\n"
|
||||||
"Read them by running the command \"%s news\"."
|
"Read them by running the command \"%s news\"."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"%d خبر خوانده نشده وجود دارد.\n"
|
|
||||||
"میتوانید آن را با اجرای دستور \"%s news\" بخوانید."
|
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
"%d خبر خوانده نشده وجود دارد.\n"
|
|
||||||
"میتوانید آنها را با اجرای دستور \"%s news\" بخوانید."
|
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "تنظیمات \"news.display\" در \"%s\" شناخته شده نیست."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "لطفا متغیر محلی $EDITOR و یا $VISUAL را تنظیم کنید"
|
msgstr "لطفا متغیر محیطی $EDITOR را مقدار دهی کنید"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "نمیتوان دستور build را در یک دایکتوری read-only اجرا کرد"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "هیچ نسل ای با شناسه %s یافت نشد"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "نمیتوان نسل فعلی %s را حذف کرد"
|
msgstr "نمیتوان نسل فعلی %s را حذف کرد"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "حذف کردن نسل %s"
|
msgstr "حذف کردن نسل %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "هیچ نسلی برای منسوخ کردن وجود ندارد"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "بنظر میاید هیچ پکیجی از home-manager نصب نشده است."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "پارامتر %s شناخته نشده است"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "این عمل Home Manager را از سیستم شما حذف میکند."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "این یک عمل آزمایشی است, قرار نیست چیزی واقعا حذف شود."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "واقعا میخواهید Home Manager را حذف کنید؟"
|
msgstr "واقعاً هوم منیجر را حذف نصب کنید؟"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "در حال انتقال به تنظیمات خالی Home Manager..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
|
#, fuzzy
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "ایول!"
|
msgstr "آره!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager حذف نصب شد اما home.nix شما دست نخورده باقی ماند."
|
msgstr "هوم منیجر حذف نصب شد اما home.nix شما دست نخورده باقی ماند."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations یک پارامتر نیاز دارد, اما %d پارامتر دریافت کرد"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "دستور ناشناخته: %s"
|
msgstr "دستور ناشناخته: %s"
|
||||||
|
|
||||||
#: home-manager/install.nix:18
|
#: home-manager/install.nix:18
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr "این نسخه قابل build کردن نیست, لطفا آن را با nix-shell اجرا کنید."
|
msgstr ""
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "لطفا متغیر محیطی $EDITOR را مقدار دهی کنید"
|
|
||||||
|
|
||||||
#~ msgid "Creating initial Home Manager configuration..."
|
#~ msgid "Creating initial Home Manager configuration..."
|
||||||
#~ msgstr "ایجاد تنظیمات اولیه Home-Manager..."
|
#~ msgstr "ایجاد تنظیمات اولیه Home-Manager..."
|
||||||
|
|
|
@ -7,53 +7,46 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-05-31 17:09+0000\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: jarre johansson <jarre@johansson.today>\n"
|
"Last-Translator: Automatically generated\n"
|
||||||
"Language-Team: Finnish <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: none\n"
|
||||||
"fi/>\n"
|
|
||||||
"Language: fi\n"
|
"Language: fi\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"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.6-dev\n"
|
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: puuttuva argumentti kohteelle %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Konfiguraatiotiedostoa ei löytynyt sijainnista %s"
|
msgstr ""
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Konfiguraatiotiedostoa ei löytynyt. Luo sellainen sijaintiin %s"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manageria ei löytynyt sijainnista %s."
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -74,42 +67,38 @@ msgid ""
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Nixin eheys tarkistetaan"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Sopivaa profiilihakemistoa ei löytynyt, yritettiin %s ja %s"
|
msgstr ""
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Flake-konfiguraation asetuksia ei voi tarkastella"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: tuntematon vaihtoehto '%s"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Aja '%s --help' saadaksesi käyttöohjeita"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Tiedosto %s on jo olemassa, jätetään se muuttumattomaksi..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Luodaan tiedostoa %s..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Luodaan alkuperäistä Home Manager -generaatiota..."
|
msgstr ""
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -120,7 +109,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -130,11 +119,11 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Flake-konfiguraatiota ei voi luoda"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -142,81 +131,76 @@ msgid_plural ""
|
||||||
"There are %d unread and relevant news items.\n"
|
"There are %d unread and relevant news items.\n"
|
||||||
"Read them by running the command \"%s news\"."
|
"Read them by running the command \"%s news\"."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"Sinulla on %d lukematon ja oleellinen uutisartikkeli.\n"
|
|
||||||
"Lue se ajamalla komento \"%s news\"."
|
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
"Sinulla on %d lukematonta ja oleellista uutisartikkelia.\n"
|
|
||||||
"Lue ne ajamalla komento \"%s news\"."
|
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Tuntematon asetus \"news.display\" \"%s\"."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Aseta $EDITOR- tai $VISUAL-ympäristömuuttujaksi"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Nykyistä generaatiota %s ei voi poistaa"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Generaatio %s poistetaan"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Näyttää siltä, ettei yhtään home-manager-pakettia ole asennettu."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Tuntematon argumentti %s"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Tämä poistaa Home Managerin järjestelmästäsi."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Tämä on kuivaharjoitus, mitään ei oikeasti poisteta."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Haluatko varmasti poistaa Home Managerin?"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Vaihdetaan tyhjään Home Manager -konfiguraatioon..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Jes!"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Home Manager on poistettu, mutta home.nix-tiedostosi jää koskemattomaksi."
|
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Tuntematon komento: %s"
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/install.nix:18
|
#: home-manager/install.nix:18
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-04-29 18:07+0000\n"
|
"PO-Revision-Date: 2023-11-17 08:06+0000\n"
|
||||||
"Last-Translator: Michael Thomas <michaelhthomas@outlook.com>\n"
|
"Last-Translator: \"Julien H. Gibson\" <julienhgibson@protonmail.com>\n"
|
||||||
"Language-Team: French <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: French <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"fr/>\n"
|
"fr/>\n"
|
||||||
"Language: fr\n"
|
"Language: fr\n"
|
||||||
|
@ -17,40 +17,35 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 5.5.2\n"
|
"X-Generator: Weblate 5.2\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s : argument manquant pour %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Aucun fichier de configuration trouvé à l'emplacement %s"
|
msgstr "Aucun fichier de configuration trouvé à l'emplacement %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Garder votre Home Manager %s dans %s est obsolète,\n"
|
"Garder votre Home Manager %s dans %s est obsolète,\n"
|
||||||
"Veuillez le déplacer à %s"
|
"Veuillez le déplacer à % s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Aucun fichier de configuration trouvé. Veuillez en créer un à l'emplacement "
|
"Aucun fichier de configuration trouvé. Veuillez en créer un à l'emplacement "
|
||||||
"%s"
|
"%s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager indisponible à %s."
|
msgstr "Home Manager n'a pas été trouvé à l'emplacement %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
|
@ -59,7 +54,7 @@ msgstr ""
|
||||||
"dossier y a été trouvé."
|
"dossier y a été trouvé."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -79,58 +74,58 @@ msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Pour supprimer cet avertissement, exécutez l'une des actions suivantes :\n"
|
"Pour enlever cet avertissement, faites l'une des manipulations suivantes.\n"
|
||||||
"\n"
|
"\n"
|
||||||
"1. Préciser explicitement à Home Manager d'utiliser le chemin d'accès, par "
|
"1. Dire explicitement à Home Manager d'utiliser le path, par exemple en "
|
||||||
"exemple en ajoutant ceci à votre configuration :\n"
|
"ajoutant\n"
|
||||||
"\n"
|
"\n"
|
||||||
"\t{ programs.home-manager.path = \"%s\" ; }\n"
|
" { programs.home-manager.path = \"%s\"; }\n"
|
||||||
"\n"
|
"\n"
|
||||||
"Si vous importez Home Manager directement, vous pouvez utiliser le paramètre "
|
" à votre configuration.\n"
|
||||||
"`path` au lancement du package :\n"
|
|
||||||
"\n"
|
"\n"
|
||||||
"\tpkgs.callPackage /path/to/home-manager-package { path = \"%s\" ; }\n"
|
" Si vous importez directement Home Manager, vous pouvez utiliser le "
|
||||||
|
"paramètre `path`\n"
|
||||||
"\n"
|
"\n"
|
||||||
"2. Supprimez le chemin d'accès obsolète.\n"
|
" pkgs.callPackage /path/to/home-manager-package { path = \"%s\"; }\n"
|
||||||
"\n"
|
"\n"
|
||||||
"\t$ rm -r \"%s\""
|
" lorsque vous appelez le package Home Manager.\n"
|
||||||
|
"\n"
|
||||||
|
"2. Supprimer le path obsolète.\n"
|
||||||
|
"\n"
|
||||||
|
" $ rm -r \"%s\""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Vérification de Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Impossible de trouver le dossier de profil approprié, essayé %s et %s"
|
msgstr "Impossible de trouver le dossier de profil approprié, essayé %s et %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Impossible d'inspecter les options de la configuration d'un flake"
|
msgstr "Impossible d'inspecter les options de la configuration d'un flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s : option inconnue '%s'"
|
msgstr "%s : option inconnue '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Exécuter « %s --help » pour de l'aide sur l'utilisation"
|
msgstr "Exécuter « %s --help » pour de l'aide sur l'utilisation"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Le fichier %s existe déjà, il sera laissé inchangé..."
|
msgstr "Le fichier %s existe déjà, il sera laissé inchangé..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Création de %s ..."
|
msgstr "Création de %s ..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Création de la génération initiale de Home Manager..."
|
msgstr "Création de la génération initiale de Home Manager..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -148,7 +143,7 @@ msgstr ""
|
||||||
"essayez 'man home-configuration.nix'."
|
"essayez 'man home-configuration.nix'."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -164,11 +159,11 @@ msgstr ""
|
||||||
"si l'erreur semble être liée à Home Manager."
|
"si l'erreur semble être liée à Home Manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Impossible d'instancier une configuration flake"
|
msgstr "Impossible d'instancier une configuration flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -182,72 +177,72 @@ msgstr[1] ""
|
||||||
"Il y a %d nouveaux éléments non lus et pertinents.\n"
|
"Il y a %d nouveaux éléments non lus et pertinents.\n"
|
||||||
"Vous pouvez les lire en exécutant la commande \"%s news\"."
|
"Vous pouvez les lire en exécutant la commande \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Configuration \"news.display\" inconnue \"%s\"."
|
msgstr "Configuration \"news.display\" inconnue \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Veuillez remplir la variable d'environnement $EDITOR ou VISUAL"
|
msgstr "Veuillez définir la variable d'environnement $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Impossible de lancer une compilation dans un dossier en écriture seule"
|
msgstr "Impossible de lancer une compilation dans un dossier en écriture seule"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Aucune génération avec l'ID %s"
|
msgstr "Aucune génération avec l'ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Impossible de supprimer la génération courante %s"
|
msgstr "Impossible de supprimer la génération courante %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Suppression de la génération %s"
|
msgstr "Suppression de la génération %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Aucune génération expirée"
|
msgstr "Aucune génération expirée"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Aucun package home-manager ne semble être installé."
|
msgstr "Aucun package home-manager ne semble être installé."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Argument inconnu %s"
|
msgstr "Argument inconnu %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Cela va supprimer Home Manager de votre système."
|
msgstr "Cela va supprimer Home Manager de votre système."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "C'est un essai, rien ne sera réellement désinstallé."
|
msgstr "C'est un essai, rien ne sera réellement désinstallé."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Voulez-vous vraiment désinstaller Home Manager ?"
|
msgstr "Voulez-vous vraiment désinstaller Home Manager ?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Changement vers une configuration vierge de Home Manager..."
|
msgstr "Changement vers une configuration vierge de Home Manager..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Yay !"
|
msgstr "Yay !"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager est désinstallé mais votre home.nix reste intact."
|
msgstr "Home Manager est désinstallé mais votre home.nix reste intact."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations attend un argument, a obtenu %d."
|
msgstr "expire-generations attend un argument, a obtenu %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Commande inconnue : %s"
|
msgstr "Commande inconnue : %s"
|
||||||
|
|
||||||
|
@ -255,10 +250,6 @@ msgstr "Commande inconnue : %s"
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr "Cette dérivation ne peut être construite, essayez avec nix-shell."
|
msgstr "Cette dérivation ne peut être construite, essayez avec nix-shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Veuillez définir la variable d'environnement $EDITOR"
|
|
||||||
|
|
||||||
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Désolé, cette commande n'est pas encore prise en charge dans la "
|
#~ "Désolé, cette commande n'est pas encore prise en charge dans la "
|
||||||
|
|
|
@ -8,7 +8,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
"PO-Revision-Date: YEAR-MO-DA HO:MI+ZONE\n"
|
||||||
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
"Last-Translator: FULL NAME <EMAIL@ADDRESS>\n"
|
||||||
"Language-Team: LANGUAGE <LL@li.org>\n"
|
"Language-Team: LANGUAGE <LL@li.org>\n"
|
||||||
|
@ -18,41 +18,36 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
"Plural-Forms: nplurals=INTEGER; plural=EXPRESSION;\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -73,42 +68,38 @@ msgid ""
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -119,7 +110,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -129,11 +120,11 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -143,72 +134,72 @@ msgid_plural ""
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -1,221 +0,0 @@
|
||||||
# SOME DESCRIPTIVE TITLE.
|
|
||||||
# Copyright (C) YEAR Home Manager contributors
|
|
||||||
# This file is distributed under the same license as the Home Manager package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Home Manager\n"
|
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
|
||||||
"PO-Revision-Date: 2024-07-05 14:09+0000\n"
|
|
||||||
"Last-Translator: Ferenci Ákos <synthetace@gmail.com>\n"
|
|
||||||
"Language-Team: Hungarian <https://hosted.weblate.org/projects/home-manager/"
|
|
||||||
"cli/hu/>\n"
|
|
||||||
"Language: hu\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
|
||||||
"X-Generator: Weblate 5.7-dev\n"
|
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: hiányzó érték erre: %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
|
||||||
msgstr "Nincs konfigurációs fájl itt: %s"
|
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
|
||||||
#. 'home.nix' or 'flake.nix'.
|
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
|
||||||
#: home-manager/home-manager:184
|
|
||||||
msgid ""
|
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
|
||||||
"please move it to %s"
|
|
||||||
msgstr ""
|
|
||||||
"A Home Manager %s %s elérési úton való tárolása elavult. Kérem helyezze át a "
|
|
||||||
"%s elérési úthoz"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
|
||||||
msgid "No configuration file found. Please create one at %s"
|
|
||||||
msgstr ""
|
|
||||||
"Nem található konfigurációs fájl. Kérem hozza létre a fájlt a %s elérési úton"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
|
||||||
msgid "Home Manager not found at %s."
|
|
||||||
msgstr "Home Manager nem található a %s elérési úton."
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
|
||||||
#: home-manager/home-manager:115
|
|
||||||
msgid ""
|
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
|
||||||
"was found there."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
|
||||||
#: home-manager/home-manager:118
|
|
||||||
msgid ""
|
|
||||||
"To remove this warning, do one of the following.\n"
|
|
||||||
"\n"
|
|
||||||
"1. Explicitly tell Home Manager to use the path, for example by adding\n"
|
|
||||||
"\n"
|
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" to your configuration.\n"
|
|
||||||
"\n"
|
|
||||||
" If you import Home Manager directly, you can use the `path` parameter\n"
|
|
||||||
"\n"
|
|
||||||
" pkgs.callPackage /path/to/home-manager-package { path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" when calling the Home Manager package.\n"
|
|
||||||
"\n"
|
|
||||||
"2. Remove the deprecated path.\n"
|
|
||||||
"\n"
|
|
||||||
" $ rm -r \"%s\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
|
||||||
#: home-manager/home-manager:221
|
|
||||||
msgid "Can't inspect options of a flake configuration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
|
||||||
#: home-manager/home-manager:1051
|
|
||||||
msgid "%s: unknown option '%s'"
|
|
||||||
msgstr "%s: ismeretlen opció '%s'"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
|
||||||
msgid "Run '%s --help' for usage help"
|
|
||||||
msgstr "Futtasa a '%s --help' parancsot a használattal kapcsolatos segítségért"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
|
||||||
msgstr "A fájl %s már létezik és változatlan marad..."
|
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
|
||||||
msgid "Creating %s..."
|
|
||||||
msgstr "%s létrehozása..."
|
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
|
||||||
msgid "Creating initial Home Manager generation..."
|
|
||||||
msgstr "Kezdeti Home Manager generáció létrehozása..."
|
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
|
||||||
#: home-manager/home-manager:480
|
|
||||||
msgid ""
|
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
|
||||||
"\n"
|
|
||||||
" %s\n"
|
|
||||||
"\n"
|
|
||||||
"to configure Home Manager. Run 'man home-configuration.nix' to\n"
|
|
||||||
"see all available options."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
|
||||||
#: home-manager/home-manager:485
|
|
||||||
msgid ""
|
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
|
||||||
"\n"
|
|
||||||
" %s\n"
|
|
||||||
"\n"
|
|
||||||
"if the error seems to be the fault of Home Manager."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
|
||||||
#: home-manager/home-manager:496
|
|
||||||
msgid "Can't instantiate a flake configuration"
|
|
||||||
msgstr "Flake konfiguráció nem példányosítható"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
|
||||||
msgid ""
|
|
||||||
"There is %d unread and relevant news item.\n"
|
|
||||||
"Read it by running the command \"%s news\"."
|
|
||||||
msgid_plural ""
|
|
||||||
"There are %d unread and relevant news items.\n"
|
|
||||||
"Read them by running the command \"%s news\"."
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
|
||||||
#, sh-format
|
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
|
||||||
msgid "Cannot run build in read-only directory"
|
|
||||||
msgstr "Build futtatása nem lehetséges csak-olvasható könyvtárban"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
|
||||||
msgid "No generation with ID %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
|
||||||
msgid "Cannot remove the current generation %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
|
||||||
msgid "Removing generation %s"
|
|
||||||
msgstr "%s generáció eltávolítása"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
|
||||||
msgid "No generations to expire"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
|
||||||
msgid "No home-manager packages seem to be installed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
|
||||||
msgid "Unknown argument %s"
|
|
||||||
msgstr "Ismeretlen argumentum %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
|
||||||
msgid "This will remove Home Manager from your system."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
|
||||||
msgid "Really uninstall Home Manager?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
|
||||||
msgid "Yay!"
|
|
||||||
msgstr "Hurrá!"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
|
||||||
msgid "expire-generations expects one argument, got %d."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
|
||||||
msgid "Unknown command: %s"
|
|
||||||
msgstr "Ismeretlen parancs: %s"
|
|
||||||
|
|
||||||
#: home-manager/install.nix:18
|
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
|
||||||
msgstr ""
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-02-16 22:01+0000\n"
|
"PO-Revision-Date: 2023-10-04 06:02+0000\n"
|
||||||
"Last-Translator: Robert Helgesson <robert@rycee.net>\n"
|
"Last-Translator: Reza Almanda <rezaalmanda27@gmail.com>\n"
|
||||||
"Language-Team: Indonesian <https://hosted.weblate.org/projects/home-manager/"
|
"Language-Team: Indonesian <https://hosted.weblate.org/projects/home-manager/"
|
||||||
"cli/id/>\n"
|
"cli/id/>\n"
|
||||||
"Language: id\n"
|
"Language: id\n"
|
||||||
|
@ -17,21 +17,16 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 5.4\n"
|
"X-Generator: Weblate 5.1-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Tidak ada file konfigurasi yang ditemukan di %s"
|
msgstr "Tidak ada file konfigurasi yang ditemukan di %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,16 +34,16 @@ msgstr ""
|
||||||
"Mempertahankan Pengelola Beranda Anda %s di %s tidak digunakan lagi,\n"
|
"Mempertahankan Pengelola Beranda Anda %s di %s tidak digunakan lagi,\n"
|
||||||
"tolong pindahkan ke %s"
|
"tolong pindahkan ke %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Tidak ada file konfigurasi yang ditemukan. Silakan buat di %s"
|
msgstr "Tidak ada file konfigurasi yang ditemukan. Silakan buat di %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager tidak ditemukan di %s."
|
msgstr "Home Manager tidak ditemukan di %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
|
@ -57,7 +52,7 @@ msgstr ""
|
||||||
"ditemukan di sana."
|
"ditemukan di sana."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -78,42 +73,38 @@ msgid ""
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Pemeriksaan sanity Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Tidak dapat menemukan direktori profil yang sesuai, coba %s dan %s"
|
msgstr "Tidak dapat menemukan direktori profil yang sesuai, coba %s dan %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Tidak dapat memeriksa opsi konfigurasi flake"
|
msgstr "Tidak dapat memeriksa opsi konfigurasi flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: opsi tidak diketahui '%s'"
|
msgstr "%s: opsi tidak diketahui '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Jalankan '%s --help' untuk bantuan penggunaan"
|
msgstr "Jalankan '%s --help' untuk bantuan penggunaan"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "File %s sudah ada, sehingga tidak berubah..."
|
msgstr "File %s sudah ada, sehingga tidak berubah..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Membuat %s..."
|
msgstr "Membuat %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Membuat pembuatan Home Manager awal..."
|
msgstr "Membuat pembuatan Home Manager awal..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -124,7 +115,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -139,11 +130,11 @@ msgstr ""
|
||||||
"jika error tersebut tampaknya merupakan kesalahan Home Manager."
|
"jika error tersebut tampaknya merupakan kesalahan Home Manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Tidak dapat membuat konfigurasi flake"
|
msgstr "Tidak dapat membuat konfigurasi flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -154,72 +145,72 @@ msgstr[0] ""
|
||||||
"Ada %d item berita yang belum dibaca dan relevan. \n"
|
"Ada %d item berita yang belum dibaca dan relevan. \n"
|
||||||
"Bacalah dengan menjalankan perintah \"%s news\"."
|
"Bacalah dengan menjalankan perintah \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Pengaturan \"news.display\" yang tidak diketahui \"%s\"."
|
msgstr "Pengaturan \"news.display\" yang tidak diketahui \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr ""
|
msgstr "Silahkan atur variabel lingkungan $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Tidak dapat menjalankan build di direktori hanya-baca"
|
msgstr "Tidak dapat menjalankan build di direktori hanya-baca"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Tidak ada generasi dengan ID %s"
|
msgstr "Tidak ada generasi dengan ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Tidak dapat menghapus %s generasi saat ini"
|
msgstr "Tidak dapat menghapus %s generasi saat ini"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Menghapus generasi %s"
|
msgstr "Menghapus generasi %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Tidak ada generasi yang kedaluwarsa"
|
msgstr "Tidak ada generasi yang kedaluwarsa"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Yey!"
|
msgstr "Yey!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
@ -227,7 +218,3 @@ msgstr ""
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Derivasi ini tidak dapat dibangun, silakan jalankan menggunakan nix-shell."
|
"Derivasi ini tidak dapat dibangun, silakan jalankan menggunakan nix-shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Silahkan atur variabel lingkungan $EDITOR"
|
|
||||||
|
|
|
@ -1,223 +0,0 @@
|
||||||
# SOME DESCRIPTIVE TITLE.
|
|
||||||
# Copyright (C) YEAR Home Manager contributors
|
|
||||||
# This file is distributed under the same license as the Home Manager package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Home Manager\n"
|
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
|
||||||
"PO-Revision-Date: 2024-04-23 17:49+0000\n"
|
|
||||||
"Last-Translator: Bjarki Gunnarsson <bjarkihg@gmail.com>\n"
|
|
||||||
"Language-Team: Icelandic <https://hosted.weblate.org/projects/home-manager/"
|
|
||||||
"cli/is/>\n"
|
|
||||||
"Language: is\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=2; plural=n % 10 != 1 || n % 100 == 11;\n"
|
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
|
||||||
#: home-manager/home-manager:16
|
|
||||||
#, fuzzy
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: vantar inntak fyrir %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
|
||||||
msgstr "Engin stillingaskrá fundin í %s"
|
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
|
||||||
#. 'home.nix' or 'flake.nix'.
|
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
|
||||||
#: home-manager/home-manager:184
|
|
||||||
msgid ""
|
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
|
||||||
"please move it to %s"
|
|
||||||
msgstr ""
|
|
||||||
"Það er úrelt að geyma Home Manager %s í %s,\n"
|
|
||||||
"vinsamlega færðu hann í %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
|
||||||
msgid "No configuration file found. Please create one at %s"
|
|
||||||
msgstr "Engin stillingaskrá fundin. Vinsamlegast búðu hana til í %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
|
||||||
msgid "Home Manager not found at %s."
|
|
||||||
msgstr "Home Manager ekki fundinn í %s."
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
|
||||||
#: home-manager/home-manager:115
|
|
||||||
msgid ""
|
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
|
||||||
"was found there."
|
|
||||||
msgstr ""
|
|
||||||
"Vara Home Manager slóðin %s hefur verið úreld en skrá/mappa hefur verið "
|
|
||||||
"fundin þar."
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
|
||||||
#: home-manager/home-manager:118
|
|
||||||
msgid ""
|
|
||||||
"To remove this warning, do one of the following.\n"
|
|
||||||
"\n"
|
|
||||||
"1. Explicitly tell Home Manager to use the path, for example by adding\n"
|
|
||||||
"\n"
|
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" to your configuration.\n"
|
|
||||||
"\n"
|
|
||||||
" If you import Home Manager directly, you can use the `path` parameter\n"
|
|
||||||
"\n"
|
|
||||||
" pkgs.callPackage /path/to/home-manager-package { path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" when calling the Home Manager package.\n"
|
|
||||||
"\n"
|
|
||||||
"2. Remove the deprecated path.\n"
|
|
||||||
"\n"
|
|
||||||
" $ rm -r \"%s\""
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
|
||||||
#: home-manager/home-manager:221
|
|
||||||
msgid "Can't inspect options of a flake configuration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
|
||||||
#: home-manager/home-manager:1051
|
|
||||||
msgid "%s: unknown option '%s'"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
|
||||||
msgid "Run '%s --help' for usage help"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
|
||||||
msgid "Creating %s..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
|
||||||
msgid "Creating initial Home Manager generation..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
|
||||||
#: home-manager/home-manager:480
|
|
||||||
msgid ""
|
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
|
||||||
"\n"
|
|
||||||
" %s\n"
|
|
||||||
"\n"
|
|
||||||
"to configure Home Manager. Run 'man home-configuration.nix' to\n"
|
|
||||||
"see all available options."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
|
||||||
#: home-manager/home-manager:485
|
|
||||||
msgid ""
|
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
|
||||||
"\n"
|
|
||||||
" %s\n"
|
|
||||||
"\n"
|
|
||||||
"if the error seems to be the fault of Home Manager."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
|
||||||
#: home-manager/home-manager:496
|
|
||||||
msgid "Can't instantiate a flake configuration"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
|
||||||
msgid ""
|
|
||||||
"There is %d unread and relevant news item.\n"
|
|
||||||
"Read it by running the command \"%s news\"."
|
|
||||||
msgid_plural ""
|
|
||||||
"There are %d unread and relevant news items.\n"
|
|
||||||
"Read them by running the command \"%s news\"."
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
|
||||||
#, sh-format
|
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
|
||||||
msgid "Cannot run build in read-only directory"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
|
||||||
msgid "No generation with ID %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
|
||||||
msgid "Cannot remove the current generation %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
|
||||||
msgid "Removing generation %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
|
||||||
msgid "No generations to expire"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
|
||||||
msgid "No home-manager packages seem to be installed."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
|
||||||
msgid "Unknown argument %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
|
||||||
msgid "This will remove Home Manager from your system."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
|
||||||
msgid "Really uninstall Home Manager?"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
|
||||||
msgid "Yay!"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
|
||||||
msgid "expire-generations expects one argument, got %d."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
|
||||||
msgid "Unknown command: %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/install.nix:18
|
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
|
||||||
msgstr ""
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-02-29 10:10+0000\n"
|
"PO-Revision-Date: 2023-11-12 11:01+0000\n"
|
||||||
"Last-Translator: FedFer98123 <fede.ferrari123@gmail.com>\n"
|
"Last-Translator: Frankie McEyes <mceyes@protonmail.com>\n"
|
||||||
"Language-Team: Italian <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: Italian <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"it/>\n"
|
"it/>\n"
|
||||||
"Language: it\n"
|
"Language: it\n"
|
||||||
|
@ -17,47 +17,38 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 5.2-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Nessun file di configurazione trovato in %s"
|
msgstr "Nessun file di configurazione trovato in %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Mantere il tuo Home Manger su %s su %s è obsoleto,\n"
|
|
||||||
"si raccomanda di spostarlo su %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Nessun file di configurazione trovato. Per favore creane uno in %s"
|
msgstr "Nessun file di configurazione trovato. Per favore crearne uno in %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager non è stato trovato in %s."
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Il percorso di riserva di Home Manager %s è stato deprecato e un file/"
|
|
||||||
"directory è stato trovato lì."
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -77,64 +68,40 @@ msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Per rimuovere questo avvertimento, esegui queste istruzioni.\n"
|
|
||||||
"\n"
|
|
||||||
"1.Di esplicitamente a Home Manager di usare il percorso, per esempio "
|
|
||||||
"aggiungendo\n"
|
|
||||||
"\n"
|
|
||||||
"· · · · · { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
"nella tua configurazione.\n"
|
|
||||||
"\n"
|
|
||||||
"· · · Se hai importato Home Manager direttamente, puoi usare il parametro "
|
|
||||||
"`path`\n"
|
|
||||||
"\n"
|
|
||||||
"· · · · · pkgs.callPackage /percorso/di/home-manager-package { path = "
|
|
||||||
"\"%s\";}\n"
|
|
||||||
"\n"
|
|
||||||
"· · · quando chiami il pacchetto Home Manager\n"
|
|
||||||
"\n"
|
|
||||||
"2. Rimuovi il percorso obsoleto\n"
|
|
||||||
"\n"
|
|
||||||
"· · · · · $ rm -r \"%s\""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Controllando Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Impossibile trovare la directory del profilo adatta, si è provato con %s e %s"
|
"Impossibile trovare la directory del profilo adatta, si è provato con %s e %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Impossibile ispezionare le opzioni di configurazione flake"
|
msgstr "Impossibile ispezionare le opzioni di configurazione flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: opzione sconosciuta '%s'"
|
msgstr "%s: opzione sconosciuta '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Esegui '%s --help' per le informazioni d'uso"
|
msgstr "Esegui '%s --help' per ottenere aiuto"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Il file %s esiste già, non verrà modificato..."
|
msgstr "Il file %s è già esistente, non verrà modificato..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Creando %s..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Creando la generazione iniziale di Home Manager..."
|
msgstr "Creando la generazione iniziale di Home Manager..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -145,13 +112,13 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Tutto fatto! Home-manager dovrebbe essere installato e puoi modificare\n"
|
"Tutto fatto! Home-manager dovrebbe essere installato e puoi modificare\n"
|
||||||
"\n"
|
"\n"
|
||||||
"· · · · %s\n"
|
"%s\n"
|
||||||
"\n"
|
"\n"
|
||||||
"per configurare Home Manager. Esegui 'man home-configurazion.nix' per\n"
|
"per configurare Home Manager. Esegui 'man home-configurazion.nix' per\n"
|
||||||
"consultare tutte le opzioni disponibili."
|
"consultare tutte le opzioni disponibili."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -159,19 +126,19 @@ msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
"if the error seems to be the fault of Home Manager."
|
"if the error seems to be the fault of Home Manager."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Oh oh, l'installazione non è andata a buon fine! Per favore aprire un ticket "
|
"Oh no, l'installazione non è andata a buon fine! Per favore aprire un ticket "
|
||||||
"issue a\n"
|
"issue a\n"
|
||||||
"\n"
|
"\n"
|
||||||
"· · · · %s\n"
|
"%s\n"
|
||||||
"\n"
|
"\n"
|
||||||
"se l'errore sembra essere causato da Home Manager."
|
"se l'errore sembra essere causato da Home Manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Impossibile istanziare una configurazione flake"
|
msgstr "Impossibile istanziare una configurazione flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -179,89 +146,85 @@ msgid_plural ""
|
||||||
"There are %d unread and relevant news items.\n"
|
"There are %d unread and relevant news items.\n"
|
||||||
"Read them by running the command \"%s news\"."
|
"Read them by running the command \"%s news\"."
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
"C'è %d novità rilevante non letta.\n"
|
"C'è %d novità di elementi non letta.\n"
|
||||||
"Leggila con il comando \"%s news\"."
|
"Leggila con il comando \"%s news\"."
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
"Ci sono %d novità rilevanti non lette.\n"
|
"Ci sono %d novità di elementi non letti\n"
|
||||||
"Leggile con il comando \"%s news\"."
|
"Leggile con il comando \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Opzione \"news.display\" sconosciuta \"%s\"."
|
msgstr "Opzione \"news.display\" sconosciuta \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Per favore definisci le variabili d'ambiente $EDITOR o $VISUAL"
|
msgstr "Per favore impostare la variabile d'ambient $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Impossibile eseguire la build in una cartella in sola lettura"
|
msgstr "Impossibile eseguire la build in una cartella in sola lettura"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Nessuna generazione con ID %s"
|
msgstr "Nessuna generazione con ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Impossibile rimuovere la generazione corrente %s"
|
msgstr "Impossibile rimuovere la generazione corrente %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Rimuovo la generazione %s"
|
msgstr "Rimuovo la generazione %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Nessuna generazione in scadenza"
|
msgstr "Nessuna generazione in scadenza"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Sembrerebbe che nessun pacchetto home-manager sia installato."
|
msgstr "Nessun pacchetto home-manager sembra essere installato."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Argomento sconosciuto: %s"
|
msgstr "Argomento sconosciuto: %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Questo rimuoverà Home Manger dal tuo sistema."
|
msgstr "Questo rimuoverà Home Manger dal tuo sistema."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Questo è un avvio a secco, nulla verrà realmente disinstallato."
|
msgstr "Questo è un avvio a secco, nulla verrà realmente disinstallato."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Vuoi davvero disinstallare Home Manager?"
|
msgstr "Vuoi davvero disinstallare Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Passaando ad una configurazione Home Manager vuota..."
|
msgstr "Cambio ad una configurazione Home Manager vuota..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Urrà!"
|
msgstr "Urrà!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager è disinstallato ma la tua home.nix non è stata toccata."
|
msgstr "Home Manager è disinstallato ma la tua home.Nix non è stata toccata."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations si aspetta un solo argomento, invece di %d."
|
msgstr "expire-generations si aspetta un solo argomento, invece di %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Comando sconosciuto: %s"
|
msgstr "Comando sconosciuto: %s"
|
||||||
|
|
||||||
#: home-manager/install.nix:18
|
#: home-manager/install.nix:18
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Questa derivazione non è compilabile, prova ad eseguirla usando nix-shell."
|
"Questa derivazione non è compilabile, prova ad eseguila usando nix-shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Per favore impostare la variabile d'ambiente $EDITOR"
|
|
||||||
|
|
||||||
#~ msgid "Creating initial Home Manager configuration..."
|
#~ msgid "Creating initial Home Manager configuration..."
|
||||||
#~ msgstr "Creando la configurazione iniziale di Home Manager..."
|
#~ msgstr "Creando la configurazione iniziale di Home Manager..."
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-05-25 11:09+0000\n"
|
"PO-Revision-Date: 2023-06-12 10:49+0000\n"
|
||||||
"Last-Translator: TANIGUCHI Kohei <a.d.xvii.kal.mai@gmail.com>\n"
|
"Last-Translator: Jeff Ames <jeff@anjefu.com>\n"
|
||||||
"Language-Team: Japanese <https://hosted.weblate.org/projects/home-manager/"
|
"Language-Team: Japanese <https://hosted.weblate.org/projects/home-manager/"
|
||||||
"cli/ja/>\n"
|
"cli/ja/>\n"
|
||||||
"Language: ja\n"
|
"Language: ja\n"
|
||||||
|
@ -17,21 +17,16 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 5.6-dev\n"
|
"X-Generator: Weblate 4.18-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: %s の引数がありません"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "%s に設定ファイルが見つかりません"
|
msgstr "%s に設定ファイルが見つかりません"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,24 +34,23 @@ msgstr ""
|
||||||
"Home Managerの %s の %s への保管は非推奨となりました\n"
|
"Home Managerの %s の %s への保管は非推奨となりました\n"
|
||||||
"%s へ移動させてください"
|
"%s へ移動させてください"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "設定ファイルがありません。ファイルを %s に作ってください"
|
msgstr "設定ファイルがありません。ファイルを %s に作ってください"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "%s にHome Managerが見つかりません。"
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr "フォールバックの Home Manager のパス %s "
|
msgstr ""
|
||||||
"は非推奨ですが、そこにファイルまたはディレクトリがあります。"
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -76,62 +70,40 @@ msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"この警告が表示されないようにするには、以下のどれかを行ってください。\n"
|
|
||||||
"\n"
|
|
||||||
"1. Home Manager にそのパスを使うよう伝えます。例えば\n"
|
|
||||||
"\n"
|
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" を設定に追加します。\n"
|
|
||||||
"\n"
|
|
||||||
" もし Home Manager を直接インポートしているのであれば、 Home Manager "
|
|
||||||
"パッケージを呼び出すときに `path` パラメーターを使って\n"
|
|
||||||
"\n"
|
|
||||||
" pkgs.callPackage /path/to/home-manager-package { path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" のようにできます。\n"
|
|
||||||
"\n"
|
|
||||||
"2. 非推奨のパスにあるものを削除します。\n"
|
|
||||||
"\n"
|
|
||||||
" $ rm -r \"%s\""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Nixの健全性検査中です"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"適切なプロファイル ディレクトリが見つかりませんでした。%s と %s を試しました"
|
"適切なプロファイル ディレクトリが見つかりませんでした。%s と %s を試しました"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "flake設定のオプションを検査できません"
|
msgstr "flake設定のオプションを検査できません"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: 不明なオプション '%s'"
|
msgstr "%s: 不明なオプション '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "'%s --help' でヘルプを参照することができます"
|
msgstr "'%s --help' でヘルプを参照することができます"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "%s は既に存在します。変更せずに続行しています..."
|
msgstr "%s は既に存在します。変更せずに続行しています..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "%s を作成中です..."
|
msgstr "%s を作成中です..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Home Managerの世代を初期化しています..."
|
msgstr "Home Managerの世代を初期化しています..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -149,7 +121,7 @@ msgstr ""
|
||||||
"'man home-configuration.nix' を実行してください。"
|
"'man home-configuration.nix' を実行してください。"
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -165,11 +137,11 @@ msgstr ""
|
||||||
"というissueを立ててください。"
|
"というissueを立ててください。"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "flake設定を初期化できません"
|
msgstr "flake設定を初期化できません"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -180,75 +152,75 @@ msgstr[0] ""
|
||||||
"未読のお知らせが%d件あります。\n"
|
"未読のお知らせが%d件あります。\n"
|
||||||
"\"%s news\"コマンドで確認できます。"
|
"\"%s news\"コマンドで確認できます。"
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "\"news.display\"に\"%s\"という設定は存在しません。"
|
msgstr "\"news.display\"に\"%s\"という設定は存在しません。"
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "環境変数 $EDITOR または $VISUAL を設定してください"
|
msgstr "$EDITOR環境変数を設定してください"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "読み込み専用ディレクトリ内ではbuild(作成)できません"
|
msgstr "読み込み専用ディレクトリ内ではbuild(作成)できません"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "ID %s を持つ世代はありません"
|
msgstr "ID %s を持つ世代はありません"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "現在使用中の世代 %s は削除できません"
|
msgstr "現在使用中の世代 %s は削除できません"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "世代 %s を削除中です"
|
msgstr "世代 %s を削除中です"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "期限切れで削除される世代はありません"
|
msgstr "期限切れで削除される世代はありません"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "home-managerパッケージがインストールされていないようです。"
|
msgstr "home-managerパッケージがインストールされていないようです。"
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "不明な引数 %s"
|
msgstr "不明な引数 %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "この操作によってHome Managerはシステムから削除されます。"
|
msgstr "この操作によってHome Managerはシステムから削除されます。"
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "これはdry run (予行練習)で、実際にはアンインストールは行われません。"
|
msgstr "これはdry run (予行練習)で、実際にはアンインストールは行われません。"
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "本当にHome Managerをアンインストールしますか?"
|
msgstr "本当にHome Managerをアンインストールしますか?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "空のHome Managerの設定に切り替えています..."
|
msgstr "空のHome Managerの設定に切り替えています..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "イェイ!"
|
msgstr "イェイ!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Home Managerはアンインストールされましたが、home.nixはそのまま残してありま"
|
"Home Managerはアンインストールされましたが、home.nixはそのまま残してありま"
|
||||||
"す。"
|
"す。"
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"expire-generations は一つしか引数を取らないところ、%d 個が与えられました。"
|
"expire-generations は一つしか引数を取らないところ、%d 個が与えられました。"
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "不明なコマンド: %s"
|
msgstr "不明なコマンド: %s"
|
||||||
|
|
||||||
|
@ -256,10 +228,6 @@ msgstr "不明なコマンド: %s"
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr "この派生はビルドできません。nix-shellを使って実行してください。"
|
msgstr "この派生はビルドできません。nix-shellを使って実行してください。"
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "$EDITOR環境変数を設定してください"
|
|
||||||
|
|
||||||
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "申し訳ありませんが、このコマンドはflake設定ではまだ対応されていません"
|
#~ "申し訳ありませんが、このコマンドはflake設定ではまだ対応されていません"
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-05-30 06:09+0000\n"
|
"PO-Revision-Date: 2023-08-03 05:07+0000\n"
|
||||||
"Last-Translator: lentil32 <lentil32@icloud.com>\n"
|
"Last-Translator: 박수원 <bboxone@gmail.com>\n"
|
||||||
"Language-Team: Korean <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: Korean <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"ko/>\n"
|
"ko/>\n"
|
||||||
"Language: ko\n"
|
"Language: ko\n"
|
||||||
|
@ -17,21 +17,16 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 5.6-dev\n"
|
"X-Generator: Weblate 5.0-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: %s에 대한 인자 누락"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "%s에서 설정 파일을 찾을 수 없음"
|
msgstr "%s에서 설정 파일을 찾을 수 없음"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,16 +34,16 @@ msgstr ""
|
||||||
"홈 매니저 %s 을 %s 안에 선언하는 것은 더 이상 사용되지 않습니다.\n"
|
"홈 매니저 %s 을 %s 안에 선언하는 것은 더 이상 사용되지 않습니다.\n"
|
||||||
"%s로 옮겨주십시오"
|
"%s로 옮겨주십시오"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "설정 파일을 찾을 수 없음. %s에 설정 파일을 생성하십시오"
|
msgstr "설정 파일을 찾을 수 없음. %s에 설정 파일을 생성하십시오"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "%s에서 홈 매니저가 발견되지 않음."
|
msgstr "%s에서 홈 매니저가 발견되지 않음."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
|
@ -57,7 +52,7 @@ msgstr ""
|
||||||
"곳에서 발견 되었습니다."
|
"곳에서 발견 되었습니다."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -96,42 +91,38 @@ msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Nix가 정상인지 확인 중"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "%s와 %s를 시도했지만, 적합한 프로파일 디렉토리를 찾을 수 없습니다"
|
msgstr "%s와 %s를 시도했지만, 적합한 프로파일 디렉토리를 찾을 수 없습니다"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "flake 설정의 옵션들을 검사할 수 없음"
|
msgstr "flake 설정의 옵션들을 검사할 수 없음"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: 알 수 없는 옵션 '%s'"
|
msgstr "%s: 알 수 없는 옵션 '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "도움말을 보려면 '%s --help'를 실행하십시오"
|
msgstr "도움말을 보려면 '%s --help'를 실행하십시오"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "%s 파일은 이미 존재하므로, 수정하지 않음..."
|
msgstr "%s 파일은 이미 존재하므로, 수정하지 않음..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "%s를 생성하는 중..."
|
msgstr "%s를 생성하는 중..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "최초의 홈 매니저 세대를 생성하는 중..."
|
msgstr "최초의 홈 매니저 세대를 생성하는 중..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -149,7 +140,7 @@ msgstr ""
|
||||||
"실행해서 가능한 모든 옵션을 살펴보십시오."
|
"실행해서 가능한 모든 옵션을 살펴보십시오."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -164,11 +155,11 @@ msgstr ""
|
||||||
"위 사이트에서 이슈를 생성하십시오."
|
"위 사이트에서 이슈를 생성하십시오."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "flake 설정을 인스턴스화 할 수 없음"
|
msgstr "flake 설정을 인스턴스화 할 수 없음"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -179,74 +170,74 @@ msgstr[0] ""
|
||||||
"읽지 않은 관련된 뉴스 항목들이 %d 개 있습니다.\n"
|
"읽지 않은 관련된 뉴스 항목들이 %d 개 있습니다.\n"
|
||||||
"\"%s news\" 명령어를 실행해 읽어보십시오."
|
"\"%s news\" 명령어를 실행해 읽어보십시오."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "알 수 없는 \"news.display\"의 설정 \"%s\"."
|
msgstr "알 수 없는 \"news.display\"의 설정 \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "$EDITOR 또는 $VISUAL 환경 변수를 설정하십시오"
|
msgstr "환경변수 $EDITOR를 설정하십시오"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "읽기전용 폴더에서 빌드를 실행할 수 없습니다"
|
msgstr "읽기전용 폴더에서 빌드를 실행할 수 없습니다"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "ID %s를 갖는 세대가 존재하지 않음"
|
msgstr "ID %s를 갖는 세대가 존재하지 않음"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "현재 세대인 %s를 삭제할 수 없음"
|
msgstr "현재 세대인 %s를 삭제할 수 없음"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "%s 세대를 삭제하는 중"
|
msgstr "%s 세대를 삭제하는 중"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "유효 기간이 지난 세대가 없음"
|
msgstr "유효 기간이 지난 세대가 없음"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "홈 매니저 패키지들이 설치되지 않은 것으로 보입니다."
|
msgstr "홈 매니저 패키지들이 설치되지 않은 것으로 보입니다."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "알 수 없는 매개변수 %s"
|
msgstr "알 수 없는 매개변수 %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "시스템에서 홈 매니저를 삭제할 것입니다."
|
msgstr "시스템에서 홈 매니저를 삭제할 것입니다."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "모의 실행 중으로, 아무것도 실제로 설치되지 않습니다."
|
msgstr "모의 실행 중으로, 아무것도 실제로 설치되지 않습니다."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "정말로 홈 매니저를 삭제할까요?"
|
msgstr "정말로 홈 매니저를 삭제할까요?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "빈 홈 매니저 설정으로 바꾸는 중..."
|
msgstr "빈 홈 매니저 설정으로 바꾸는 중..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "야호!"
|
msgstr "야호!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "홈 매니저는 삭제되지만 home.nix 파일은 남겨집니다."
|
msgstr "홈 매니저는 삭제되지만 home.nix 파일은 남겨집니다."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"expire-generations 명령어는 매개변수가 한 개 필요한데, %d 개가 입력되었습니"
|
"expire-generations 명령어는 매개변수가 한 개 필요한데, %d 개가 입력되었습니"
|
||||||
"다."
|
"다."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "알 수 없는 명령어: %s"
|
msgstr "알 수 없는 명령어: %s"
|
||||||
|
|
||||||
|
@ -255,10 +246,6 @@ msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"이 derivation은 빌드 할 수 없습니다. nix-shell을 이용해서 실행해 주십시오."
|
"이 derivation은 빌드 할 수 없습니다. nix-shell을 이용해서 실행해 주십시오."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "환경변수 $EDITOR를 설정하십시오"
|
|
||||||
|
|
||||||
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
||||||
#~ msgstr "죄송합니다만, 이 명령어는 아직 flake 환경에서 지원되지 않습니다"
|
#~ msgstr "죄송합니다만, 이 명령어는 아직 flake 환경에서 지원되지 않습니다"
|
||||||
|
|
||||||
|
|
|
@ -7,32 +7,28 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-02-16 22:01+0000\n"
|
"PO-Revision-Date: 2023-10-19 04:00+0000\n"
|
||||||
"Last-Translator: Robert Helgesson <robert@rycee.net>\n"
|
"Last-Translator: Yogurt <donatas.karta@gmail.com>\n"
|
||||||
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/home-manager/"
|
"Language-Team: Lithuanian <https://hosted.weblate.org/projects/home-manager/"
|
||||||
"cli/lt/>\n"
|
"cli/lt/>\n"
|
||||||
"Language: lt\n"
|
"Language: lt\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"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
"Plural-Forms: nplurals=3; plural=(n % 10 == 1 && (n % 100 < 11 || n % 100 > "
|
||||||
"(n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"19)) ? 0 : ((n % 10 >= 2 && n % 10 <= 9 && (n % 100 < 11 || n % 100 > 19)) ? "
|
||||||
"X-Generator: Weblate 5.4\n"
|
"1 : 2);\n"
|
||||||
|
"X-Generator: Weblate 5.1\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Nerastas konfigūracijos failas %s"
|
msgstr "Nerastas konfigūracijos failas %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
|
@ -41,23 +37,23 @@ msgstr ""
|
||||||
"Home Manager saugojimas %s viduje %s yra pasenes,\n"
|
"Home Manager saugojimas %s viduje %s yra pasenes,\n"
|
||||||
"prašome perkelti į %s"
|
"prašome perkelti į %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Nerastas konfigūracijos failas. Sukurkite jį adresu %s"
|
msgstr "Nerastas konfigūracijos failas. Sukurkite jį adresu %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Nerastas Home Manager šioje vietoje %s."
|
msgstr "Nerastas Home Manager šioje vietoje %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -78,42 +74,38 @@ msgid ""
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Nix tikrinamas"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Nepavyko rasti tinkamo profilio katalogo, bandyta naudoti %s ir %s"
|
msgstr "Nepavyko rasti tinkamo profilio katalogo, bandyta naudoti %s ir %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Negalima patikrinti flake konfigūracijos pasirinkimų"
|
msgstr "Negalima patikrinti flake konfigūracijos pasirinkimų"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: nežinomas pasirinkimas „%s“"
|
msgstr "%s: nežinomas pasirinkimas „%s“"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Paleiskite „%s --help“, kad gautumėte naudojimosi instrukcijas"
|
msgstr "Paleiskite „%s --help“, kad gautumėte naudojimosi instrukcijas"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Failas %s jau egzistuoja, jis paliekamas nepakeistas..."
|
msgstr "Failas %s jau egzistuoja, jis paliekamas nepakeistas..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Kuriamas %s..."
|
msgstr "Kuriamas %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Kuriama pradinė Home Manager generacija..."
|
msgstr "Kuriama pradinė Home Manager generacija..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -132,7 +124,7 @@ msgstr ""
|
||||||
"jei norite pamatyti visus pasirinkimus."
|
"jei norite pamatyti visus pasirinkimus."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -147,11 +139,11 @@ msgstr ""
|
||||||
"jei atrodo, kad klaida įvyko dėl Home Manager."
|
"jei atrodo, kad klaida įvyko dėl Home Manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Negalima sukurti pradinės flake konfigūracijos"
|
msgstr "Negalima sukurti pradinės flake konfigūracijos"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -168,73 +160,73 @@ msgstr[2] ""
|
||||||
"Yra %d neperskaitytų ir aktualių naujienų.\n"
|
"Yra %d neperskaitytų ir aktualių naujienų.\n"
|
||||||
"Perskaitykite jas paleidus komandą \"%s news\"."
|
"Perskaitykite jas paleidus komandą \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Nežinomas \"news.display\" nustatymas \"%s\"."
|
msgstr "Nežinomas \"news.display\" nustatymas \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr ""
|
msgstr "Prašome nustatyti $EDITOR aplinkos kintamąjį"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
#, fuzzy
|
#, fuzzy
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Negalima vykdyti kompiliavimo read-only kataloge"
|
msgstr "Negalima vykdyti kompiliavimo read-only kataloge"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Nėra generacijos su ID %s"
|
msgstr "Nėra generacijos su ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Negalima pašalinti esamos generacijos %s"
|
msgstr "Negalima pašalinti esamos generacijos %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Pašalinama generacija %s"
|
msgstr "Pašalinama generacija %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Nėra generacijų, kurios baigtų galioti"
|
msgstr "Nėra generacijų, kurios baigtų galioti"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Nėra instaliuotų home-manager paketų."
|
msgstr "Nėra instaliuotų home-manager paketų."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Nežinomas argumentas %s"
|
msgstr "Nežinomas argumentas %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Tai pašalins Home Manager iš jūsų sistemos."
|
msgstr "Tai pašalins Home Manager iš jūsų sistemos."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Tai bandomasis paleidimas, niekas nebus ištrinta."
|
msgstr "Tai bandomasis paleidimas, niekas nebus ištrinta."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Tikrai išdiegti Home Manager?"
|
msgstr "Tikrai išdiegti Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Perjungiama į tuščią Home Manager konfigūraciją..."
|
msgstr "Perjungiama į tuščią Home Manager konfigūraciją..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Valio!"
|
msgstr "Valio!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager yra išdiegtas, bet jūsų home.nix liko nepaliestas."
|
msgstr "Home Manager yra išdiegtas, bet jūsų home.nix liko nepaliestas."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations tikisi vieno argumento, gauta %d."
|
msgstr "expire-generations tikisi vieno argumento, gauta %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Nežinoma komanda: %s"
|
msgstr "Nežinoma komanda: %s"
|
||||||
|
|
||||||
|
@ -243,10 +235,6 @@ msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Šis darinys negali būti sukurtas, prašome jį paleisti naudojant nix-shell."
|
"Šis darinys negali būti sukurtas, prašome jį paleisti naudojant nix-shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Prašome nustatyti $EDITOR aplinkos kintamąjį"
|
|
||||||
|
|
||||||
#~ msgid "Creating initial Home Manager configuration..."
|
#~ msgid "Creating initial Home Manager configuration..."
|
||||||
#~ msgstr "Kuriama pradinė Home Manager konfigūracija..."
|
#~ msgstr "Kuriama pradinė Home Manager konfigūracija..."
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-04-02 21:38+0000\n"
|
"PO-Revision-Date: 2023-03-08 07:22+0000\n"
|
||||||
"Last-Translator: LilleAila <olai.solsvik@gmail.com>\n"
|
"Last-Translator: \"Kim A. Ødegaard\" <kim@dyktig.no>\n"
|
||||||
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/home-"
|
"Language-Team: Norwegian Bokmål <https://hosted.weblate.org/projects/home-"
|
||||||
"manager/cli/nb_NO/>\n"
|
"manager/cli/nb_NO/>\n"
|
||||||
"Language: nb_NO\n"
|
"Language: nb_NO\n"
|
||||||
|
@ -17,46 +17,38 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 4.16.2-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Fant ingen oppsettsfil i %s"
|
msgstr "Fant ingen oppsettsfil i %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
#, fuzzy
|
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Å holde Home Manager %s i %s er avviklet,\n"
|
|
||||||
"vennligst flytt det til %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Fant ikke noen oppsettsfil. Opprett en i %s"
|
msgstr "Fant ikke noen oppsettsfil. Opprett en i %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager var ikke funnet på %s."
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -77,43 +69,38 @@ msgid ""
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Kontrollerer at Nix fungerer"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Kunne ikke finne en passende profilmappe, prøvde %s og %s"
|
msgstr ""
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Kan ikke inspisere alternativer for et flake-oppsett"
|
msgstr "Kan ikke inspisere alternativer for et flake-oppsett"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: ukjent alternativ «%s»"
|
msgstr "%s: ukjent alternativ «%s»"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Kjør «%s --help» for brukshjelp"
|
msgstr "Kjør «%s --help» for brukshjelp"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
#, fuzzy
|
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Filen %s eksisterer fra før, lar den være uendret..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Lager %s..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Oppretter ny Home Manager-generasjon..."
|
msgstr "Oppretter ny Home Manager-generasjon..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -130,7 +117,7 @@ msgstr ""
|
||||||
"se alle tilgjengelige innstillinger."
|
"se alle tilgjengelige innstillinger."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -145,11 +132,11 @@ msgstr ""
|
||||||
"hvis du tror feilen er forårsaket av Home Manager."
|
"hvis du tror feilen er forårsaket av Home Manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Kan ikke igangsette flak-oppsett"
|
msgstr "Kan ikke igangsette flak-oppsett"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -163,72 +150,72 @@ msgstr[1] ""
|
||||||
"Det er %d uleste og relevante nyhetssaker.\n"
|
"Det er %d uleste og relevante nyhetssaker.\n"
|
||||||
"Les dem ved å kjøre kommandoen «%s news»."
|
"Les dem ved å kjøre kommandoen «%s news»."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Ukjent «news.display»-innstilling «%s»."
|
msgstr "Ukjent «news.display»-innstilling «%s»."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr ""
|
msgstr "Sett «$EDITOR»-miljøvariabelen"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Kan ikke kjøre bygg i skrivebeskyttet mappe"
|
msgstr "Kan ikke kjøre bygg i skrivebeskyttet mappe"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Ingen generering med ID-en %s"
|
msgstr "Ingen generering med ID-en %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Kan ikke fjerne nåværende generering %s"
|
msgstr "Kan ikke fjerne nåværende generering %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Fjerner generering %s"
|
msgstr "Fjerner generering %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Ingen genereringer til utløp"
|
msgstr "Ingen genereringer til utløp"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Ingen «home-manager»-pakker ser ut til å være installert."
|
msgstr "Ingen «home-manager»-pakker ser ut til å være installert."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Ukjent parameter %s"
|
msgstr "Ukjent parameter %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Dette vil fjerne Home Manager fra systemet ditt."
|
msgstr "Dette vil fjerne Home Manager fra systemet ditt."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Dette er en testkjøring. Ingenting vil bli avinstallert."
|
msgstr "Dette er en testkjøring. Ingenting vil bli avinstallert."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Vil du avinstallere Home Manager?"
|
msgstr "Vil du avinstallere Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Bytter til tomt Home Manager-oppsett …"
|
msgstr "Bytter til tomt Home Manager-oppsett …"
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Hurra!"
|
msgstr "Hurra!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager er avinstallert, men din home.nix er levnet uforandret."
|
msgstr "Home Manager er avinstallert, men din home.nix er levnet uforandret."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "«expire-generations» forventet ett argument, mottok %d."
|
msgstr "«expire-generations» forventet ett argument, mottok %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Ukjent kommando: %s"
|
msgstr "Ukjent kommando: %s"
|
||||||
|
|
||||||
|
@ -236,10 +223,6 @@ msgstr "Ukjent kommando: %s"
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr "Denne avledningen kan ikke bygges, vennligst kjør den i nix-shell."
|
msgstr "Denne avledningen kan ikke bygges, vennligst kjør den i nix-shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Sett «$EDITOR»-miljøvariabelen"
|
|
||||||
|
|
||||||
#~ msgid "Creating initial Home Manager configuration..."
|
#~ msgid "Creating initial Home Manager configuration..."
|
||||||
#~ msgstr "Oppretter ny Home Manager-konfigurasjon..."
|
#~ msgstr "Oppretter ny Home Manager-konfigurasjon..."
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-02-16 22:01+0000\n"
|
"PO-Revision-Date: 2023-04-10 11:48+0000\n"
|
||||||
"Last-Translator: Robert Helgesson <robert@rycee.net>\n"
|
"Last-Translator: Pablo Bollansee <pablo.bollansee@gmail.com>\n"
|
||||||
"Language-Team: Dutch <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: Dutch <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"nl/>\n"
|
"nl/>\n"
|
||||||
"Language: nl\n"
|
"Language: nl\n"
|
||||||
|
@ -17,21 +17,16 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.4\n"
|
"X-Generator: Weblate 4.17-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Geen configuratiebestand gevonden op %s"
|
msgstr "Geen configuratiebestand gevonden op %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,23 +34,23 @@ msgstr ""
|
||||||
"Je Home Manager %s bestand opslaan in %s is niet langer ondersteund,\n"
|
"Je Home Manager %s bestand opslaan in %s is niet langer ondersteund,\n"
|
||||||
"gelieve het te verplaatsen naar %s"
|
"gelieve het te verplaatsen naar %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Geen configuratiebestand gevonden, maak er alstublieft een aan op %s"
|
msgstr "Geen configuratiebestand gevonden, maak er alstublieft een aan op %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -76,42 +71,38 @@ msgid ""
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Nix aan het sanity checken"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Kan geen geschikte map vinden voor het profiel, %s en %s geprobeerd"
|
msgstr ""
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Kan de opties van een flake configuratie niet inspecteren"
|
msgstr "Kan de opties van een flake configuratie niet inspecteren"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: onbekende keuze '%s'"
|
msgstr "%s: onbekende keuze '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Voer '%s --help' in om gebruiksinfo te zien"
|
msgstr "Voer '%s --help' in om gebruiksinfo te zien"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Het bestand %s bestaat al, het zal niet aangepast worden..."
|
msgstr "Het bestand %s bestaat al, het zal niet aangepast worden..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "%s aan het aanmaken..."
|
msgstr "%s aan het aanmaken..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Initiële Home Manager generatie aan het maken..."
|
msgstr "Initiële Home Manager generatie aan het maken..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -130,7 +121,7 @@ msgstr ""
|
||||||
"alle opties te zien."
|
"alle opties te zien."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -145,11 +136,11 @@ msgstr ""
|
||||||
"als de error de schuld van Home Manager lijkt te zijn."
|
"als de error de schuld van Home Manager lijkt te zijn."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Het is niet gelukt om de flake-configuratie te creëren"
|
msgstr "Het is niet gelukt om de flake-configuratie te creëren"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -163,72 +154,72 @@ msgstr[1] ""
|
||||||
"Er zijn %d ongelezen and relevante nieuws artikelen.\n"
|
"Er zijn %d ongelezen and relevante nieuws artikelen.\n"
|
||||||
"Lees ze door het commando \"%s news\" uit te voeren."
|
"Lees ze door het commando \"%s news\" uit te voeren."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Onbekende \"new.display\" instelling \"%s\"."
|
msgstr "Onbekende \"new.display\" instelling \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr ""
|
msgstr "Gelieve de $EDITOR omgevingsvariabele in te stellen"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Het is niet mogelijk om te bouwen in een read-only map"
|
msgstr "Het is niet mogelijk om te bouwen in een read-only map"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Geen generatie met de ID %s"
|
msgstr "Geen generatie met de ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Het is niet mogelijk om de huidige generatie %s te verwijderen"
|
msgstr "Het is niet mogelijk om de huidige generatie %s te verwijderen"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Generatie %s aan het verwijderen"
|
msgstr "Generatie %s aan het verwijderen"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Geen generatie om te beëindigen"
|
msgstr "Geen generatie om te beëindigen"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Er lijkt geen home-manager pakket geïnstalleerd te zijn."
|
msgstr "Er lijkt geen home-manager pakket geïnstalleerd te zijn."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Onbekend argument %s"
|
msgstr "Onbekend argument %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Dit zal Home Manager van jouw systeem verwijderen."
|
msgstr "Dit zal Home Manager van jouw systeem verwijderen."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Dit is een oefening, niets wordt werkelijk geïnstalleerd."
|
msgstr "Dit is een oefening, niets wordt werkelijk geïnstalleerd."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Wilt u zeker Home Manager verwijderen?"
|
msgstr "Wilt u zeker Home Manager verwijderen?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Naar een lege Home Manager configuratie aan het veranderen..."
|
msgstr "Naar een lege Home Manager configuratie aan het veranderen..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Joepie!"
|
msgstr "Joepie!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager is verwijdert maar jouw home.nix is onaangeraakt."
|
msgstr "Home Manager is verwijdert maar jouw home.nix is onaangeraakt."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations verwacht één argument, maar kreeg er %d."
|
msgstr "expire-generations verwacht één argument, maar kreeg er %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Onbekende opdracht: %s"
|
msgstr "Onbekende opdracht: %s"
|
||||||
|
|
||||||
|
@ -238,10 +229,6 @@ msgstr ""
|
||||||
"Deze afleiding kan niet gebouwd worden, voer het alstublieft uit met nix-"
|
"Deze afleiding kan niet gebouwd worden, voer het alstublieft uit met nix-"
|
||||||
"shell."
|
"shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Gelieve de $EDITOR omgevingsvariabele in te stellen"
|
|
||||||
|
|
||||||
#~ msgid "Creating initial Home Manager configuration..."
|
#~ msgid "Creating initial Home Manager configuration..."
|
||||||
#~ msgstr "Initiële Home Manager configuratie aan het maken..."
|
#~ msgstr "Initiële Home Manager configuratie aan het maken..."
|
||||||
|
|
||||||
|
|
|
@ -7,32 +7,27 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-06-17 09:46+0000\n"
|
"PO-Revision-Date: 2023-08-30 13:45+0000\n"
|
||||||
"Last-Translator: Mateusz P <medan1993@gmail.com>\n"
|
"Last-Translator: Marcin Kaczorek <hostedweblateorgmk@karek.pl>\n"
|
||||||
"Language-Team: Polish <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: Polish <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"pl/>\n"
|
"pl/>\n"
|
||||||
"Language: pl\n"
|
"Language: pl\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"
|
||||||
"Plural-Forms: nplurals=3; plural=(n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : n%10>=2 && n%10<=4 && (n%100<10 "
|
||||||
"|| n%100>=20) ? 1 : 2);\n"
|
"|| n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 5.6-dev\n"
|
"X-Generator: Weblate 5.0.1-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: brakuje wartości dla %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Nie znaleziono pliku konfiguracyjnego %s"
|
msgstr "Nie znaleziono pliku konfiguracyjnego %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -40,16 +35,16 @@ msgstr ""
|
||||||
"Przechowywanie %s Home Managera w %s jest przestarzałe,\n"
|
"Przechowywanie %s Home Managera w %s jest przestarzałe,\n"
|
||||||
"proszę przenieść go do %s"
|
"proszę przenieść go do %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Nie znaleziono pliku konfiguracyjnego. Proszę utworzyć plik %s"
|
msgstr "Nie znaleziono pliku konfiguracyjnego. Proszę utworzyć plik %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager nie znaleziony w %s."
|
msgstr "Home Manager nie znaleziony w %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
|
@ -58,7 +53,7 @@ msgstr ""
|
||||||
"katalog."
|
"katalog."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -98,42 +93,38 @@ msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Sprawdzanie poprawności Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Nie można znaleźć odpowiedniego katalogu profilu, próbowano %s i %s"
|
msgstr "Nie można znaleźć odpowiedniego katalogu profilu, próbowano %s i %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Nie mogę sprawdzić konfiguracji flake'a"
|
msgstr "Nie mogę sprawdzić konfiguracji flake'a"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: nieznana opcja „%s”"
|
msgstr "%s: nieznana opcja „%s”"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Uruchom „%s --help” by otrzymać pomoc"
|
msgstr "Uruchom „%s --help” by otrzymać pomoc"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Plik %s już istnieje, pozostawianie go bez zmian..."
|
msgstr "Plik %s już istnieje, pozostawianie go bez zmian..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Tworzenie %s..."
|
msgstr "Tworzenie %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Tworzenie pierwotnej generacji Home Managera..."
|
msgstr "Tworzenie pierwotnej generacji Home Managera..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -151,7 +142,7 @@ msgstr ""
|
||||||
"sprawdzić wszystkie możliwe opcje konfiguracyjne."
|
"sprawdzić wszystkie możliwe opcje konfiguracyjne."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -166,11 +157,11 @@ msgstr ""
|
||||||
"jeśli myślisz, że problem spowodowany jest przez błąd Home Managera."
|
"jeśli myślisz, że problem spowodowany jest przez błąd Home Managera."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Nie mogę utworzyć instancji konfiguracji flake'a"
|
msgstr "Nie mogę utworzyć instancji konfiguracji flake'a"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -187,73 +178,73 @@ msgstr[2] ""
|
||||||
"Jest %d nieodczytanych wiadomości.\n"
|
"Jest %d nieodczytanych wiadomości.\n"
|
||||||
"Możesz je odczytać uruchamiając „%s news”."
|
"Możesz je odczytać uruchamiając „%s news”."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Nieznane ustawienie „%s” „news.display”."
|
msgstr "Nieznane ustawienie „%s” „news.display”."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Proszę ustawić zmienną środowiskową $EDITOR lub $VISUAL"
|
msgstr "Proszę ustawić zmienną środowiskową $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Nie mogę uruchomić budowania w katalogu tylko-do-odczytu"
|
msgstr "Nie mogę uruchomić budowania w katalogu tylko-do-odczytu"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Brak generacji z ID %s"
|
msgstr "Brak generacji z ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Nie mogę usunąć bieżącej generacji %s"
|
msgstr "Nie mogę usunąć bieżącej generacji %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Usuwanie generacji %s"
|
msgstr "Usuwanie generacji %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Brak wygasających generacji"
|
msgstr "Brak wygasających generacji"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Pakiety home-manager nie wydają się być zainstalowane."
|
msgstr "Pakiety home-manager nie wydają się być zainstalowane."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Nieznany argument %s"
|
msgstr "Nieznany argument %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "To usunie Home Managera z twojego systemu."
|
msgstr "To usunie Home Managera z twojego systemu."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "To jest próba, faktycznie nic nie będzie usunięte."
|
msgstr "To jest próba, faktycznie nic nie będzie usunięte."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Jesteś pewien usunięcia Home Managera?"
|
msgstr "Jesteś pewien usunięcia Home Managera?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Przełączanie do pustej konfiguracji Home Managera..."
|
msgstr "Przełączanie do pustej konfiguracji Home Managera..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Jej!"
|
msgstr "Jej!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Home Manager jest usunięty ale twój home.nix jest pozostawiony nietknięty."
|
"Home Manager jest usunięty ale twój home.nix jest pozostawiony nietknięty."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations oczekuje jednego argumentu, otrzymano %d."
|
msgstr "expire-generations oczekuje jednego argumentu, otrzymano %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Nieznana komenda: %s"
|
msgstr "Nieznana komenda: %s"
|
||||||
|
|
||||||
|
@ -262,10 +253,6 @@ msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Ta paczka (derivation) nie da się budować, proszę uruchom używając nix-shell."
|
"Ta paczka (derivation) nie da się budować, proszę uruchom używając nix-shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Proszę ustawić zmienną środowiskową $EDITOR"
|
|
||||||
|
|
||||||
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Przepraszamy, ta komenda nie jest jeszcze obsługiwana w konfiguracji flake"
|
#~ "Przepraszamy, ta komenda nie jest jeszcze obsługiwana w konfiguracji flake"
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-04-19 17:07+0000\n"
|
"PO-Revision-Date: 2023-10-19 04:00+0000\n"
|
||||||
"Last-Translator: Felipe Silva <hey@felipeqq2.rocks>\n"
|
"Last-Translator: SrGesus <gabriel.fcf04@gmail.com>\n"
|
||||||
"Language-Team: Portuguese <https://hosted.weblate.org/projects/home-manager/"
|
"Language-Team: Portuguese <https://hosted.weblate.org/projects/home-manager/"
|
||||||
"cli/pt/>\n"
|
"cli/pt/>\n"
|
||||||
"Language: pt\n"
|
"Language: pt\n"
|
||||||
|
@ -17,21 +17,16 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 5.1\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: faltando argumento para %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Nenhum ficheiro de configuração encontrado em %s"
|
msgstr "Nenhum ficheiro de configuração encontrado em %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,25 +34,23 @@ msgstr ""
|
||||||
"Manter o %s do seu Home Manager em %s já não é suportado,\n"
|
"Manter o %s do seu Home Manager em %s já não é suportado,\n"
|
||||||
"por favor mova-o para %s"
|
"por favor mova-o para %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Ficheiro de configuração não encontrado. Por favor crie um em %s"
|
msgstr "Ficheiro de configuração não encontrado. Por favor crie um em %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager não foi encontrado em %s."
|
msgstr "Home Manager não foi encontrado em %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"O caminho alternativo do Home Manager %s foi depreciado e um arquivo/"
|
|
||||||
"diretório foi encontrado lá."
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -77,63 +70,41 @@ msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Para remover este aviso, faça o seguinte.\n"
|
|
||||||
"\n"
|
|
||||||
"1. Instrua o Home Manager para usar o caminho, por exemplo, adicionando\n"
|
|
||||||
"\n"
|
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" em sua configuração.\n"
|
|
||||||
"\n"
|
|
||||||
" Se você importa o Home Manager diretamente, você pode usar o parâmetro "
|
|
||||||
"`path`\n"
|
|
||||||
"\n"
|
|
||||||
" pkgs.callPackage /path/to/home-manager-package { path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" quando chamar o pacote do Home Manager.\n"
|
|
||||||
"\n"
|
|
||||||
"2. Remova o caminho depreciado.\n"
|
|
||||||
"\n"
|
|
||||||
" $ rm -r \"%s\""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Revalidando Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Não foi possível encontrar uma diretoria de perfil apropriada, foi tentado "
|
"Não foi possível encontrar uma diretoria de perfil apropriada, foi tentado "
|
||||||
"%s e %s"
|
"%s e %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Não é possivel inspecionar a opção de configuração do flake"
|
msgstr "Não é possivel inspecionar a opção de configuração do flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: opção não reconhecida '%s'"
|
msgstr "%s: opção não reconhecida '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Execute '%s --help' para instruções de uso"
|
msgstr "Execute '%s --help' para instruções de uso"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "O arquivo %s já existe, deixando do jeito que está..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Criando %s..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Criando a geração inicial do Home Manager..."
|
msgstr "Criando a geração inicial do Home Manager..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -150,7 +121,7 @@ msgstr ""
|
||||||
"ver todas as opções disponíveis."
|
"ver todas as opções disponíveis."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -165,11 +136,11 @@ msgstr ""
|
||||||
"se o erro lhe parecer ser um problema do Home Manager."
|
"se o erro lhe parecer ser um problema do Home Manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Não foi possível instanciar a configuração de flake"
|
msgstr "Não foi possível instanciar a configuração de flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -183,72 +154,72 @@ msgstr[1] ""
|
||||||
"Há %d novos itens relevants não lidos\n"
|
"Há %d novos itens relevants não lidos\n"
|
||||||
"Leia executando o comando \"%s news\"."
|
"Leia executando o comando \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Valor \"%s\" para configuração \"news.display\" não reconhecido."
|
msgstr "Valor \"%s\" para configuração \"news.display\" não reconhecido."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Por favor, defina a variável de ambiente $EDITOR ou $VISUAL"
|
msgstr "Por favor defina a variável de ambiente $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Não é possível fazer o build num diretório somente leitura"
|
msgstr "Não é possível fazer o build num diretório somente leitura"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Nenhuma geração com ID %s"
|
msgstr "Nenhuma geração com ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Não foi possível remover a geração atual %s"
|
msgstr "Não foi possível remover a geração atual %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "A remover a geração %s"
|
msgstr "A remover a geração %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Nenhuma geração a expirar"
|
msgstr "Nenhuma geração a expirar"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Nenhum pacote parece instalado com home-manager."
|
msgstr "Nenhum pacote parece instalado com home-manager."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Argumento desconhecido %s"
|
msgstr "Argumento desconhecido %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Isto irá remover o Home Manager do seu sistema."
|
msgstr "Isto irá remover o Home Manager do seu sistema."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Essa é uma execução de teste, nada de fato será desinstalado."
|
msgstr "Essa é uma execução de teste, nada de fato será desinstalado."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Confirma a desinstalação do Home Manager?"
|
msgstr "Confirma a desinstalação do Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Trocando para configuração vazia do Home Manager..."
|
msgstr "Trocando para configuração vazia do Home Manager..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Boa!"
|
msgstr "Boa!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager foi desinstalado, mas o seu home.nix foi deixado intacto."
|
msgstr "Home Manager foi desinstalado, mas o seu home.nix foi deixado intacto."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations espera um argumento, recebeu %d."
|
msgstr "expire-generations espera um argumento, recebeu %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Comando não reconhecido: %s"
|
msgstr "Comando não reconhecido: %s"
|
||||||
|
|
||||||
|
@ -258,10 +229,6 @@ msgstr ""
|
||||||
"O build dessa derivation não pode ser feito, por favor rode usando o nix-"
|
"O build dessa derivation não pode ser feito, por favor rode usando o nix-"
|
||||||
"shell."
|
"shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Por favor defina a variável de ambiente $EDITOR"
|
|
||||||
|
|
||||||
#~ msgid "Creating initial Home Manager configuration..."
|
#~ msgid "Creating initial Home Manager configuration..."
|
||||||
#~ msgstr "Criando a configuração inicial do Home Manager..."
|
#~ msgstr "Criando a configuração inicial do Home Manager..."
|
||||||
|
|
||||||
|
|
|
@ -7,31 +7,26 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-04-19 17:07+0000\n"
|
"PO-Revision-Date: 2023-08-11 19:50+0000\n"
|
||||||
"Last-Translator: Felipe Silva <hey@felipeqq2.rocks>\n"
|
"Last-Translator: Gabriel Grysuk <gabrielgrysuk@gmail.com>\n"
|
||||||
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/"
|
"Language-Team: Portuguese (Brazil) <https://hosted.weblate.org/projects/home-"
|
||||||
"home-manager/cli/pt_BR/>\n"
|
"manager/cli/pt_BR/>\n"
|
||||||
"Language: pt_BR\n"
|
"Language: pt_BR\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"
|
||||||
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
"Plural-Forms: nplurals=2; plural=n > 1;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 5.0-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: faltando argumento para %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Nenhum arquivo de configuração encontrado no %s"
|
msgstr "Nenhum arquivo de configuração encontrado no %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,25 +34,23 @@ msgstr ""
|
||||||
"Manter seu Home Manager %s em %s foi descontinuado,\n"
|
"Manter seu Home Manager %s em %s foi descontinuado,\n"
|
||||||
"por favor mova-o para %s"
|
"por favor mova-o para %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Arquivo de configuração não encontrado. Por favor crie um em %s"
|
msgstr "Arquivo de configuração não encontrado. Por favor crie um em %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager não encontrado em %s."
|
msgstr "Home Manager não encontrado em %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"O caminho alternativo do Home Manager, %s, foi descontinuado, mas existe "
|
|
||||||
"algum arquivo/diretório nele."
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -77,63 +70,39 @@ msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Para remover esse aviso, faça um dos seguintes.\n"
|
|
||||||
"\n"
|
|
||||||
"1. Explicitamente diga para o Home Manager usar esse caminho, por exemplo, "
|
|
||||||
"adicionando\n"
|
|
||||||
"\n"
|
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" à sua configuração.\n"
|
|
||||||
"\n"
|
|
||||||
" Se você importa o Home Manager diretamente, você pode usar o parâmetro "
|
|
||||||
"`path`\n"
|
|
||||||
"\n"
|
|
||||||
" pkgs.callPackage /caminho/do/pacote-home-manager { path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" ao chamar o pacote do Home Manager.\n"
|
|
||||||
"\n"
|
|
||||||
"2. Apague o caminho descontinuado.\n"
|
|
||||||
"\n"
|
|
||||||
" $ rm -r \"%s\""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Revalidando Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Não foi possível encontrar um diretório de perfil apropriado, tentou %s e %s"
|
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Não é possivel inspecionar a opção de configuração do flake"
|
msgstr "Não é possivel inspecionar a opção de configuração do flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: opção não reconhecida '%s'"
|
msgstr "%s: opção não reconhecida '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Execute '%s --help' para instruções de uso"
|
msgstr "Execute '%s --help' para instruções de uso"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "O arquivo %s já existe, mantendo ele sem modificações..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Criando %s..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Criando a geração inicial do Home Manager..."
|
msgstr "Criando a geração inicial do Home Manager..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -151,7 +120,7 @@ msgstr ""
|
||||||
"ver todas as opções disponíveis."
|
"ver todas as opções disponíveis."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -166,11 +135,11 @@ msgstr ""
|
||||||
"se o erro lhe parecer ser um problema do Home Manager."
|
"se o erro lhe parecer ser um problema do Home Manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Não foi possível instanciar a configuração de flake"
|
msgstr "Não foi possível instanciar a configuração de flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -184,72 +153,72 @@ msgstr[1] ""
|
||||||
"Há %d novos itens relevants não lidos\n"
|
"Há %d novos itens relevants não lidos\n"
|
||||||
"Leia executando o comando \"%s news\"."
|
"Leia executando o comando \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Valor \"%s\" para configuração \"news.display\" não reconhecido."
|
msgstr "Valor \"%s\" para configuração \"news.display\" não reconhecido."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Por favor, defina a variável de ambiente $EDITOR ou $VISUAL"
|
msgstr "Por favor defina a variável de ambiente $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Não é possível fazer o build em um diretório somente leitura"
|
msgstr "Não é possível fazer o build em um diretório somente leitura"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Nenhuma geração com ID %s"
|
msgstr "Nenhuma geração com ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Não foi possível remover a geração atual %s"
|
msgstr "Não foi possível remover a geração atual %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Removendo geração %s"
|
msgstr "Removendo geração %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Nenhuma geração a expirar"
|
msgstr "Nenhuma geração a expirar"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Nenhum pacote parece instalado com home-manager."
|
msgstr "Nenhum pacote parece instalado com home-manager."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Argumento desconhecido %s"
|
msgstr "Argumento desconhecido %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Isso irá remover o Home Manager do seu sistema."
|
msgstr "Isso irá remover o Home Manager do seu sistema."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Essa é uma execução de teste, nada de fato será desinstalado."
|
msgstr "Essa é uma execução de teste, nada de fato será desinstalado."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Confirma a desinstalação do Home Manager?"
|
msgstr "Confirma a desinstalação do Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Trocando para configuração vazia do Home Manager..."
|
msgstr "Trocando para configuração vazia do Home Manager..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Boa!"
|
msgstr "Boa!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager foi desinstalado, mas o seu home.nix foi deixado intacto."
|
msgstr "Home Manager foi desinstalado, mas o seu home.nix foi deixado intacto."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations espera um argumento, recebeu %d."
|
msgstr "expire-generations espera um argumento, recebeu %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Comando não reconhecido: %s"
|
msgstr "Comando não reconhecido: %s"
|
||||||
|
|
||||||
|
@ -259,10 +228,6 @@ msgstr ""
|
||||||
"O build dessa derivation não pode ser feito, por favor rode usando o nix-"
|
"O build dessa derivation não pode ser feito, por favor rode usando o nix-"
|
||||||
"shell."
|
"shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Por favor defina a variável de ambiente $EDITOR"
|
|
||||||
|
|
||||||
#~ msgid "Creating initial Home Manager configuration..."
|
#~ msgid "Creating initial Home Manager configuration..."
|
||||||
#~ msgstr "Criando a configuração inicial do Home Manager..."
|
#~ msgstr "Criando a configuração inicial do Home Manager..."
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-03-31 22:01+0000\n"
|
"PO-Revision-Date: 2023-08-11 19:50+0000\n"
|
||||||
"Last-Translator: SMFloris <floris.sm@gmail.com>\n"
|
"Last-Translator: HeartBlin913861820c094e37 <heartblin@proton.me>\n"
|
||||||
"Language-Team: Romanian <https://hosted.weblate.org/projects/home-manager/"
|
"Language-Team: Romanian <https://hosted.weblate.org/projects/home-manager/"
|
||||||
"cli/ro/>\n"
|
"cli/ro/>\n"
|
||||||
"Language: ro\n"
|
"Language: ro\n"
|
||||||
|
@ -18,21 +18,16 @@ msgstr ""
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
"Content-Transfer-Encoding: 8bit\n"
|
||||||
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
"Plural-Forms: nplurals=3; plural=n==1 ? 0 : (n==0 || (n%100 > 0 && n%100 < "
|
||||||
"20)) ? 1 : 2;\n"
|
"20)) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 5.0-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Nu s-a găsit niciun fișier de configurare la locația %s"
|
msgstr "Nu s-a găsit niciun fișier de configurare la locația %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -40,17 +35,17 @@ msgstr ""
|
||||||
"Păstrarea Home Managerului %s în $s e depreciat,\n"
|
"Păstrarea Home Managerului %s în $s e depreciat,\n"
|
||||||
"vă rugăm să îl mutați în %s"
|
"vă rugăm să îl mutați în %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nu s-a găsit niciun fișier de configurare. Vă rugăm să creați unul la %s"
|
"Nu s-a găsit niciun fișier de configurare. Vă rugăm să creați unul la %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager nu a putut fi găsit la locația %s."
|
msgstr "Home Manager nu a putut fi găsit la locația %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
|
@ -59,7 +54,7 @@ msgstr ""
|
||||||
"un fișier/director acolo."
|
"un fișier/director acolo."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -98,43 +93,39 @@ msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Se verifică corectitudinea Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Nu s-a putut găsi un director cu un profil potrivit, s-a încercat %s și %s"
|
"Nu s-a putut găsi un director cu un profil potrivit, s-a încercat %s și %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Nu se pot inspecta opțiunile unei configurații flake"
|
msgstr "Nu se pot inspecta opțiunile unei configurații flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: opțiune necunoscută '%s'"
|
msgstr "%s: opțiune necunoscută '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Rulați '%s --help' pentru ajutor de utilizare"
|
msgstr "Rulați '%s --help' pentru ajutor de utilizare"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Fișierul %s există deja, îl lăsăm neschimbat..."
|
msgstr "Fișierul %s există deja, îl lăsăm neschimbat..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Creând %s..."
|
msgstr "Creând %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Se creează generația Home Manager inițială..."
|
msgstr "Se creează generația Home Manager inițială..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -153,7 +144,7 @@ msgstr ""
|
||||||
"putea vedea toate opțiunile."
|
"putea vedea toate opțiunile."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -168,11 +159,11 @@ msgstr ""
|
||||||
"dacă eroarea pare să fie din vina Home manager."
|
"dacă eroarea pare să fie din vina Home manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Nu se poate instanția o configurare flake"
|
msgstr "Nu se poate instanția o configurare flake"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -189,73 +180,73 @@ msgstr[2] ""
|
||||||
"Există %d de știri necitite și relevante.\n"
|
"Există %d de știri necitite și relevante.\n"
|
||||||
"Citiți-le folosind comanda \"%s news\"."
|
"Citiți-le folosind comanda \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Opțiunea \"news.display\" este necunoscută \"%s\"."
|
msgstr "Opțiunea \"news.display\" este necunoscută \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Rugăm să setați variabila $EDITOR sau $VISUAL în variabilele de mediu"
|
msgstr "Vă rugăm să setați variabila de mediu $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Nu se poate rula construirea într-un director numai pentru citire"
|
msgstr "Nu se poate rula construirea într-un director numai pentru citire"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Nicio generație cu ID-ul %s"
|
msgstr "Nicio generație cu ID-ul %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Nu se poate șterge generația curentă %s"
|
msgstr "Nu se poate șterge generația curentă %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Se șterge generația %s"
|
msgstr "Se șterge generația %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Nu există generații care să expire"
|
msgstr "Nu există generații care să expire"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Nu există instalat niciun pachet home-manager."
|
msgstr "Nu există instalat niciun pachet home-manager."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Argument necunoscut %s"
|
msgstr "Argument necunoscut %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Aceasta v-a înlătura Home Manager din sistemul dumneavoastră."
|
msgstr "Aceasta v-a înlătura Home Manager din sistemul dumneavoastră."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Aceasta este o rulare de test, nimic nu v-a fi dezinstalat."
|
msgstr "Aceasta este o rulare de test, nimic nu v-a fi dezinstalat."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Doriți cu adevărat să dezinstalați Home Manager?"
|
msgstr "Doriți cu adevărat să dezinstalați Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Se trece la o configurare Home Manager goală..."
|
msgstr "Se trece la o configurare Home Manager goală..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Ura!"
|
msgstr "Ura!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Home Manager a fost dezinstalat, dar fișierul home.nix a rămas neatins."
|
"Home Manager a fost dezinstalat, dar fișierul home.nix a rămas neatins."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations se așteaptă la un argument, a primit %d."
|
msgstr "expire-generations se așteaptă la un argument, a primit %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Comandă necunoscută: %s"
|
msgstr "Comandă necunoscută: %s"
|
||||||
|
|
||||||
|
@ -264,7 +255,3 @@ msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Această derivație nu poate fi construită, vă rugăm să o rulați folosind nix-"
|
"Această derivație nu poate fi construită, vă rugăm să o rulați folosind nix-"
|
||||||
"shell."
|
"shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Vă rugăm să setați variabila de mediu $EDITOR"
|
|
||||||
|
|
|
@ -7,58 +7,49 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-03-31 22:01+0000\n"
|
"PO-Revision-Date: 2023-06-07 12:51+0000\n"
|
||||||
"Last-Translator: Petr Portnov | PROgrm_JARvis <mrJARVIScraft@gmail.com>\n"
|
"Last-Translator: Nikolay Mokrinsky <me@mokrinsky.ru>\n"
|
||||||
"Language-Team: Russian <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: Russian <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"ru/>\n"
|
"ru/>\n"
|
||||||
"Language: ru\n"
|
"Language: ru\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"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 4.18-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Не найден файл конфигурации в %s"
|
msgstr "Не найден файл конфигурации в %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Файл %s вашего Home Manager находится в устаревшем месте %s\n"
|
|
||||||
"пожалуйста, переместите его в %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Не найден файл конфигурации. Пожалуйста, создайте его в %s"
|
msgstr "Не найден файл конфигурации. Пожалуйста, создайте его в %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager не был найден в %s."
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Резервный путь Home Manager %s считается устаревшим, но в нём был найден "
|
|
||||||
"файл или папка."
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -78,61 +69,39 @@ msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Чтобы убрать это предупреждение, совершите один из шагов, приведённых ниже.\n"
|
|
||||||
"\n"
|
|
||||||
"1. Явно заставьте Home Manager использовать путь, например добавив\n"
|
|
||||||
"\n"
|
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" в ваш файл конфигурации.\n"
|
|
||||||
"\n"
|
|
||||||
" Если вы импортируете Home Manager напрямую, то вы можете использовать "
|
|
||||||
"параметр `path`\n"
|
|
||||||
"\n"
|
|
||||||
" pkgs.callPackage /path/to/home-manager-package { path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" когда вызываете пакет Home Manager\n"
|
|
||||||
"\n"
|
|
||||||
"2. Удалите устаревший путь.\n"
|
|
||||||
"\n"
|
|
||||||
" $ rm -r \"%s\""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Проверка работоспособности Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Не найдена подходящая директория профиля, пробовали %s и %s"
|
msgstr "Не найдена подходящая директория профиля, пробовали %s и %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Не могу получить опции для flake-конфигурации"
|
msgstr "Не могу получить опции для flake-конфигурации"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: неизвестная опция '%s'"
|
msgstr "%s: неизвестная опция '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Выполните '%s --help', чтобы получить справку"
|
msgstr "Выполните '%s --help', чтобы получить справку"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Файл %s уже существует и не будет изменен..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Создание %s..."
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Создаю начальное поколение Home Manager..."
|
msgstr "Создаю начальное поколение Home Manager..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -149,7 +118,7 @@ msgstr ""
|
||||||
"Выполните 'man home-configuration.nix', чтобы увидеть доступные опции."
|
"Выполните 'man home-configuration.nix', чтобы увидеть доступные опции."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -164,11 +133,11 @@ msgstr ""
|
||||||
"если считаете, что в ошибке виноват Home Manager."
|
"если считаете, что в ошибке виноват Home Manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Не могу создать экземляр для flake-конфигурации"
|
msgstr "Не могу создать экземляр для flake-конфигурации"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -185,72 +154,72 @@ msgstr[2] ""
|
||||||
"У вас есть %d непрочитанных и релевантных новостей.\n"
|
"У вас есть %d непрочитанных и релевантных новостей.\n"
|
||||||
"Прочтите их, выполнив команду \"%s news\"."
|
"Прочтите их, выполнив команду \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Неизвестное значение \"news.display\": \"%s\"."
|
msgstr "Неизвестное значение \"news.display\": \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Пожалуйста, установите переменную среды $EDITOR или $VISUAL"
|
msgstr "Пожалуйста, определите переменную среды $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Не могу начать сборку в директории, защищённой от записи"
|
msgstr "Не могу начать сборку в директории, защищённой от записи"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Поколение под номером %s не существует"
|
msgstr "Поколение под номером %s не существует"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Не могу удалить текущее поколение %s"
|
msgstr "Не могу удалить текущее поколение %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Удаляю поколение %s"
|
msgstr "Удаляю поколение %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Нет поколений, которые можно просрочить"
|
msgstr "Нет поколений, которые можно просрочить"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Не обнаружено пакетов, установленных через home-manager."
|
msgstr "Не обнаружено пакетов, установленных через home-manager."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Неизвестный аргумент %s"
|
msgstr "Неизвестный аргумент %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Это удалит Home Manager из вашей системы."
|
msgstr "Это удалит Home Manager из вашей системы."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Это пробный запуск, на самом деле ничего не удаляется."
|
msgstr "Это пробный запуск, на самом деле ничего не удаляется."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Действительно хотите удалить Home Manager?"
|
msgstr "Действительно хотите удалить Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Переключаюсь на пустую конфигурацию Home Manager..."
|
msgstr "Переключаюсь на пустую конфигурацию Home Manager..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Ура!"
|
msgstr "Ура!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager удалён, но ваш home.nix остался нетронутым."
|
msgstr "Home Manager удалён, но ваш home.nix остался нетронутым."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations требует один аргумент, но передано %d."
|
msgstr "expire-generations требует один аргумент, но передано %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Неизвестная команда: %s"
|
msgstr "Неизвестная команда: %s"
|
||||||
|
|
||||||
|
@ -259,10 +228,6 @@ msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Это определение нельзя собрать. Пожалуйста, запустите его через nix-shell."
|
"Это определение нельзя собрать. Пожалуйста, запустите его через nix-shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Пожалуйста, определите переменную среды $EDITOR"
|
|
||||||
|
|
||||||
#~ msgid "Creating initial Home Manager configuration..."
|
#~ msgid "Creating initial Home Manager configuration..."
|
||||||
#~ msgstr "Создаю начальную конфигурацию Home Manager..."
|
#~ msgstr "Создаю начальную конфигурацию Home Manager..."
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-04-22 07:07+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:03+0000\n"
|
||||||
"Last-Translator: bittin1ddc447d824349b2 <bittin@reimu.nl>\n"
|
"Last-Translator: Luna Jernberg <droidbittin@gmail.com>\n"
|
||||||
"Language-Team: Swedish <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: Swedish <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"sv/>\n"
|
"sv/>\n"
|
||||||
"Language: sv\n"
|
"Language: sv\n"
|
||||||
|
@ -17,21 +17,16 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 5.0-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: saknar argument för %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Det finns ingen konfigurationsfil i %s"
|
msgstr "Det finns ingen konfigurationsfil i %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,16 +34,16 @@ msgstr ""
|
||||||
"Att behålla din Home Manager %s i %s är föråldrat,\n"
|
"Att behålla din Home Manager %s i %s är föråldrat,\n"
|
||||||
"snälla flytta den till %s"
|
"snälla flytta den till %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Hittade ingen konfigurationsfil. Skapa en i %s"
|
msgstr "Hittade ingen konfigurationsfil. Skapa en i %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager hittades inte på %s."
|
msgstr "Home Manager hittades inte på %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
|
@ -57,7 +52,7 @@ msgstr ""
|
||||||
"där."
|
"där."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -96,42 +91,38 @@ msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Kontrollerar att Nix funkar"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Kunde inte hitta lämplig profil-katalog, försökte med %s och %s"
|
msgstr "Kunde inte hitta lämplig profil-katalog, försökte med %s och %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Kan inte granska alternativ i en flake-konfiguration"
|
msgstr "Kan inte granska alternativ i en flake-konfiguration"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: okänt val '%s'"
|
msgstr "%s: okänt val '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Kör '%s --help' för användarhjälp"
|
msgstr "Kör '%s --help' för användarhjälp"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Filen %s finns redan, lämnar den orörd..."
|
msgstr "Filen %s finns redan, lämnar den orörd..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Skapar %s..."
|
msgstr "Skapar %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Skapar initial Home Manager-generation..."
|
msgstr "Skapar initial Home Manager-generation..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -148,7 +139,7 @@ msgstr ""
|
||||||
"att se alla tillgängliga alternativ."
|
"att se alla tillgängliga alternativ."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -163,11 +154,11 @@ msgstr ""
|
||||||
"om problemet verkar bero på något Home Manager gör fel."
|
"om problemet verkar bero på något Home Manager gör fel."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Kan inte instansera en flake-konfiguration"
|
msgstr "Kan inte instansera en flake-konfiguration"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -181,72 +172,72 @@ msgstr[1] ""
|
||||||
"Det finns %d olästa och relevanta nyheter.\n"
|
"Det finns %d olästa och relevanta nyheter.\n"
|
||||||
"Läs dem genom att köra kommandot \"%s news\"."
|
"Läs dem genom att köra kommandot \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Okänt \"news.display\"-värde \"%s\"."
|
msgstr "Okänt \"news.display\"-värde \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Vänligen ställ in miljövariabeln $EDITOR eller $VISUAL"
|
msgstr "Vänligen tilldela miljövariablen $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Kan inte bygga i katalog med bara läsrättigheter"
|
msgstr "Kan inte bygga i katalog med bara läsrättigheter"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Ingen generation med ID %s"
|
msgstr "Ingen generation med ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Kan inte ta bort nuvarande generation %s"
|
msgstr "Kan inte ta bort nuvarande generation %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Tar bort generation %s"
|
msgstr "Tar bort generation %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Ingen generation att förfalla"
|
msgstr "Ingen generation att förfalla"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Paketet home-manager verkar inte vara installerat."
|
msgstr "Paketet home-manager verkar inte vara installerat."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Okänt argument %s"
|
msgstr "Okänt argument %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Detta kommer att ta bort Home Manager från ditt system."
|
msgstr "Detta kommer att ta bort Home Manager från ditt system."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Detta är en testkörning, inget kommer att bli avinstallerat."
|
msgstr "Detta är en testkörning, inget kommer att bli avinstallerat."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Verkligen avinstallera Home Manager?"
|
msgstr "Verkligen avinstallera Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Byter till tom Home Manager-konfiguration..."
|
msgstr "Byter till tom Home Manager-konfiguration..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Hurra!"
|
msgstr "Hurra!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager är avinstallerad men din home.nix är orörd."
|
msgstr "Home Manager är avinstallerad men din home.nix är orörd."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expect-generations förväntar sig ett argument, fick %d."
|
msgstr "expect-generations förväntar sig ett argument, fick %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Okänt kommando: %s"
|
msgstr "Okänt kommando: %s"
|
||||||
|
|
||||||
|
@ -254,10 +245,6 @@ msgstr "Okänt kommando: %s"
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr "Denna derivation är inte byggbar, kör den med nix-shell istället."
|
msgstr "Denna derivation är inte byggbar, kör den med nix-shell istället."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Vänligen tilldela miljövariablen $EDITOR"
|
|
||||||
|
|
||||||
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
||||||
#~ msgstr ""
|
#~ msgstr ""
|
||||||
#~ "Ursäkta, för tillfället stödjs detta kommando inte när Nix flakes används"
|
#~ "Ursäkta, för tillfället stödjs detta kommando inte när Nix flakes används"
|
||||||
|
|
|
@ -7,7 +7,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2023-09-19 06:27+0000\n"
|
"PO-Revision-Date: 2023-09-19 06:27+0000\n"
|
||||||
"Last-Translator: Kamontat Chantrachirathumrong <uein2@users.noreply.hosted."
|
"Last-Translator: Kamontat Chantrachirathumrong <uein2@users.noreply.hosted."
|
||||||
"weblate.org>\n"
|
"weblate.org>\n"
|
||||||
|
@ -20,41 +20,36 @@ msgstr ""
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 5.0.2\n"
|
"X-Generator: Weblate 5.0.2\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "ไม่พบการตั้งค่าที่ %s"
|
msgstr "ไม่พบการตั้งค่าที่ %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -75,42 +70,38 @@ msgid ""
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -121,7 +112,7 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -131,11 +122,11 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -145,72 +136,72 @@ msgid_plural ""
|
||||||
msgstr[0] ""
|
msgstr[0] ""
|
||||||
msgstr[1] ""
|
msgstr[1] ""
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-04-19 17:07+0000\n"
|
"PO-Revision-Date: 2023-10-19 04:00+0000\n"
|
||||||
"Last-Translator: Oğuz Ersen <oguz@ersen.moe>\n"
|
"Last-Translator: Emre Çebi <emrecebi03@gmail.com>\n"
|
||||||
"Language-Team: Turkish <https://hosted.weblate.org/projects/home-manager/cli/"
|
"Language-Team: Turkish <https://hosted.weblate.org/projects/home-manager/cli/"
|
||||||
"tr/>\n"
|
"tr/>\n"
|
||||||
"Language: tr\n"
|
"Language: tr\n"
|
||||||
|
@ -17,21 +17,16 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
"Plural-Forms: nplurals=2; plural=n != 1;\n"
|
||||||
"X-Generator: Weblate 5.5-dev\n"
|
"X-Generator: Weblate 5.1\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: %s için argüman eksik"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "%s konumunda yapılandırma dosyası bulunamadı"
|
msgstr "%s konumunda yapılandırma dosyası bulunamadı"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,26 +34,24 @@ msgstr ""
|
||||||
"Home Managerı %s de tutmak artık desteklenmemektedir,\n"
|
"Home Managerı %s de tutmak artık desteklenmemektedir,\n"
|
||||||
"lütfen % e taşıyın"
|
"lütfen % e taşıyın"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Yapılandırma dosyası bulunamadı. Lütfen %s konumunda bir tane oluşturun"
|
"Yapılandırma dosyası bulunamadı. Lütfen %s konumunda bir tane oluşturun"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "%s konumunda Home Manager bulunamadı."
|
msgstr "%s konumunda Home Manager bulunamadı."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Yedek Ana Dizin Yöneticisi yolu %s kullanımdan kaldırıldı ve orada bir dosya/"
|
|
||||||
"dizin bulundu."
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -78,61 +71,39 @@ msgid ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bu uyarıyı kaldırmak için aşağıdakilerden birini yapın.\n"
|
|
||||||
"\n"
|
|
||||||
"1. Ev Dizin Yöneticisi'ne yolu kullanmasını açıkça söyleyin, örneğin\n"
|
|
||||||
"\n"
|
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" şeklinde yapılandırmanıza ekleyebilirsiniz.\n"
|
|
||||||
"\n"
|
|
||||||
" Ev Dizin Yöneticisi'ne doğrudan içe aktarırsanız, Ev Dizin Yöneticisi "
|
|
||||||
"paketini çağırırken\n"
|
|
||||||
"\n"
|
|
||||||
" pkgs.callPackage /path/to/home-manager-package { path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" şeklinde `path` parametresini kullanabilirsiniz.\n"
|
|
||||||
"\n"
|
|
||||||
"2. Kullanımdan kaldırılan yolu kaldırın.\n"
|
|
||||||
"\n"
|
|
||||||
" $ rm -r \"%s\""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Nix denetleniyor"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Kullanılabilir profil dizini bulunamadı, %s ve %s denendi"
|
msgstr "Kullanılabilir profil dizini bulunamadı, %s ve %s denendi"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Flake yapılandırmasının ayarları incelenemiyor"
|
msgstr "Flake yapılandırmasının ayarları incelenemiyor"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: Bilinmeyen komut '%s'"
|
msgstr "%s: Bilinmeyen komut '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Yardım için '%s --help'"
|
msgstr "Yardım için '%s --help'"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "%s dosyası zaten var, değişiklik yapılmıyor..."
|
msgstr "%s dosyası zaten var, değişiklik yapılmıyor..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Oluşturuluyor %s..."
|
msgstr "Oluşturuluyor %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "İlk Home Manager inşası oluşturuluyor..."
|
msgstr "İlk Home Manager inşası oluşturuluyor..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -149,7 +120,7 @@ msgstr ""
|
||||||
"'man home-configuration.nix'."
|
"'man home-configuration.nix'."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -165,11 +136,11 @@ msgstr ""
|
||||||
"adresinden bildirin."
|
"adresinden bildirin."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Flake yapılandırması örneklendirilemiyor"
|
msgstr "Flake yapılandırması örneklendirilemiyor"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -183,72 +154,72 @@ msgstr[1] ""
|
||||||
"%d tane okunmamış ilgili haberler bulunmakta.\n"
|
"%d tane okunmamış ilgili haberler bulunmakta.\n"
|
||||||
"Okumak için \"%s news\" komutunu kullanın."
|
"Okumak için \"%s news\" komutunu kullanın."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Bilinmeyen \"news.display\" seçeneği \"%s\"."
|
msgstr "Bilinmeyen \"news.display\" seçeneği \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Lütfen $EDITOR veya $VISUAL ortam değişkenini ayarlayın"
|
msgstr "Lütfen $EDITOR ortam değişkenini tanımlayın"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Sadece okuma izni olan bir dizinde inşa çalıştırılamaz"
|
msgstr "Sadece okuma izni olan bir dizinde inşa çalıştırılamaz"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "%s ID'sine sahip nesil bulunamadı"
|
msgstr "%s ID'sine sahip nesil bulunamadı"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Kullanımda olan %s inşası silinemez"
|
msgstr "Kullanımda olan %s inşası silinemez"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "İnşa siliniyor %s"
|
msgstr "İnşa siliniyor %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Süresi dolacak inşa yok"
|
msgstr "Süresi dolacak inşa yok"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Galiba home-manager paketi kurulu değil."
|
msgstr "Galiba home-manager paketi kurulu değil."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Bilinmeyen argüman %s"
|
msgstr "Bilinmeyen argüman %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Bu, sisteminizden Home Manager'ı kaldıracak."
|
msgstr "Bu, sisteminizden Home Manager'ı kaldıracak."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Bu sadece bir inşa denemesi, hiçbir şey silinmeyecek."
|
msgstr "Bu sadece bir inşa denemesi, hiçbir şey silinmeyecek."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Home Manager'ı silmek istediğinize emin misiniz?"
|
msgstr "Home Manager'ı silmek istediğinize emin misiniz?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Boş Home Manager yapılandırmasına geçiliyor..."
|
msgstr "Boş Home Manager yapılandırmasına geçiliyor..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Güzel!"
|
msgstr "Güzel!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager kaldırıldı ama home.nix dosyasına dokunulmadı."
|
msgstr "Home Manager kaldırıldı ama home.nix dosyasına dokunulmadı."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations bir argüman istiyor, %d tane girildi."
|
msgstr "expire-generations bir argüman istiyor, %d tane girildi."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Bilinmeyen komut: %s"
|
msgstr "Bilinmeyen komut: %s"
|
||||||
|
|
||||||
|
@ -257,10 +228,6 @@ msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Bu türetim inşa edilebilir değil, lütfen onu nix-shell kullanarak çalıştırın."
|
"Bu türetim inşa edilebilir değil, lütfen onu nix-shell kullanarak çalıştırın."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Lütfen $EDITOR ortam değişkenini tanımlayın"
|
|
||||||
|
|
||||||
#~ msgid "Creating initial Home Manager configuration..."
|
#~ msgid "Creating initial Home Manager configuration..."
|
||||||
#~ msgstr "İlk Home Manager yapılandırması oluşturuluyor..."
|
#~ msgstr "İlk Home Manager yapılandırması oluşturuluyor..."
|
||||||
|
|
||||||
|
|
|
@ -7,32 +7,27 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-02-18 14:02+0000\n"
|
"PO-Revision-Date: 2023-07-17 10:03+0000\n"
|
||||||
"Last-Translator: Сергій <sergiy.goncharuk.1@gmail.com>\n"
|
"Last-Translator: Dan <jonweblin2205@protonmail.com>\n"
|
||||||
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/home-manager/"
|
"Language-Team: Ukrainian <https://hosted.weblate.org/projects/home-manager/"
|
||||||
"cli/uk/>\n"
|
"cli/uk/>\n"
|
||||||
"Language: uk\n"
|
"Language: uk\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"
|
||||||
"Plural-Forms: nplurals=3; plural=(n%10==1 && n%100!=11 ? 0 : n%10>=2 && "
|
"Plural-Forms: nplurals=3; plural=n%10==1 && n%100!=11 ? 0 : n%10>=2 && n"
|
||||||
"n%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2);\n"
|
"%10<=4 && (n%100<10 || n%100>=20) ? 1 : 2;\n"
|
||||||
"X-Generator: Weblate 5.4\n"
|
"X-Generator: Weblate 5.0-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "Файл конфігурації не знайдено в %s"
|
msgstr "Файл конфігурації не знайдено в %s"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -40,16 +35,16 @@ msgstr ""
|
||||||
"Збереження вашого Home Manager %s у %s є застарілим,\n"
|
"Збереження вашого Home Manager %s у %s є застарілим,\n"
|
||||||
"будь ласка, перемістіть його до %s"
|
"будь ласка, перемістіть його до %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "Файл конфігурації не знайдено. Будь ласка, створіть його в %s"
|
msgstr "Файл конфігурації не знайдено. Будь ласка, створіть його в %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "Home Manager не знайдено на %s."
|
msgstr "Home Manager не знайдено на %s."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
|
@ -57,7 +52,7 @@ msgstr ""
|
||||||
"Резервний шлях до Home Manager %s застарів, і там було знайдено файл/каталог."
|
"Резервний шлях до Home Manager %s застарів, і там було знайдено файл/каталог."
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -96,42 +91,38 @@ msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Перевірка адекватності Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "Не вдалося знайти відповідний каталог профілю, спробував %s і %s"
|
msgstr "Не вдалося знайти відповідний каталог профілю, спробував %s і %s"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "Неможливо перевірити параметри flake-конфігурації"
|
msgstr "Неможливо перевірити параметри flake-конфігурації"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s: невідомий параметр '%s'"
|
msgstr "%s: невідомий параметр '%s'"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "Запустіть '%s --help' для отримання довідки про використання"
|
msgstr "Запустіть '%s --help' для отримання довідки про використання"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "Файл %s вже існує, залишаючи його незмінним..."
|
msgstr "Файл %s вже існує, залишаючи його незмінним..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "Створення %s..."
|
msgstr "Створення %s..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "Створення початкової генерації Home Manager..."
|
msgstr "Створення початкової генерації Home Manager..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -149,7 +140,7 @@ msgstr ""
|
||||||
"переглянути всі доступні варіанти."
|
"переглянути всі доступні варіанти."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -164,11 +155,11 @@ msgstr ""
|
||||||
"якщо здається, що помилка сталася через Home Manager."
|
"якщо здається, що помилка сталася через Home Manager."
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "Не вдається створити екземпляр flake-конфігурації"
|
msgstr "Не вдається створити екземпляр flake-конфігурації"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -185,72 +176,72 @@ msgstr[2] ""
|
||||||
"Є %d непрочитаних і ревалентних новин.\n"
|
"Є %d непрочитаних і ревалентних новин.\n"
|
||||||
"Прочитайте їх, виконавши команду \"%s news\"."
|
"Прочитайте їх, виконавши команду \"%s news\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "Невідоме налаштування \"news.display\" \"%s\"."
|
msgstr "Невідоме налаштування \"news.display\" \"%s\"."
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "Будь ласка, встановіть змінну оточення $EDITOR або $VISUAL"
|
msgstr "Будь ласка, встановіть змінну середовища $EDITOR"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "Неможливо запустити збірку в каталозі, доступному лише для читання"
|
msgstr "Неможливо запустити збірку в каталозі, доступному лише для читання"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "Немає генерації з ID %s"
|
msgstr "Немає генерації з ID %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "Не вдається видалити поточну генерацію %s"
|
msgstr "Не вдається видалити поточну генерацію %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "Видалення генерації %s"
|
msgstr "Видалення генерації %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "Немає генерацій, термін дії яких закінчується"
|
msgstr "Немає генерацій, термін дії яких закінчується"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "Здається, не встановлено жодних пакунків home-manager."
|
msgstr "Здається, не встановлено жодних пакунків home-manager."
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "Невідомий аргумент %s"
|
msgstr "Невідомий аргумент %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "Це призведе до видалення Home Manager з вашої системи."
|
msgstr "Це призведе до видалення Home Manager з вашої системи."
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "Це пробний запуск, насправді нічого не буде видалено."
|
msgstr "Це пробний запуск, насправді нічого не буде видалено."
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "Дійсно видаліть Home Manager?"
|
msgstr "Дійсно видаліть Home Manager?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "Перехід до порожньої конфігурації Home Manager..."
|
msgstr "Перехід до порожньої конфігурації Home Manager..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "Ура!"
|
msgstr "Ура!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager буде видалено, але ваш home.nix залишиться недоторканим."
|
msgstr "Home Manager буде видалено, але ваш home.nix залишиться недоторканим."
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generation очікує один аргумент, отримав %d."
|
msgstr "expire-generation очікує один аргумент, отримав %d."
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "Невідома команда: %s"
|
msgstr "Невідома команда: %s"
|
||||||
|
|
||||||
|
@ -259,10 +250,6 @@ msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Цю похідну не можна зібрати, будь ласка, запустіть її за допомогою nix-shell."
|
"Цю похідну не можна зібрати, будь ласка, запустіть її за допомогою nix-shell."
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "Будь ласка, встановіть змінну середовища $EDITOR"
|
|
||||||
|
|
||||||
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
||||||
#~ msgstr "На жаль, ця команда ще не підтримується в налаштуваннях flake"
|
#~ msgstr "На жаль, ця команда ще не підтримується в налаштуваннях flake"
|
||||||
|
|
||||||
|
|
|
@ -1,251 +0,0 @@
|
||||||
# SOME DESCRIPTIVE TITLE.
|
|
||||||
# Copyright (C) YEAR Home Manager contributors
|
|
||||||
# This file is distributed under the same license as the Home Manager package.
|
|
||||||
# FIRST AUTHOR <EMAIL@ADDRESS>, YEAR.
|
|
||||||
#
|
|
||||||
msgid ""
|
|
||||||
msgstr ""
|
|
||||||
"Project-Id-Version: Home Manager\n"
|
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
|
||||||
"PO-Revision-Date: 2024-06-02 08:12+0000\n"
|
|
||||||
"Last-Translator: goatastronaut0212 <goatastronaut0212@proton.me>\n"
|
|
||||||
"Language-Team: Vietnamese <https://hosted.weblate.org/projects/home-manager/"
|
|
||||||
"cli/vi/>\n"
|
|
||||||
"Language: vi\n"
|
|
||||||
"MIME-Version: 1.0\n"
|
|
||||||
"Content-Type: text/plain; charset=UTF-8\n"
|
|
||||||
"Content-Transfer-Encoding: 8bit\n"
|
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
|
||||||
"X-Generator: Weblate 5.6-dev\n"
|
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s: bị thiếu đối số cho %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
|
||||||
msgstr "Không tìm thấy tập tin cấu hình tại %s"
|
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
|
||||||
#. 'home.nix' or 'flake.nix'.
|
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
|
||||||
#: home-manager/home-manager:184
|
|
||||||
msgid ""
|
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
|
||||||
"please move it to %s"
|
|
||||||
msgstr ""
|
|
||||||
"Giữ Home Manager của bạn %s ở %s đã không còn phù hợp,\n"
|
|
||||||
"hãy chuyển nó tới %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
|
||||||
msgid "No configuration file found. Please create one at %s"
|
|
||||||
msgstr "Không tìm thấy tệp cấu hình. Vui lòng tạo một cái tại %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
|
||||||
msgid "Home Manager not found at %s."
|
|
||||||
msgstr "Không tìm thấy Home Manager ở %s."
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
|
||||||
#: home-manager/home-manager:115
|
|
||||||
msgid ""
|
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
|
||||||
"was found there."
|
|
||||||
msgstr ""
|
|
||||||
"Đường dẫn Home Manager dự phòng %s không được dùng nữa và một tệp/thư mục đã "
|
|
||||||
"đuợc tìm thấy ở đó."
|
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
|
||||||
#: home-manager/home-manager:118
|
|
||||||
msgid ""
|
|
||||||
"To remove this warning, do one of the following.\n"
|
|
||||||
"\n"
|
|
||||||
"1. Explicitly tell Home Manager to use the path, for example by adding\n"
|
|
||||||
"\n"
|
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" to your configuration.\n"
|
|
||||||
"\n"
|
|
||||||
" If you import Home Manager directly, you can use the `path` parameter\n"
|
|
||||||
"\n"
|
|
||||||
" pkgs.callPackage /path/to/home-manager-package { path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" when calling the Home Manager package.\n"
|
|
||||||
"\n"
|
|
||||||
"2. Remove the deprecated path.\n"
|
|
||||||
"\n"
|
|
||||||
" $ rm -r \"%s\""
|
|
||||||
msgstr ""
|
|
||||||
"Để tắt cảnh báo này, hãy thực hiện một trong các thao tác sau.\n"
|
|
||||||
"\n"
|
|
||||||
"1. Chỉ định Home Manager sử dụng đường dẫn, ví dụ bằng cách thêm\n"
|
|
||||||
"\n"
|
|
||||||
"\n"
|
|
||||||
" { programs.home-manager.path = \"%s\"; }\n"
|
|
||||||
" vào cấu hình của bạn.\n"
|
|
||||||
"\n"
|
|
||||||
"Nếu bạn nhập trực tiếp Home Manager, bạn có thể sử dụng tham số `path`\n"
|
|
||||||
"\n"
|
|
||||||
" pkgs.callPackage /path/to/home-manager-package { path = \"%s\"; }\n"
|
|
||||||
"\n"
|
|
||||||
" khi gọi gói Home Manager.\n"
|
|
||||||
"\n"
|
|
||||||
"2. Xóa đường dẫn không được dùng nữa.\n"
|
|
||||||
"\n"
|
|
||||||
" $ rm -r \"%s\""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "Kiểm tra độ hợp lệ của Nix"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
|
||||||
msgstr "Không thể tìm thấy thư mục hồ sơ phù hợp, đã thử %s và %s"
|
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
|
||||||
#: home-manager/home-manager:221
|
|
||||||
msgid "Can't inspect options of a flake configuration"
|
|
||||||
msgstr "Không thể kiểm tra tùy chọn của cấu hình flake"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
|
||||||
#: home-manager/home-manager:1051
|
|
||||||
msgid "%s: unknown option '%s'"
|
|
||||||
msgstr "%s: tùy chọn không xác định '%s'"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
|
||||||
msgid "Run '%s --help' for usage help"
|
|
||||||
msgstr "Chạy '%s --help' để được trợ giúp sử dụng"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
|
||||||
msgstr "Tệp %s đã tồn tại, để nguyên nó không thay đổi..."
|
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
|
||||||
msgid "Creating %s..."
|
|
||||||
msgstr "Đang tạo %s..."
|
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
|
||||||
msgid "Creating initial Home Manager generation..."
|
|
||||||
msgstr "Khởi tạo thế hệ Home Manager ban đầu..."
|
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
|
||||||
#: home-manager/home-manager:480
|
|
||||||
msgid ""
|
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
|
||||||
"\n"
|
|
||||||
" %s\n"
|
|
||||||
"\n"
|
|
||||||
"to configure Home Manager. Run 'man home-configuration.nix' to\n"
|
|
||||||
"see all available options."
|
|
||||||
msgstr ""
|
|
||||||
"Đã hoàn thành! Công cụ home-manager giờ đạ được cài đặt và bạn có thể chỉnh "
|
|
||||||
"sửa\n"
|
|
||||||
"\n"
|
|
||||||
" %s\n"
|
|
||||||
"\n"
|
|
||||||
"để cấu hình Home Manager. Chạy lệnh 'man home-configuration.nix' để\n"
|
|
||||||
"xem toàn bộ tùy chọn có sẵn."
|
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
|
||||||
#: home-manager/home-manager:485
|
|
||||||
msgid ""
|
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
|
||||||
"\n"
|
|
||||||
" %s\n"
|
|
||||||
"\n"
|
|
||||||
"if the error seems to be the fault of Home Manager."
|
|
||||||
msgstr ""
|
|
||||||
"Quá trình cài đặt đã thất bại! Vui lòng tạo 1 báo cáo lỗi tại\n"
|
|
||||||
"\n"
|
|
||||||
" %s\n"
|
|
||||||
"\n"
|
|
||||||
"nếu như lỗi đó thuộc về Home Manager."
|
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
|
||||||
#: home-manager/home-manager:496
|
|
||||||
msgid "Can't instantiate a flake configuration"
|
|
||||||
msgstr "Không thể khởi tạo cấu hình flake"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
|
||||||
msgid ""
|
|
||||||
"There is %d unread and relevant news item.\n"
|
|
||||||
"Read it by running the command \"%s news\"."
|
|
||||||
msgid_plural ""
|
|
||||||
"There are %d unread and relevant news items.\n"
|
|
||||||
"Read them by running the command \"%s news\"."
|
|
||||||
msgstr[0] ""
|
|
||||||
msgstr[1] ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
|
||||||
#, sh-format
|
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
|
||||||
msgstr "Vui lòng đặt biến môi trường $EDITOR hoặc $VISUAL"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
|
||||||
msgid "Cannot run build in read-only directory"
|
|
||||||
msgstr "Không thể chạy lệnh xây dựng trong thư mục chỉ cho phép đọc"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
|
||||||
msgid "No generation with ID %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
|
||||||
msgid "Cannot remove the current generation %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
|
||||||
msgid "Removing generation %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
|
||||||
msgid "No generations to expire"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
|
||||||
msgid "No home-manager packages seem to be installed."
|
|
||||||
msgstr "Không có bất kỳ gói home-manager nào được cài đặt."
|
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
|
||||||
msgid "Unknown argument %s"
|
|
||||||
msgstr "Không tồn tại đối số %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
|
||||||
msgid "This will remove Home Manager from your system."
|
|
||||||
msgstr "Việc này sẽ xóa Home Manager khỏi hệ thống của bạn."
|
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
|
||||||
msgstr "Đây là chạy thử nghiệm, sẽ không có bất cư thứ gì được gỡ cài đặt."
|
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
|
||||||
msgid "Really uninstall Home Manager?"
|
|
||||||
msgstr "Bạn có muốn gỡ Home Manager không?"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
|
||||||
msgstr "Chuyển đổi sang cấu hình Home Manager trống..."
|
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
|
||||||
msgid "Yay!"
|
|
||||||
msgstr "Tuyệt vời!"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
|
||||||
msgid "expire-generations expects one argument, got %d."
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
|
||||||
msgid "Unknown command: %s"
|
|
||||||
msgstr "Không tồn tại câu lệnh: %s"
|
|
||||||
|
|
||||||
#: home-manager/install.nix:18
|
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
|
||||||
msgstr ""
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-05-13 10:00+0000\n"
|
"PO-Revision-Date: 2023-07-31 21:25+0000\n"
|
||||||
"Last-Translator: Zexin Yuan <yuan.zx@outlook.com>\n"
|
"Last-Translator: Vollow <muffinslog@proton.me>\n"
|
||||||
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
|
"Language-Team: Chinese (Simplified) <https://hosted.weblate.org/projects/"
|
||||||
"home-manager/cli/zh_Hans/>\n"
|
"home-manager/cli/zh_Hans/>\n"
|
||||||
"Language: zh_Hans\n"
|
"Language: zh_Hans\n"
|
||||||
|
@ -17,21 +17,16 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 5.5.5-dev\n"
|
"X-Generator: Weblate 5.0-dev\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr "%s:缺少参数 %s"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "未在 %s 找到配置文件"
|
msgstr "未在 %s 找到配置文件"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
|
@ -39,23 +34,23 @@ msgstr ""
|
||||||
"需要确保 Home Manager 在 %s 中,%s 已废弃。\n"
|
"需要确保 Home Manager 在 %s 中,%s 已废弃。\n"
|
||||||
"请手动移动到 %s"
|
"请手动移动到 %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "未找到配置文件。请在 %s 处创建一份"
|
msgstr "未找到配置文件。请在 %s 处创建一份"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr "未在 %s 找到 Home Manager。"
|
msgstr "未在 %s 找到 Home Manager。"
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr "后备 Home Manager 路径 %s 已被弃用,但在这里找到了一个文件或文件夹。"
|
msgstr "后备 Home Manager 路径 %s 已被弃用,但在这里找到了一个文件或文件夹。"
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -92,42 +87,38 @@ msgstr ""
|
||||||
"\n"
|
"\n"
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "正在进行 Nix 完整性检查"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr "在 %s 以及 %s 中未能找到合适的档案目录"
|
msgstr "在 %s 以及 %s 中未能找到合适的档案目录"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "无法检查 flake 配置中的选项"
|
msgstr "无法检查 flake 配置中的选项"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s:未知选项 ‘%s’"
|
msgstr "%s:未知选项 ‘%s’"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "运行 ‘%s --help’ 获取用法帮助"
|
msgstr "运行 ‘%s --help’ 获取用法帮助"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr "文件 %s 已存在,未对其更改 ..."
|
msgstr "文件 %s 已存在,未对其更改 ..."
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr "正在创建 %s ..."
|
msgstr "正在创建 %s ..."
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "正在创建 Home Manager 初始化配置生成 ..."
|
msgstr "正在创建 Home Manager 初始化配置生成 ..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -144,7 +135,7 @@ msgstr ""
|
||||||
"来查看所有可用选项。"
|
"来查看所有可用选项。"
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -159,11 +150,11 @@ msgstr ""
|
||||||
"处创建 Issue 告知我们。"
|
"处创建 Issue 告知我们。"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "无法创建 flake 配置实例"
|
msgstr "无法创建 flake 配置实例"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -174,72 +165,72 @@ msgstr[0] ""
|
||||||
"有 %d 条未读的相关新闻或消息。\n"
|
"有 %d 条未读的相关新闻或消息。\n"
|
||||||
"可运行 “%s news” 命令进行阅读。"
|
"可运行 “%s news” 命令进行阅读。"
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "未知的 “news.display” 设置项 “%s”。"
|
msgstr "未知的 “news.display” 设置项 “%s”。"
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr "请设置 $EDITOR 或 $VISUAL 环境变量"
|
msgstr "请设定 $EDITOR 环境变量"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "无法在只读目录中运行构建"
|
msgstr "无法在只读目录中运行构建"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "没有 ID 为 %s 的生成结果"
|
msgstr "没有 ID 为 %s 的生成结果"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "无法移除当前生成结果 %s"
|
msgstr "无法移除当前生成结果 %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "正在移除生成结果 %s"
|
msgstr "正在移除生成结果 %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "没有即将过期的生成结果"
|
msgstr "没有即将过期的生成结果"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "似乎没有安装 home-manager 软件包。"
|
msgstr "似乎没有安装 home-manager 软件包。"
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "未知参数 %s"
|
msgstr "未知参数 %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "这将会从系统中移除 Home Manager。"
|
msgstr "这将会从系统中移除 Home Manager。"
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "这是试运行结果,没有实际卸载任何软件包。"
|
msgstr "这是试运行结果,没有实际卸载任何软件包。"
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "确定要卸载 Home Manager 吗?"
|
msgstr "确定要卸载 Home Manager 吗?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "正在切换至空的 Home Manager 配置 ..."
|
msgstr "正在切换至空的 Home Manager 配置 ..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "好耶!"
|
msgstr "好耶!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager 已卸载,但未改动您的 home.nix 配置文件。"
|
msgstr "Home Manager 已卸载,但未改动您的 home.nix 配置文件。"
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations 须要一个参数,但获取到了 %d 个。"
|
msgstr "expire-generations 须要一个参数,但获取到了 %d 个。"
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "未知命令:%s"
|
msgstr "未知命令:%s"
|
||||||
|
|
||||||
|
@ -247,10 +238,6 @@ msgstr "未知命令:%s"
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr "此配置文件/变体不可构建,请使用 nix-shell 运行它。"
|
msgstr "此配置文件/变体不可构建,请使用 nix-shell 运行它。"
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "请设定 $EDITOR 环境变量"
|
|
||||||
|
|
||||||
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
#~ msgid "Sorry, this command is not yet supported in flake setup"
|
||||||
#~ msgstr "抱歉,当前命令暂不支持在 flake 配置中使用"
|
#~ msgstr "抱歉,当前命令暂不支持在 flake 配置中使用"
|
||||||
|
|
||||||
|
|
|
@ -7,9 +7,9 @@ msgid ""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
"Project-Id-Version: Home Manager\n"
|
"Project-Id-Version: Home Manager\n"
|
||||||
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
"Report-Msgid-Bugs-To: https://github.com/nix-community/home-manager/issues\n"
|
||||||
"POT-Creation-Date: 2024-04-17 23:19+0200\n"
|
"POT-Creation-Date: 2023-09-13 23:46+0200\n"
|
||||||
"PO-Revision-Date: 2024-02-16 22:01+0000\n"
|
"PO-Revision-Date: 2021-12-29 08:48+0000\n"
|
||||||
"Last-Translator: Robert Helgesson <robert@rycee.net>\n"
|
"Last-Translator: WhiredPlanck <fungdaat31@outlook.com>\n"
|
||||||
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
|
"Language-Team: Chinese (Traditional) <https://hosted.weblate.org/projects/"
|
||||||
"home-manager/cli/zh_Hant/>\n"
|
"home-manager/cli/zh_Hant/>\n"
|
||||||
"Language: zh_Hant\n"
|
"Language: zh_Hant\n"
|
||||||
|
@ -17,43 +17,38 @@ msgstr ""
|
||||||
"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"
|
||||||
"Plural-Forms: nplurals=1; plural=0;\n"
|
"Plural-Forms: nplurals=1; plural=0;\n"
|
||||||
"X-Generator: Weblate 5.4\n"
|
"X-Generator: Weblate 4.10.1\n"
|
||||||
|
|
||||||
#. translators: For example: "home-manager: missing argument for --cores"
|
#: home-manager/home-manager:81
|
||||||
#: home-manager/home-manager:16
|
|
||||||
msgid "%s: missing argument for %s"
|
|
||||||
msgstr ""
|
|
||||||
|
|
||||||
#: home-manager/home-manager:64
|
|
||||||
msgid "No configuration file found at %s"
|
msgid "No configuration file found at %s"
|
||||||
msgstr "未在 %s 處找到配置檔案"
|
msgstr "未在 %s 處找到配置檔案"
|
||||||
|
|
||||||
#. translators: The first '%s' specifier will be replaced by either
|
#. translators: The first '%s' specifier will be replaced by either
|
||||||
#. 'home.nix' or 'flake.nix'.
|
#. 'home.nix' or 'flake.nix'.
|
||||||
#: home-manager/home-manager:81 home-manager/home-manager:85
|
#: home-manager/home-manager:98 home-manager/home-manager:102
|
||||||
#: home-manager/home-manager:184
|
#: home-manager/home-manager:192
|
||||||
msgid ""
|
msgid ""
|
||||||
"Keeping your Home Manager %s in %s is deprecated,\n"
|
"Keeping your Home Manager %s in %s is deprecated,\n"
|
||||||
"please move it to %s"
|
"please move it to %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:92
|
#: home-manager/home-manager:109
|
||||||
msgid "No configuration file found. Please create one at %s"
|
msgid "No configuration file found. Please create one at %s"
|
||||||
msgstr "未找到配置檔案。請在 %s 處建立一份"
|
msgstr "未找到配置檔案。請在 %s 處建立一份"
|
||||||
|
|
||||||
#: home-manager/home-manager:107
|
#: home-manager/home-manager:124
|
||||||
msgid "Home Manager not found at %s."
|
msgid "Home Manager not found at %s."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:115
|
#: home-manager/home-manager:132
|
||||||
msgid ""
|
msgid ""
|
||||||
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
"The fallback Home Manager path %s has been deprecated and a file/directory "
|
||||||
"was found there."
|
"was found there."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
#. translators: This message will be seen by very few users that likely are familiar with English. So feel free to leave this untranslated.
|
||||||
#: home-manager/home-manager:118
|
#: home-manager/home-manager:135
|
||||||
msgid ""
|
msgid ""
|
||||||
"To remove this warning, do one of the following.\n"
|
"To remove this warning, do one of the following.\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -74,42 +69,38 @@ msgid ""
|
||||||
" $ rm -r \"%s\""
|
" $ rm -r \"%s\""
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:146
|
#: home-manager/home-manager:174
|
||||||
msgid "Sanity checking Nix"
|
|
||||||
msgstr "正在進行 Nix 完整性檢查"
|
|
||||||
|
|
||||||
#: home-manager/home-manager:166
|
|
||||||
msgid "Could not find suitable profile directory, tried %s and %s"
|
msgid "Could not find suitable profile directory, tried %s and %s"
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:221
|
#: home-manager/home-manager:229
|
||||||
msgid "Can't inspect options of a flake configuration"
|
msgid "Can't inspect options of a flake configuration"
|
||||||
msgstr "無法檢查 flake 配置中的選項"
|
msgstr "無法檢查 flake 配置中的選項"
|
||||||
|
|
||||||
#: home-manager/home-manager:296 home-manager/home-manager:319
|
#: home-manager/home-manager:291 home-manager/home-manager:314
|
||||||
#: home-manager/home-manager:1051
|
#: home-manager/home-manager:1034
|
||||||
msgid "%s: unknown option '%s'"
|
msgid "%s: unknown option '%s'"
|
||||||
msgstr "%s:未知選項 ‘%s’"
|
msgstr "%s:未知選項 ‘%s’"
|
||||||
|
|
||||||
#: home-manager/home-manager:301 home-manager/home-manager:1052
|
#: home-manager/home-manager:296 home-manager/home-manager:1035
|
||||||
msgid "Run '%s --help' for usage help"
|
msgid "Run '%s --help' for usage help"
|
||||||
msgstr "執行 ‘%s --help’ 獲取用法幫助"
|
msgstr "執行 ‘%s --help’ 獲取用法幫助"
|
||||||
|
|
||||||
#: home-manager/home-manager:327 home-manager/home-manager:431
|
#: home-manager/home-manager:322 home-manager/home-manager:421
|
||||||
msgid "The file %s already exists, leaving it unchanged..."
|
msgid "The file %s already exists, leaving it unchanged..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:329 home-manager/home-manager:433
|
#: home-manager/home-manager:324 home-manager/home-manager:423
|
||||||
msgid "Creating %s..."
|
msgid "Creating %s..."
|
||||||
msgstr ""
|
msgstr ""
|
||||||
|
|
||||||
#: home-manager/home-manager:475
|
#: home-manager/home-manager:465
|
||||||
msgid "Creating initial Home Manager generation..."
|
msgid "Creating initial Home Manager generation..."
|
||||||
msgstr "正在建立初始 Home Manager 世代 ..."
|
msgstr "正在建立初始 Home Manager 世代 ..."
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a file path.
|
#. translators: The "%s" specifier will be replaced by a file path.
|
||||||
#: home-manager/home-manager:480
|
#: home-manager/home-manager:470
|
||||||
msgid ""
|
msgid ""
|
||||||
"All done! The home-manager tool should now be installed and you can edit\n"
|
"All done! The home-manager tool should now be installed and you can edit\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -126,7 +117,7 @@ msgstr ""
|
||||||
"來檢視所有可用選項。"
|
"來檢視所有可用選項。"
|
||||||
|
|
||||||
#. translators: The "%s" specifier will be replaced by a URL.
|
#. translators: The "%s" specifier will be replaced by a URL.
|
||||||
#: home-manager/home-manager:485
|
#: home-manager/home-manager:475
|
||||||
msgid ""
|
msgid ""
|
||||||
"Uh oh, the installation failed! Please create an issue at\n"
|
"Uh oh, the installation failed! Please create an issue at\n"
|
||||||
"\n"
|
"\n"
|
||||||
|
@ -141,11 +132,11 @@ msgstr ""
|
||||||
"處建立 Issue 告知我們。"
|
"處建立 Issue 告知我們。"
|
||||||
|
|
||||||
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
#. translators: Here "flake" is a noun that refers to the Nix Flakes feature.
|
||||||
#: home-manager/home-manager:496
|
#: home-manager/home-manager:486
|
||||||
msgid "Can't instantiate a flake configuration"
|
msgid "Can't instantiate a flake configuration"
|
||||||
msgstr "無法建立 flake 配置例項"
|
msgstr "無法建立 flake 配置例項"
|
||||||
|
|
||||||
#: home-manager/home-manager:572
|
#: home-manager/home-manager:562
|
||||||
msgid ""
|
msgid ""
|
||||||
"There is %d unread and relevant news item.\n"
|
"There is %d unread and relevant news item.\n"
|
||||||
"Read it by running the command \"%s news\"."
|
"Read it by running the command \"%s news\"."
|
||||||
|
@ -156,72 +147,72 @@ msgstr[0] ""
|
||||||
"有 %d 條未讀的相關新聞或訊息。\n"
|
"有 %d 條未讀的相關新聞或訊息。\n"
|
||||||
"可執行 “%s news” 命令進行閱讀。"
|
"可執行 “%s news” 命令進行閱讀。"
|
||||||
|
|
||||||
#: home-manager/home-manager:586
|
#: home-manager/home-manager:576
|
||||||
msgid "Unknown \"news.display\" setting \"%s\"."
|
msgid "Unknown \"news.display\" setting \"%s\"."
|
||||||
msgstr "未知的 “news.display” 設定項 “%s”。"
|
msgstr "未知的 “news.display” 設定項 “%s”。"
|
||||||
|
|
||||||
#: home-manager/home-manager:594
|
#: home-manager/home-manager:583
|
||||||
#, sh-format
|
#, sh-format
|
||||||
msgid "Please set the $EDITOR or $VISUAL environment variable"
|
msgid "Please set the $EDITOR environment variable"
|
||||||
msgstr ""
|
msgstr "請設定 $EDITOR 環境變數"
|
||||||
|
|
||||||
#: home-manager/home-manager:612
|
#: home-manager/home-manager:598
|
||||||
msgid "Cannot run build in read-only directory"
|
msgid "Cannot run build in read-only directory"
|
||||||
msgstr "無法在只讀目錄中執行構建"
|
msgstr "無法在只讀目錄中執行構建"
|
||||||
|
|
||||||
#: home-manager/home-manager:693
|
#: home-manager/home-manager:676
|
||||||
msgid "No generation with ID %s"
|
msgid "No generation with ID %s"
|
||||||
msgstr "沒有 ID 為 %s 的世代"
|
msgstr "沒有 ID 為 %s 的世代"
|
||||||
|
|
||||||
#: home-manager/home-manager:695
|
#: home-manager/home-manager:678
|
||||||
msgid "Cannot remove the current generation %s"
|
msgid "Cannot remove the current generation %s"
|
||||||
msgstr "無法移除當前世代 %s"
|
msgstr "無法移除當前世代 %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:697
|
#: home-manager/home-manager:680
|
||||||
msgid "Removing generation %s"
|
msgid "Removing generation %s"
|
||||||
msgstr "正在移除世代 %s"
|
msgstr "正在移除世代 %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:718
|
#: home-manager/home-manager:699
|
||||||
msgid "No generations to expire"
|
msgid "No generations to expire"
|
||||||
msgstr "沒有即將過期的世代"
|
msgstr "沒有即將過期的世代"
|
||||||
|
|
||||||
#: home-manager/home-manager:729
|
#: home-manager/home-manager:710
|
||||||
msgid "No home-manager packages seem to be installed."
|
msgid "No home-manager packages seem to be installed."
|
||||||
msgstr "似乎沒有安裝 home-manager 軟體包。"
|
msgstr "似乎沒有安裝 home-manager 軟體包。"
|
||||||
|
|
||||||
#: home-manager/home-manager:811
|
#: home-manager/home-manager:792
|
||||||
msgid "Unknown argument %s"
|
msgid "Unknown argument %s"
|
||||||
msgstr "未知引數 %s"
|
msgstr "未知引數 %s"
|
||||||
|
|
||||||
#: home-manager/home-manager:835
|
#: home-manager/home-manager:816
|
||||||
msgid "This will remove Home Manager from your system."
|
msgid "This will remove Home Manager from your system."
|
||||||
msgstr "這將會從系統中移除 Home Manager。"
|
msgstr "這將會從系統中移除 Home Manager。"
|
||||||
|
|
||||||
#: home-manager/home-manager:838
|
#: home-manager/home-manager:819
|
||||||
msgid "This is a dry run, nothing will actually be uninstalled."
|
msgid "This is a dry run, nothing will actually be uninstalled."
|
||||||
msgstr "這是試執行結果,沒有實際解除安裝任何軟體包。"
|
msgstr "這是試執行結果,沒有實際解除安裝任何軟體包。"
|
||||||
|
|
||||||
#: home-manager/home-manager:842
|
#: home-manager/home-manager:823
|
||||||
msgid "Really uninstall Home Manager?"
|
msgid "Really uninstall Home Manager?"
|
||||||
msgstr "確定要解除安裝 Home Manager 嗎?"
|
msgstr "確定要解除安裝 Home Manager 嗎?"
|
||||||
|
|
||||||
#: home-manager/home-manager:848
|
#: home-manager/home-manager:829
|
||||||
msgid "Switching to empty Home Manager configuration..."
|
msgid "Switching to empty Home Manager configuration..."
|
||||||
msgstr "正在切換至空的 Home Manager 配置 ..."
|
msgstr "正在切換至空的 Home Manager 配置 ..."
|
||||||
|
|
||||||
#: home-manager/home-manager:863
|
#: home-manager/home-manager:857
|
||||||
msgid "Yay!"
|
msgid "Yay!"
|
||||||
msgstr "好耶!"
|
msgstr "好耶!"
|
||||||
|
|
||||||
#: home-manager/home-manager:868
|
#: home-manager/home-manager:862
|
||||||
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
msgid "Home Manager is uninstalled but your home.nix is left untouched."
|
||||||
msgstr "Home Manager 已解除安裝,但未改動您的 home.nix 配置檔案。"
|
msgstr "Home Manager 已解除安裝,但未改動您的 home.nix 配置檔案。"
|
||||||
|
|
||||||
#: home-manager/home-manager:1091
|
#: home-manager/home-manager:1074
|
||||||
msgid "expire-generations expects one argument, got %d."
|
msgid "expire-generations expects one argument, got %d."
|
||||||
msgstr "expire-generations 須要一個引數,但獲取到了 %d 個。"
|
msgstr "expire-generations 須要一個引數,但獲取到了 %d 個。"
|
||||||
|
|
||||||
#: home-manager/home-manager:1113
|
#: home-manager/home-manager:1096
|
||||||
msgid "Unknown command: %s"
|
msgid "Unknown command: %s"
|
||||||
msgstr "未知命令:%s"
|
msgstr "未知命令:%s"
|
||||||
|
|
||||||
|
@ -229,10 +220,6 @@ msgstr "未知命令:%s"
|
||||||
msgid "This derivation is not buildable, please run it using nix-shell."
|
msgid "This derivation is not buildable, please run it using nix-shell."
|
||||||
msgstr "此配置檔案/變體不可構建,請在 nix-shell 中執行它。"
|
msgstr "此配置檔案/變體不可構建,請在 nix-shell 中執行它。"
|
||||||
|
|
||||||
#, sh-format
|
|
||||||
#~ msgid "Please set the $EDITOR environment variable"
|
|
||||||
#~ msgstr "請設定 $EDITOR 環境變數"
|
|
||||||
|
|
||||||
#~ msgid "Creating initial Home Manager configuration..."
|
#~ msgid "Creating initial Home Manager configuration..."
|
||||||
#~ msgstr "正在建立初始 Home Manager 配置 ..."
|
#~ msgstr "正在建立初始 Home Manager 配置 ..."
|
||||||
|
|
||||||
|
|
|
@ -48,12 +48,6 @@ function noteEcho() {
|
||||||
echo "${noteColor}$*${normalColor}"
|
echo "${noteColor}$*${normalColor}"
|
||||||
}
|
}
|
||||||
|
|
||||||
function verboseEcho() {
|
|
||||||
if [[ -v VERBOSE ]]; then
|
|
||||||
echo "$*"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
function _i() {
|
function _i() {
|
||||||
local msgid="$1"
|
local msgid="$1"
|
||||||
shift
|
shift
|
||||||
|
@ -89,39 +83,3 @@ function _iNote() {
|
||||||
_i "$@"
|
_i "$@"
|
||||||
echo -n "${normalColor}"
|
echo -n "${normalColor}"
|
||||||
}
|
}
|
||||||
|
|
||||||
function _iVerbose() {
|
|
||||||
if [[ -v VERBOSE ]]; then
|
|
||||||
_i "$@"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
# Runs the given command on live run, otherwise prints the command to standard
|
|
||||||
# output.
|
|
||||||
#
|
|
||||||
# If given the command line option `--quiet`, then the command's standard output
|
|
||||||
# is sent to `/dev/null` on a live run.
|
|
||||||
#
|
|
||||||
# If given the command line option `--silence`, then the command's standard and
|
|
||||||
# error output is sent to `/dev/null` on a live run.
|
|
||||||
#
|
|
||||||
# The `--silence` and `--quiet` flags are mutually exclusive.
|
|
||||||
function run() {
|
|
||||||
if [[ $1 == '--quiet' ]]; then
|
|
||||||
local quiet=1
|
|
||||||
shift
|
|
||||||
elif [[ $1 == '--silence' ]]; then
|
|
||||||
local silence=1
|
|
||||||
shift
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -v DRY_RUN ]] ; then
|
|
||||||
echo "$@"
|
|
||||||
elif [[ -v quiet ]] ; then
|
|
||||||
"$@" > /dev/null
|
|
||||||
elif [[ -v silence ]] ; then
|
|
||||||
"$@" > /dev/null 2>&1
|
|
||||||
else
|
|
||||||
"$@"
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
|
@ -18,13 +18,12 @@ let
|
||||||
|
|
||||||
type = mkOption {
|
type = mkOption {
|
||||||
type = types.enum [ "filesystem" "singlefile" ];
|
type = types.enum [ "filesystem" "singlefile" ];
|
||||||
default = "filesystem";
|
|
||||||
description = "The type of the storage.";
|
description = "The type of the storage.";
|
||||||
};
|
};
|
||||||
|
|
||||||
fileExt = mkOption {
|
fileExt = mkOption {
|
||||||
type = types.nullOr types.str;
|
type = types.nullOr types.str;
|
||||||
default = ".ics";
|
default = null;
|
||||||
description = "The file extension to use.";
|
description = "The file extension to use.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -58,6 +57,15 @@ let
|
||||||
description = "User name for authentication.";
|
description = "User name for authentication.";
|
||||||
};
|
};
|
||||||
|
|
||||||
|
# userNameCommand = mkOption {
|
||||||
|
# type = types.nullOr (types.listOf types.str);
|
||||||
|
# default = null;
|
||||||
|
# example = [ "~/get-username.sh" ];
|
||||||
|
# description = ''
|
||||||
|
# A command that prints the user name to standard output.
|
||||||
|
# '';
|
||||||
|
# };
|
||||||
|
|
||||||
passwordCommand = mkOption {
|
passwordCommand = mkOption {
|
||||||
type = types.nullOr (types.listOf types.str);
|
type = types.nullOr (types.listOf types.str);
|
||||||
default = null;
|
default = null;
|
||||||
|
@ -90,8 +98,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
primaryCollection = mkOption {
|
primaryCollection = mkOption {
|
||||||
type = types.nullOr types.str;
|
type = types.str;
|
||||||
default = null;
|
|
||||||
description = ''
|
description = ''
|
||||||
The primary collection of the account. Required when an
|
The primary collection of the account. Required when an
|
||||||
account has multiple collections.
|
account has multiple collections.
|
||||||
|
@ -99,8 +106,8 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
local = mkOption {
|
local = mkOption {
|
||||||
type = localModule name;
|
type = types.nullOr (localModule name);
|
||||||
default = { };
|
default = null;
|
||||||
description = ''
|
description = ''
|
||||||
Local configuration for the calendar.
|
Local configuration for the calendar.
|
||||||
'';
|
'';
|
||||||
|
@ -122,7 +129,6 @@ in {
|
||||||
options.accounts.calendar = {
|
options.accounts.calendar = {
|
||||||
basePath = mkOption {
|
basePath = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
example = ".calendar";
|
|
||||||
apply = p:
|
apply = p:
|
||||||
if hasPrefix "/" p then p else "${config.home.homeDirectory}/${p}";
|
if hasPrefix "/" p then p else "${config.home.homeDirectory}/${p}";
|
||||||
description = ''
|
description = ''
|
||||||
|
|
|
@ -126,7 +126,6 @@ in {
|
||||||
contactOpts
|
contactOpts
|
||||||
(import ../programs/vdirsyncer-accounts.nix)
|
(import ../programs/vdirsyncer-accounts.nix)
|
||||||
(import ../programs/khal-accounts.nix)
|
(import ../programs/khal-accounts.nix)
|
||||||
(import ../programs/khal-contact-accounts.nix)
|
|
||||||
]);
|
]);
|
||||||
default = { };
|
default = { };
|
||||||
description = "List of contacts.";
|
description = "List of contacts.";
|
||||||
|
|
|
@ -493,14 +493,13 @@ in {
|
||||||
maildirBasePath = mkOption {
|
maildirBasePath = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
default = "${config.home.homeDirectory}/Maildir";
|
default = "${config.home.homeDirectory}/Maildir";
|
||||||
defaultText = "Maildir";
|
defaultText = "$HOME/Maildir";
|
||||||
apply = p:
|
apply = p:
|
||||||
if hasPrefix "/" p then p else "${config.home.homeDirectory}/${p}";
|
if hasPrefix "/" p then p else "${config.home.homeDirectory}/${p}";
|
||||||
description = ''
|
description = ''
|
||||||
The base directory for account maildir directories. May be a
|
The base directory for account maildir directories. May be a
|
||||||
relative path (e.g. the user setting this value as "MyMaildir"),
|
relative path, in which case it is relative the home
|
||||||
in which case it is relative the home directory (e.g. resulting
|
directory.
|
||||||
in "~/MyMaildir").
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -67,7 +67,7 @@ let
|
||||||
};
|
};
|
||||||
|
|
||||||
in {
|
in {
|
||||||
meta.maintainers = [ maintainers.league ];
|
meta.maintainers = [ maintainers.polykernel maintainers.league ];
|
||||||
|
|
||||||
imports = [
|
imports = [
|
||||||
(mkAliasOptionModule [ "xsession" "pointerCursor" "package" ] [
|
(mkAliasOptionModule [ "xsession" "pointerCursor" "package" ] [
|
||||||
|
|
|
@ -1,9 +1,12 @@
|
||||||
{ configuration, pkgs, lib ? pkgs.lib
|
{ configuration
|
||||||
|
, pkgs
|
||||||
|
, lib ? pkgs.lib
|
||||||
|
|
||||||
# Whether to check that each option has a matching declaration.
|
# Whether to check that each option has a matching declaration.
|
||||||
, check ? true
|
, check ? true
|
||||||
# Extra arguments passed to specialArgs.
|
# Extra arguments passed to specialArgs.
|
||||||
, extraSpecialArgs ? { } }:
|
, extraSpecialArgs ? { }
|
||||||
|
}:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
|
||||||
|
@ -13,37 +16,39 @@ let
|
||||||
map (x: x.message) (filter (x: !x.assertion) cfg.assertions);
|
map (x: x.message) (filter (x: !x.assertion) cfg.assertions);
|
||||||
|
|
||||||
showWarnings = res:
|
showWarnings = res:
|
||||||
let f = w: x: builtins.trace "[1;31mwarning: ${w}[0m" x;
|
let
|
||||||
in fold f res res.config.warnings;
|
f = w: x: builtins.trace "[1;31mwarning: ${w}[0m" x;
|
||||||
|
in
|
||||||
|
fold f res res.config.warnings;
|
||||||
|
|
||||||
extendedLib = import ./lib/stdlib-extended.nix lib;
|
extendedLib = import ./lib/stdlib-extended.nix lib;
|
||||||
|
|
||||||
hmModules = import ./modules.nix {
|
hmModules =
|
||||||
|
import ./modules.nix {
|
||||||
inherit check pkgs;
|
inherit check pkgs;
|
||||||
lib = extendedLib;
|
lib = extendedLib;
|
||||||
};
|
};
|
||||||
|
|
||||||
rawModule = extendedLib.evalModules {
|
rawModule = extendedLib.evalModules {
|
||||||
modules = [ configuration ] ++ hmModules;
|
modules = [ configuration ] ++ hmModules;
|
||||||
class = "homeManager";
|
specialArgs = {
|
||||||
specialArgs = { modulesPath = builtins.toString ./.; } // extraSpecialArgs;
|
modulesPath = builtins.toString ./.;
|
||||||
|
} // extraSpecialArgs;
|
||||||
};
|
};
|
||||||
|
|
||||||
moduleChecks = raw:
|
module = showWarnings (
|
||||||
showWarnings (let
|
let
|
||||||
failed = collectFailed raw.config;
|
failed = collectFailed rawModule.config;
|
||||||
failedStr = concatStringsSep "\n" (map (x: "- ${x}") failed);
|
failedStr = concatStringsSep "\n" (map (x: "- ${x}") failed);
|
||||||
in if failed == [ ] then
|
in
|
||||||
raw
|
if failed == []
|
||||||
else
|
then rawModule
|
||||||
throw ''
|
else throw "\nFailed assertions:\n${failedStr}"
|
||||||
|
);
|
||||||
|
|
||||||
Failed assertions:
|
in
|
||||||
${failedStr}'');
|
|
||||||
|
|
||||||
withExtraAttrs = rawModule:
|
{
|
||||||
let module = moduleChecks rawModule;
|
|
||||||
in {
|
|
||||||
inherit (module) options config;
|
inherit (module) options config;
|
||||||
|
|
||||||
activationPackage = module.config.home.activationPackage;
|
activationPackage = module.config.home.activationPackage;
|
||||||
|
@ -52,11 +57,10 @@ let
|
||||||
activation-script = module.config.home.activationPackage;
|
activation-script = module.config.home.activationPackage;
|
||||||
|
|
||||||
newsDisplay = rawModule.config.news.display;
|
newsDisplay = rawModule.config.news.display;
|
||||||
newsEntries = sort (a: b: a.time > b.time)
|
newsEntries =
|
||||||
(filter (a: a.condition) rawModule.config.news.entries);
|
sort (a: b: a.time > b.time) (
|
||||||
|
filter (a: a.condition) rawModule.config.news.entries
|
||||||
|
);
|
||||||
|
|
||||||
inherit (module._module.args) pkgs;
|
inherit (module._module.args) pkgs;
|
||||||
|
}
|
||||||
extendModules = args: withExtraAttrs (rawModule.extendModules args);
|
|
||||||
};
|
|
||||||
in withExtraAttrs rawModule
|
|
||||||
|
|
|
@ -79,14 +79,59 @@ in
|
||||||
(mapAttrsToList (n: v: v.target)
|
(mapAttrsToList (n: v: v.target)
|
||||||
(filterAttrs (n: v: v.force) cfg));
|
(filterAttrs (n: v: v.force) cfg));
|
||||||
|
|
||||||
storeDir = escapeShellArg builtins.storeDir;
|
check = pkgs.writeText "check" ''
|
||||||
|
${config.lib.bash.initHomeManagerLib}
|
||||||
|
|
||||||
check = pkgs.substituteAll {
|
# A symbolic link whose target path matches this pattern will be
|
||||||
src = ./files/check-link-targets.sh;
|
# considered part of a Home Manager generation.
|
||||||
|
homeFilePattern="$(readlink -e ${escapeShellArg builtins.storeDir})/*-home-manager-files/*"
|
||||||
|
|
||||||
inherit (config.lib.bash) initHomeManagerLib;
|
forcedPaths=(${forcedPaths})
|
||||||
inherit forcedPaths storeDir;
|
|
||||||
};
|
newGenFiles="$1"
|
||||||
|
shift
|
||||||
|
for sourcePath in "$@" ; do
|
||||||
|
relativePath="''${sourcePath#$newGenFiles/}"
|
||||||
|
targetPath="$HOME/$relativePath"
|
||||||
|
|
||||||
|
forced=""
|
||||||
|
for forcedPath in "''${forcedPaths[@]}"; do
|
||||||
|
if [[ $targetPath == $forcedPath* ]]; then
|
||||||
|
forced="yeah"
|
||||||
|
break
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ -n $forced ]]; then
|
||||||
|
$VERBOSE_ECHO "Skipping collision check for $targetPath"
|
||||||
|
elif [[ -e "$targetPath" \
|
||||||
|
&& ! "$(readlink "$targetPath")" == $homeFilePattern ]] ; then
|
||||||
|
# The target file already exists and it isn't a symlink owned by Home Manager.
|
||||||
|
if cmp -s "$sourcePath" "$targetPath"; then
|
||||||
|
# First compare the files' content. If they're equal, we're fine.
|
||||||
|
warnEcho "Existing file '$targetPath' is in the way of '$sourcePath', will be skipped since they are the same"
|
||||||
|
elif [[ ! -L "$targetPath" && -n "$HOME_MANAGER_BACKUP_EXT" ]] ; then
|
||||||
|
# Next, try to move the file to a backup location if configured and possible
|
||||||
|
backup="$targetPath.$HOME_MANAGER_BACKUP_EXT"
|
||||||
|
if [[ -e "$backup" ]]; then
|
||||||
|
errorEcho "Existing file '$backup' would be clobbered by backing up '$targetPath'"
|
||||||
|
collision=1
|
||||||
|
else
|
||||||
|
warnEcho "Existing file '$targetPath' is in the way of '$sourcePath', will be moved to '$backup'"
|
||||||
|
fi
|
||||||
|
else
|
||||||
|
# Fail if nothing else works
|
||||||
|
errorEcho "Existing file '$targetPath' is in the way of '$sourcePath'"
|
||||||
|
collision=1
|
||||||
|
fi
|
||||||
|
fi
|
||||||
|
done
|
||||||
|
|
||||||
|
if [[ -v collision ]] ; then
|
||||||
|
errorEcho "Please move the above files and try again or use 'home-manager switch -b backup' to back up existing files automatically."
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
'';
|
||||||
in
|
in
|
||||||
''
|
''
|
||||||
function checkNewGenCollision() {
|
function checkNewGenCollision() {
|
||||||
|
@ -124,8 +169,6 @@ in
|
||||||
home.activation.linkGeneration = hm.dag.entryAfter ["writeBoundary"] (
|
home.activation.linkGeneration = hm.dag.entryAfter ["writeBoundary"] (
|
||||||
let
|
let
|
||||||
link = pkgs.writeShellScript "link" ''
|
link = pkgs.writeShellScript "link" ''
|
||||||
${config.lib.bash.initHomeManagerLib}
|
|
||||||
|
|
||||||
newGenFiles="$1"
|
newGenFiles="$1"
|
||||||
shift
|
shift
|
||||||
for sourcePath in "$@" ; do
|
for sourcePath in "$@" ; do
|
||||||
|
@ -134,17 +177,17 @@ in
|
||||||
if [[ -e "$targetPath" && ! -L "$targetPath" && -n "$HOME_MANAGER_BACKUP_EXT" ]] ; then
|
if [[ -e "$targetPath" && ! -L "$targetPath" && -n "$HOME_MANAGER_BACKUP_EXT" ]] ; then
|
||||||
# The target exists, back it up
|
# The target exists, back it up
|
||||||
backup="$targetPath.$HOME_MANAGER_BACKUP_EXT"
|
backup="$targetPath.$HOME_MANAGER_BACKUP_EXT"
|
||||||
run mv $VERBOSE_ARG "$targetPath" "$backup" || errorEcho "Moving '$targetPath' failed!"
|
$DRY_RUN_CMD mv $VERBOSE_ARG "$targetPath" "$backup" || errorEcho "Moving '$targetPath' failed!"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [[ -e "$targetPath" && ! -L "$targetPath" ]] && cmp -s "$sourcePath" "$targetPath" ; then
|
if [[ -e "$targetPath" && ! -L "$targetPath" ]] && cmp -s "$sourcePath" "$targetPath" ; then
|
||||||
# The target exists but is identical – don't do anything.
|
# The target exists but is identical – don't do anything.
|
||||||
verboseEcho "Skipping '$targetPath' as it is identical to '$sourcePath'"
|
$VERBOSE_ECHO "Skipping '$targetPath' as it is identical to '$sourcePath'"
|
||||||
else
|
else
|
||||||
# Place that symlink, --force
|
# Place that symlink, --force
|
||||||
# This can still fail if the target is a directory, in which case we bail out.
|
# This can still fail if the target is a directory, in which case we bail out.
|
||||||
run mkdir -p $VERBOSE_ARG "$(dirname "$targetPath")"
|
$DRY_RUN_CMD mkdir -p $VERBOSE_ARG "$(dirname "$targetPath")"
|
||||||
run ln -Tsf $VERBOSE_ARG "$sourcePath" "$targetPath" || exit 1
|
$DRY_RUN_CMD ln -Tsf $VERBOSE_ARG "$sourcePath" "$targetPath" || exit 1
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
|
@ -161,12 +204,12 @@ in
|
||||||
for relativePath in "$@" ; do
|
for relativePath in "$@" ; do
|
||||||
targetPath="$HOME/$relativePath"
|
targetPath="$HOME/$relativePath"
|
||||||
if [[ -e "$newGenFiles/$relativePath" ]] ; then
|
if [[ -e "$newGenFiles/$relativePath" ]] ; then
|
||||||
verboseEcho "Checking $targetPath: exists"
|
$VERBOSE_ECHO "Checking $targetPath: exists"
|
||||||
elif [[ ! "$(readlink "$targetPath")" == $homeFilePattern ]] ; then
|
elif [[ ! "$(readlink "$targetPath")" == $homeFilePattern ]] ; then
|
||||||
warnEcho "Path '$targetPath' does not link into a Home Manager generation. Skipping delete."
|
warnEcho "Path '$targetPath' does not link into a Home Manager generation. Skipping delete."
|
||||||
else
|
else
|
||||||
verboseEcho "Checking $targetPath: gone (deleting)"
|
$VERBOSE_ECHO "Checking $targetPath: gone (deleting)"
|
||||||
run rm $VERBOSE_ARG "$targetPath"
|
$DRY_RUN_CMD rm $VERBOSE_ARG "$targetPath"
|
||||||
|
|
||||||
# Recursively delete empty parent directories.
|
# Recursively delete empty parent directories.
|
||||||
targetDir="$(dirname "$relativePath")"
|
targetDir="$(dirname "$relativePath")"
|
||||||
|
@ -176,7 +219,7 @@ in
|
||||||
# Call rmdir with a relative path excluding $HOME.
|
# Call rmdir with a relative path excluding $HOME.
|
||||||
# Otherwise, it might try to delete $HOME and exit
|
# Otherwise, it might try to delete $HOME and exit
|
||||||
# with a permission error.
|
# with a permission error.
|
||||||
run rmdir $VERBOSE_ARG \
|
$DRY_RUN_CMD rmdir $VERBOSE_ARG \
|
||||||
-p --ignore-fail-on-non-empty \
|
-p --ignore-fail-on-non-empty \
|
||||||
"$targetDir"
|
"$targetDir"
|
||||||
|
|
||||||
|
@ -223,15 +266,15 @@ in
|
||||||
# `nix profile remove '.*' --profile "$genProfilePath"` was not working, so here is a workaround:
|
# `nix profile remove '.*' --profile "$genProfilePath"` was not working, so here is a workaround:
|
||||||
nix profile list --profile "$genProfilePath" \
|
nix profile list --profile "$genProfilePath" \
|
||||||
| cut -d ' ' -f 4 \
|
| cut -d ' ' -f 4 \
|
||||||
| xargs -rt $DRY_RUN_CMD nix profile remove $VERBOSE_ARG --profile "$genProfilePath"
|
| xargs -t $DRY_RUN_CMD nix profile remove $VERBOSE_ARG --profile "$genProfilePath"
|
||||||
run nix profile install $VERBOSE_ARG --profile "$genProfilePath" "$newGenPath"
|
$DRY_RUN_CMD nix profile install $VERBOSE_ARG --profile "$genProfilePath" "$newGenPath"
|
||||||
else
|
else
|
||||||
run nix-env $VERBOSE_ARG --profile "$genProfilePath" --set "$newGenPath"
|
$DRY_RUN_CMD nix-env $VERBOSE_ARG --profile "$genProfilePath" --set "$newGenPath"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
run --quiet nix-store --realise "$newGenPath" --add-root "$newGenGcPath" --indirect
|
$DRY_RUN_CMD nix-store --realise "$newGenPath" --add-root "$newGenGcPath" > "$DRY_RUN_NULL"
|
||||||
if [[ -e "$legacyGenGcPath" ]]; then
|
if [[ -e "$legacyGenGcPath" ]]; then
|
||||||
run rm $VERBOSE_ARG "$legacyGenGcPath"
|
$DRY_RUN_CMD rm $VERBOSE_ARG "$legacyGenGcPath"
|
||||||
fi
|
fi
|
||||||
else
|
else
|
||||||
_i "No change so reusing latest profile generation %s" "$oldGenNum"
|
_i "No change so reusing latest profile generation %s" "$oldGenNum"
|
||||||
|
|
|
@ -1,59 +0,0 @@
|
||||||
# -*- mode: sh; sh-shell: bash -*-
|
|
||||||
|
|
||||||
@initHomeManagerLib@
|
|
||||||
|
|
||||||
# A symbolic link whose target path matches this pattern will be
|
|
||||||
# considered part of a Home Manager generation.
|
|
||||||
homeFilePattern="$(readlink -e @storeDir@)/*-home-manager-files/*"
|
|
||||||
|
|
||||||
forcedPaths=(@forcedPaths@)
|
|
||||||
|
|
||||||
newGenFiles="$1"
|
|
||||||
shift
|
|
||||||
for sourcePath in "$@" ; do
|
|
||||||
relativePath="${sourcePath#$newGenFiles/}"
|
|
||||||
targetPath="$HOME/$relativePath"
|
|
||||||
|
|
||||||
forced=""
|
|
||||||
for forcedPath in "${forcedPaths[@]}"; do
|
|
||||||
if [[ $targetPath == $forcedPath* ]]; then
|
|
||||||
forced="yeah"
|
|
||||||
break
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
if [[ -n $forced ]]; then
|
|
||||||
verboseEcho "Skipping collision check for $targetPath"
|
|
||||||
elif [[ -e "$targetPath" \
|
|
||||||
&& ! "$(readlink "$targetPath")" == $homeFilePattern ]] ; then
|
|
||||||
# The target file already exists and it isn't a symlink owned by Home Manager.
|
|
||||||
if cmp -s "$sourcePath" "$targetPath"; then
|
|
||||||
# First compare the files' content. If they're equal, we're fine.
|
|
||||||
warnEcho "Existing file '$targetPath' is in the way of '$sourcePath', will be skipped since they are the same"
|
|
||||||
elif [[ ! -L "$targetPath" && -n "$HOME_MANAGER_BACKUP_EXT" ]] ; then
|
|
||||||
# Next, try to move the file to a backup location if configured and possible
|
|
||||||
backup="$targetPath.$HOME_MANAGER_BACKUP_EXT"
|
|
||||||
if [[ -e "$backup" ]]; then
|
|
||||||
errorEcho "Existing file '$backup' would be clobbered by backing up '$targetPath'"
|
|
||||||
collision=1
|
|
||||||
else
|
|
||||||
warnEcho "Existing file '$targetPath' is in the way of '$sourcePath', will be moved to '$backup'"
|
|
||||||
fi
|
|
||||||
else
|
|
||||||
# Fail if nothing else works
|
|
||||||
errorEcho "Existing file '$targetPath' is in the way of '$sourcePath'"
|
|
||||||
collision=1
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
done
|
|
||||||
|
|
||||||
if [[ -v collision ]] ; then
|
|
||||||
errorEcho "Please do one of the following:
|
|
||||||
- Move or remove the above files and try again.
|
|
||||||
- In standalone mode, use 'home-manager switch -b backup' to back up
|
|
||||||
files automatically.
|
|
||||||
- When used as a NixOS or nix-darwin module, set
|
|
||||||
'home-manager.backupFileExtension'
|
|
||||||
to, for example, 'backup' and rebuild."
|
|
||||||
exit 1
|
|
||||||
fi
|
|
|
@ -175,7 +175,7 @@ in
|
||||||
done automatically if the shell configuration is managed by Home
|
done automatically if the shell configuration is managed by Home
|
||||||
Manager. If not, then you must source the
|
Manager. If not, then you must source the
|
||||||
|
|
||||||
${cfg.profileDirectory}/etc/profile.d/hm-session-vars.sh
|
~/.nix-profile/etc/profile.d/hm-session-vars.sh
|
||||||
|
|
||||||
file yourself.
|
file yourself.
|
||||||
'')
|
'')
|
||||||
|
@ -374,7 +374,7 @@ in
|
||||||
example = literalExpression ''
|
example = literalExpression ''
|
||||||
{
|
{
|
||||||
myActivationAction = lib.hm.dag.entryAfter ["writeBoundary"] '''
|
myActivationAction = lib.hm.dag.entryAfter ["writeBoundary"] '''
|
||||||
run ln -s $VERBOSE_ARG \
|
$DRY_RUN_CMD ln -s $VERBOSE_ARG \
|
||||||
''${builtins.toPath ./link-me-directly} $HOME
|
''${builtins.toPath ./link-me-directly} $HOME
|
||||||
''';
|
''';
|
||||||
}
|
}
|
||||||
|
@ -396,32 +396,18 @@ in
|
||||||
collisions between non-managed files and files defined in
|
collisions between non-managed files and files defined in
|
||||||
[](#opt-home.file).
|
[](#opt-home.file).
|
||||||
|
|
||||||
A script block should respect the {var}`DRY_RUN` variable. If it is set
|
A script block should respect the {var}`DRY_RUN`
|
||||||
then the actions taken by the script should be logged to standard out
|
variable, if it is set then the actions taken by the script
|
||||||
and not actually performed. A convenient shell function {command}`run`
|
should be logged to standard out and not actually performed.
|
||||||
is provided for activation script blocks. It is used as follows:
|
The variable {var}`DRY_RUN_CMD` is set to
|
||||||
|
{command}`echo` if dry run is enabled.
|
||||||
|
|
||||||
{command}`run {command}`
|
A script block should also respect the
|
||||||
: Runs the given command on live run, otherwise prints the command to
|
{var}`VERBOSE` variable, and if set print
|
||||||
standard output.
|
information on standard out that may be useful for debugging
|
||||||
|
any issue that may arise. The variable
|
||||||
{command}`run --quiet {command}`
|
{var}`VERBOSE_ARG` is set to
|
||||||
: Runs the given command on live run and sends its standard output to
|
{option}`--verbose` if verbose output is enabled.
|
||||||
{file}`/dev/null`, otherwise prints the command to standard output.
|
|
||||||
|
|
||||||
{command}`run --silence {command}`
|
|
||||||
: Runs the given command on live run and sends its standard and error
|
|
||||||
output to {file}`/dev/null`, otherwise prints the command to standard
|
|
||||||
output.
|
|
||||||
|
|
||||||
The `--quiet` and `--silence` flags are mutually exclusive.
|
|
||||||
|
|
||||||
A script block should also respect the {var}`VERBOSE` variable, and if
|
|
||||||
set print information on standard out that may be useful for debugging
|
|
||||||
any issue that may arise. The variable {var}`VERBOSE_ARG` is set to
|
|
||||||
{option}`--verbose` if verbose output is enabled. You can also use the
|
|
||||||
provided shell function {command}`verboseEcho`, which acts as
|
|
||||||
{command}`echo` when verbose output is enabled.
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -473,12 +459,6 @@ in
|
||||||
will be printed when the user configuration is being built.
|
will be printed when the user configuration is being built.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
home.preferXdgDirectories = mkEnableOption "" // {
|
|
||||||
description = ''
|
|
||||||
Whether to make programs use XDG directories whenever supported.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
|
@ -605,26 +585,52 @@ in
|
||||||
if config.submoduleSupport.externalPackageInstall
|
if config.submoduleSupport.externalPackageInstall
|
||||||
then
|
then
|
||||||
''
|
''
|
||||||
nixProfileRemove home-manager-path
|
if [[ -e $HOME/.nix-profile/manifest.json ]] ; then
|
||||||
|
nix profile list \
|
||||||
|
| { grep 'home-manager-path$' || test $? = 1; } \
|
||||||
|
| cut -d ' ' -f 4 \
|
||||||
|
| xargs -t $DRY_RUN_CMD nix profile remove $VERBOSE_ARG
|
||||||
|
else
|
||||||
|
if nix-env -q | grep '^home-manager-path$'; then
|
||||||
|
$DRY_RUN_CMD nix-env -e home-manager-path
|
||||||
|
fi
|
||||||
|
fi
|
||||||
''
|
''
|
||||||
else
|
else
|
||||||
''
|
''
|
||||||
|
function nixProfileList() {
|
||||||
|
# We attempt to use `--json` first (added in Nix 2.17). Otherwise attempt to
|
||||||
|
# parse the legacy output format.
|
||||||
|
{
|
||||||
|
nix profile list --json 2>/dev/null \
|
||||||
|
| jq -r --arg name "$1" '.elements[].storePaths[] | select(endswith($name))'
|
||||||
|
} || {
|
||||||
|
nix profile list \
|
||||||
|
| { grep "$1\$" || test $? = 1; } \
|
||||||
|
| cut -d ' ' -f 4
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
function nixRemoveProfileByName() {
|
||||||
|
nixProfileList "$1" | xargs -t $DRY_RUN_CMD nix profile remove $VERBOSE_ARG
|
||||||
|
}
|
||||||
|
|
||||||
function nixReplaceProfile() {
|
function nixReplaceProfile() {
|
||||||
local oldNix="$(command -v nix)"
|
local oldNix="$(command -v nix)"
|
||||||
|
|
||||||
nixProfileRemove 'home-manager-path'
|
nixRemoveProfileByName 'home-manager-path'
|
||||||
|
|
||||||
run $oldNix profile install $1
|
$DRY_RUN_CMD $oldNix profile install $1
|
||||||
}
|
}
|
||||||
|
|
||||||
if [[ -e ${cfg.profileDirectory}/manifest.json ]] ; then
|
if [[ -e $HOME/.nix-profile/manifest.json ]] ; then
|
||||||
INSTALL_CMD="nix profile install"
|
INSTALL_CMD="nix profile install"
|
||||||
INSTALL_CMD_ACTUAL="nixReplaceProfile"
|
INSTALL_CMD_ACTUAL="nixReplaceProfile"
|
||||||
LIST_CMD="nix profile list"
|
LIST_CMD="nix profile list"
|
||||||
REMOVE_CMD_SYNTAX='nix profile remove {number | store path}'
|
REMOVE_CMD_SYNTAX='nix profile remove {number | store path}'
|
||||||
else
|
else
|
||||||
INSTALL_CMD="nix-env -i"
|
INSTALL_CMD="nix-env -i"
|
||||||
INSTALL_CMD_ACTUAL="run nix-env -i"
|
INSTALL_CMD_ACTUAL="$DRY_RUN_CMD nix-env -i"
|
||||||
LIST_CMD="nix-env -q"
|
LIST_CMD="nix-env -q"
|
||||||
REMOVE_CMD_SYNTAX='nix-env -e {package name}'
|
REMOVE_CMD_SYNTAX='nix-env -e {package name}'
|
||||||
fi
|
fi
|
||||||
|
@ -634,7 +640,7 @@ in
|
||||||
_iError $'Oops, Nix failed to install your new Home Manager profile!\n\nPerhaps there is a conflict with a package that was installed using\n"%s"? Try running\n\n %s\n\nand if there is a conflicting package you can remove it with\n\n %s\n\nThen try activating your Home Manager configuration again.' "$INSTALL_CMD" "$LIST_CMD" "$REMOVE_CMD_SYNTAX"
|
_iError $'Oops, Nix failed to install your new Home Manager profile!\n\nPerhaps there is a conflict with a package that was installed using\n"%s"? Try running\n\n %s\n\nand if there is a conflicting package you can remove it with\n\n %s\n\nThen try activating your Home Manager configuration again.' "$INSTALL_CMD" "$LIST_CMD" "$REMOVE_CMD_SYNTAX"
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
unset -f nixReplaceProfile
|
unset -f nixProfileList nixRemoveProfileByName nixReplaceProfile
|
||||||
unset INSTALL_CMD INSTALL_CMD_ACTUAL LIST_CMD REMOVE_CMD_SYNTAX
|
unset INSTALL_CMD INSTALL_CMD_ACTUAL LIST_CMD REMOVE_CMD_SYNTAX
|
||||||
''
|
''
|
||||||
);
|
);
|
||||||
|
|
|
@ -5,8 +5,7 @@ with lib;
|
||||||
let
|
let
|
||||||
im = config.i18n.inputMethod;
|
im = config.i18n.inputMethod;
|
||||||
cfg = im.fcitx5;
|
cfg = im.fcitx5;
|
||||||
fcitx5Package =
|
fcitx5Package = pkgs.fcitx5-with-addons.override { inherit (cfg) addons; };
|
||||||
pkgs.libsForQt5.fcitx5-with-addons.override { inherit (cfg) addons; };
|
|
||||||
in {
|
in {
|
||||||
options = {
|
options = {
|
||||||
i18n.inputMethod.fcitx5 = {
|
i18n.inputMethod.fcitx5 = {
|
||||||
|
|
|
@ -1,29 +1,30 @@
|
||||||
{ config, pkgs, lib, ... }:
|
{ config, pkgs, lib, generators, ... }:
|
||||||
|
with lib;
|
||||||
let
|
let
|
||||||
inherit (lib) literalExpression mkIf mkOption mkRemovedOptionModule types;
|
|
||||||
|
|
||||||
cfg = config.i18n.inputMethod.kime;
|
cfg = config.i18n.inputMethod.kime;
|
||||||
|
yamlFormat = pkgs.formats.yaml { };
|
||||||
in {
|
in {
|
||||||
imports = [
|
|
||||||
(mkRemovedOptionModule [ "i18n" "inputMethod" "kime" "config" ] ''
|
|
||||||
Please use 'i18n.inputMethod.kime.extraConfig' instead.
|
|
||||||
'')
|
|
||||||
];
|
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
i18n.inputMethod.kime = {
|
i18n.inputMethod.kime = {
|
||||||
extraConfig = mkOption {
|
config = mkOption {
|
||||||
type = types.lines;
|
type = yamlFormat.type;
|
||||||
default = "";
|
default = { };
|
||||||
example = literalExpression ''
|
example = literalExpression ''
|
||||||
daemon:
|
{
|
||||||
modules: [Xim,Indicator]
|
daemon = {
|
||||||
indicator:
|
modules = ["Xim" "Indicator"];
|
||||||
icon_color: White
|
};
|
||||||
engine:
|
|
||||||
hangul:
|
indicator = {
|
||||||
layout: dubeolsik
|
icon_color = "White";
|
||||||
|
};
|
||||||
|
|
||||||
|
engine = {
|
||||||
|
hangul = {
|
||||||
|
layout = "dubeolsik";
|
||||||
|
};
|
||||||
|
};
|
||||||
|
}
|
||||||
'';
|
'';
|
||||||
description = ''
|
description = ''
|
||||||
kime configuration. Refer to
|
kime configuration. Refer to
|
||||||
|
@ -43,7 +44,8 @@ in {
|
||||||
XMODIFIERS = "@im=kime";
|
XMODIFIERS = "@im=kime";
|
||||||
};
|
};
|
||||||
|
|
||||||
xdg.configFile."kime/config.yaml".text = cfg.extraConfig;
|
xdg.configFile."kime/config.yaml".text =
|
||||||
|
replaceStrings [ "\\\\" ] [ "\\" ] (builtins.toJSON cfg.config);
|
||||||
|
|
||||||
systemd.user.services.kime-daemon = {
|
systemd.user.services.kime-daemon = {
|
||||||
Unit = {
|
Unit = {
|
||||||
|
|
|
@ -162,7 +162,7 @@ in {
|
||||||
fi
|
fi
|
||||||
if [[ -f "$dstPath" ]]; then
|
if [[ -f "$dstPath" ]]; then
|
||||||
for (( i = 0; i < bootout_retries; i++ )); do
|
for (( i = 0; i < bootout_retries; i++ )); do
|
||||||
run /bin/launchctl bootout "$domain/$agentName" || err=$?
|
$DRY_RUN_CMD /bin/launchctl bootout "$domain/$agentName" || err=$?
|
||||||
if [[ -v DRY_RUN ]]; then
|
if [[ -v DRY_RUN ]]; then
|
||||||
break
|
break
|
||||||
fi
|
fi
|
||||||
|
@ -177,8 +177,8 @@ in {
|
||||||
return 1
|
return 1
|
||||||
fi
|
fi
|
||||||
fi
|
fi
|
||||||
run install -Dm444 -T "$srcPath" "$dstPath"
|
$DRY_RUN_CMD install -Dm444 -T "$srcPath" "$dstPath"
|
||||||
run /bin/launchctl bootstrap "$domain" "$dstPath"
|
$DRY_RUN_CMD /bin/launchctl bootstrap "$domain" "$dstPath"
|
||||||
done
|
done
|
||||||
|
|
||||||
if [[ ! -e "$oldDir" ]]; then
|
if [[ ! -e "$oldDir" ]]; then
|
||||||
|
@ -194,7 +194,7 @@ in {
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
|
||||||
run /bin/launchctl bootout "$domain/$agentName" || :
|
$DRY_RUN_CMD /bin/launchctl bootout "$domain/$agentName" || :
|
||||||
if [[ ! -e "$dstPath" ]]; then
|
if [[ ! -e "$dstPath" ]]; then
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
|
@ -202,7 +202,7 @@ in {
|
||||||
warnEcho "Skipping deletion of '$dstPath', since its contents have diverged"
|
warnEcho "Skipping deletion of '$dstPath', since its contents have diverged"
|
||||||
continue
|
continue
|
||||||
fi
|
fi
|
||||||
run rm -f $VERBOSE_ARG "$dstPath"
|
$DRY_RUN_CMD rm -f $VERBOSE_ARG "$dstPath"
|
||||||
done
|
done
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -34,8 +34,7 @@ function migrateProfile() {
|
||||||
function setupVars() {
|
function setupVars() {
|
||||||
declare -r stateHome="${XDG_STATE_HOME:-$HOME/.local/state}"
|
declare -r stateHome="${XDG_STATE_HOME:-$HOME/.local/state}"
|
||||||
declare -r userNixStateDir="$stateHome/nix"
|
declare -r userNixStateDir="$stateHome/nix"
|
||||||
declare -gr hmStatePath="$stateHome/home-manager"
|
declare -r hmGcrootsDir="$stateHome/home-manager/gcroots"
|
||||||
declare -r hmGcrootsDir="$hmStatePath/gcroots"
|
|
||||||
|
|
||||||
declare -r globalNixStateDir="${NIX_STATE_DIR:-/nix/var/nix}"
|
declare -r globalNixStateDir="${NIX_STATE_DIR:-/nix/var/nix}"
|
||||||
declare -r globalProfilesDir="$globalNixStateDir/profiles/per-user/$USER"
|
declare -r globalProfilesDir="$globalNixStateDir/profiles/per-user/$USER"
|
||||||
|
@ -56,7 +55,6 @@ function setupVars() {
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
declare -gr hmDataPath="${XDG_DATA_HOME:-$HOME/.local/share}/home-manager"
|
|
||||||
declare -gr genProfilePath="$profilesDir/home-manager"
|
declare -gr genProfilePath="$profilesDir/home-manager"
|
||||||
declare -gr newGenPath="@GENERATION_DIR@";
|
declare -gr newGenPath="@GENERATION_DIR@";
|
||||||
declare -gr newGenGcPath="$hmGcrootsDir/current-home"
|
declare -gr newGenGcPath="$hmGcrootsDir/current-home"
|
||||||
|
@ -80,7 +78,7 @@ function setupVars() {
|
||||||
oldGenPath="$(readlink -e "$genProfilePath")"
|
oldGenPath="$(readlink -e "$genProfilePath")"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_iVerbose "Sanity checking oldGenNum and oldGenPath"
|
$VERBOSE_RUN _i "Sanity checking oldGenNum and oldGenPath"
|
||||||
if [[ -v oldGenNum && ! -v oldGenPath
|
if [[ -v oldGenNum && ! -v oldGenPath
|
||||||
|| ! -v oldGenNum && -v oldGenPath ]]; then
|
|| ! -v oldGenNum && -v oldGenPath ]]; then
|
||||||
_i $'The previous generation number and path are in conflict! These\nmust be either both empty or both set but are now set to\n\n \'%s\' and \'%s\'\n\nIf you don\'t mind losing previous profile generations then\nthe easiest solution is probably to run\n\n rm %s/home-manager*\n rm %s/current-home\n\nand trying home-manager switch again. Good luck!' \
|
_i $'The previous generation number and path are in conflict! These\nmust be either both empty or both set but are now set to\n\n \'%s\' and \'%s\'\n\nIf you don\'t mind losing previous profile generations then\nthe easiest solution is probably to run\n\n rm %s/home-manager*\n rm %s/current-home\n\nand trying home-manager switch again. Good luck!' \
|
||||||
|
@ -90,36 +88,6 @@ function setupVars() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Helper used to list content of a `nix profile` profile.
|
|
||||||
function nixProfileList() {
|
|
||||||
# We attempt to use `--json` first (added in Nix 2.17). Otherwise attempt to
|
|
||||||
# parse the legacy output format.
|
|
||||||
{
|
|
||||||
nix profile list --json 2>/dev/null \
|
|
||||||
| jq -r --arg name "$1" '.elements[].storePaths[] | select(endswith($name))'
|
|
||||||
} || {
|
|
||||||
nix profile list \
|
|
||||||
| { grep "$1\$" || test $? = 1; } \
|
|
||||||
| cut -d ' ' -f 4
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
# Helper used to remove a package from a Nix profile. Supports both `nix-env`
|
|
||||||
# and `nix profile`.
|
|
||||||
function nixProfileRemove() {
|
|
||||||
# We don't use `cfg.profileDirectory` here because it defaults to
|
|
||||||
# `/etc/profiles/per-user/<user>` which is constructed by NixOS or
|
|
||||||
# nix-darwin and won't require uninstalling `home-manager-path`.
|
|
||||||
if [[ -e $HOME/.nix-profile/manifest.json \
|
|
||||||
|| -e ${XDG_STATE_HOME:-$HOME/.local/state}/nix/profile/manifest.json ]] ; then
|
|
||||||
nixProfileList "$1" | xargs -rt $DRY_RUN_CMD nix profile remove $VERBOSE_ARG
|
|
||||||
else
|
|
||||||
if nix-env -q | grep -q "^$1$"; then
|
|
||||||
run --quiet nix-env -e "$1"
|
|
||||||
fi
|
|
||||||
fi
|
|
||||||
}
|
|
||||||
|
|
||||||
function checkUsername() {
|
function checkUsername() {
|
||||||
local expectedUser="$1"
|
local expectedUser="$1"
|
||||||
|
|
||||||
|
@ -138,8 +106,6 @@ function checkHomeDirectory() {
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
# Note, the VERBOSE_ECHO variable is deprecated and should not be used inside
|
|
||||||
# the Home Manager project. It is provided here for backwards compatibility.
|
|
||||||
if [[ -v VERBOSE ]]; then
|
if [[ -v VERBOSE ]]; then
|
||||||
export VERBOSE_ECHO=echo
|
export VERBOSE_ECHO=echo
|
||||||
export VERBOSE_ARG="--verbose"
|
export VERBOSE_ARG="--verbose"
|
||||||
|
@ -154,8 +120,8 @@ _i "Starting Home Manager activation"
|
||||||
|
|
||||||
# Verify that we can connect to the Nix store and/or daemon. This will
|
# Verify that we can connect to the Nix store and/or daemon. This will
|
||||||
# also create the necessary directories in profiles and gcroots.
|
# also create the necessary directories in profiles and gcroots.
|
||||||
_iVerbose "Sanity checking Nix"
|
$VERBOSE_RUN _i "Sanity checking Nix"
|
||||||
nix-build --quiet --expr '{}' --no-out-link
|
nix-build --expr '{}' --no-out-link
|
||||||
|
|
||||||
# Also make sure that the Nix profiles path is created.
|
# Also make sure that the Nix profiles path is created.
|
||||||
nix-env -q > /dev/null 2>&1 || true
|
nix-env -q > /dev/null 2>&1 || true
|
||||||
|
@ -163,15 +129,12 @@ nix-env -q > /dev/null 2>&1 || true
|
||||||
migrateProfile
|
migrateProfile
|
||||||
setupVars
|
setupVars
|
||||||
|
|
||||||
# Note, the DRY_RUN_CMD and DRY_RUN_NULL variables are deprecated and should not
|
|
||||||
# be used inside the Home Manager project. They are provided here for backwards
|
|
||||||
# compatibility.
|
|
||||||
if [[ -v DRY_RUN ]] ; then
|
if [[ -v DRY_RUN ]] ; then
|
||||||
_i "This is a dry run"
|
_i "This is a dry run"
|
||||||
export DRY_RUN_CMD=echo
|
export DRY_RUN_CMD=echo
|
||||||
export DRY_RUN_NULL=/dev/stdout
|
export DRY_RUN_NULL=/dev/stdout
|
||||||
else
|
else
|
||||||
_iVerbose "This is a live run"
|
$VERBOSE_RUN _i "This is a live run"
|
||||||
export DRY_RUN_CMD=""
|
export DRY_RUN_CMD=""
|
||||||
export DRY_RUN_NULL=/dev/null
|
export DRY_RUN_NULL=/dev/null
|
||||||
fi
|
fi
|
||||||
|
@ -180,16 +143,16 @@ if [[ -v VERBOSE ]]; then
|
||||||
_i 'Using Nix version: %s' "$(nix-env --version)"
|
_i 'Using Nix version: %s' "$(nix-env --version)"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
_iVerbose "Activation variables:"
|
$VERBOSE_RUN _i "Activation variables:"
|
||||||
if [[ -v oldGenNum ]] ; then
|
if [[ -v oldGenNum ]] ; then
|
||||||
verboseEcho " oldGenNum=$oldGenNum"
|
$VERBOSE_ECHO " oldGenNum=$oldGenNum"
|
||||||
verboseEcho " oldGenPath=$oldGenPath"
|
$VERBOSE_ECHO " oldGenPath=$oldGenPath"
|
||||||
else
|
else
|
||||||
verboseEcho " oldGenNum undefined (first run?)"
|
$VERBOSE_ECHO " oldGenNum undefined (first run?)"
|
||||||
verboseEcho " oldGenPath undefined (first run?)"
|
$VERBOSE_ECHO " oldGenPath undefined (first run?)"
|
||||||
fi
|
fi
|
||||||
verboseEcho " newGenPath=$newGenPath"
|
$VERBOSE_ECHO " newGenPath=$newGenPath"
|
||||||
verboseEcho " newGenNum=$newGenNum"
|
$VERBOSE_ECHO " newGenNum=$newGenNum"
|
||||||
verboseEcho " genProfilePath=$genProfilePath"
|
$VERBOSE_ECHO " genProfilePath=$genProfilePath"
|
||||||
verboseEcho " newGenGcPath=$newGenGcPath"
|
$VERBOSE_ECHO " newGenGcPath=$newGenGcPath"
|
||||||
verboseEcho " legacyGenGcPath=$legacyGenGcPath"
|
$VERBOSE_ECHO " legacyGenGcPath=$legacyGenGcPath"
|
||||||
|
|
|
@ -1,9 +1,9 @@
|
||||||
{ homeDirectory, lib, pkgs }:
|
{ homeDirectory, lib, pkgs }:
|
||||||
|
|
||||||
let
|
let
|
||||||
inherit (lib)
|
inherit (lib) hasPrefix hm literalExpression mkDefault mkIf mkOption removePrefix types;
|
||||||
hasPrefix hm literalExpression mkDefault mkIf mkOption removePrefix types;
|
in
|
||||||
in {
|
{
|
||||||
# Constructs a type suitable for a `home.file` like option. The
|
# Constructs a type suitable for a `home.file` like option. The
|
||||||
# target path may be either absolute or relative, in which case it
|
# target path may be either absolute or relative, in which case it
|
||||||
# is relative the `basePath` argument (which itself must be an
|
# is relative the `basePath` argument (which itself must be an
|
||||||
|
@ -13,8 +13,8 @@ in {
|
||||||
# - opt the name of the option, for self-references
|
# - opt the name of the option, for self-references
|
||||||
# - basePathDesc docbook compatible description of the base path
|
# - basePathDesc docbook compatible description of the base path
|
||||||
# - basePath the file base path
|
# - basePath the file base path
|
||||||
fileType = opt: basePathDesc: basePath:
|
fileType = opt: basePathDesc: basePath: types.attrsOf (types.submodule (
|
||||||
types.attrsOf (types.submodule ({ name, config, ... }: {
|
{ name, config, ... }: {
|
||||||
options = {
|
options = {
|
||||||
enable = mkOption {
|
enable = mkOption {
|
||||||
type = types.bool;
|
type = types.bool;
|
||||||
|
@ -27,8 +27,10 @@ in {
|
||||||
target = mkOption {
|
target = mkOption {
|
||||||
type = types.str;
|
type = types.str;
|
||||||
apply = p:
|
apply = p:
|
||||||
let absPath = if hasPrefix "/" p then p else "${basePath}/${p}";
|
let
|
||||||
in removePrefix (homeDirectory + "/") absPath;
|
absPath = if hasPrefix "/" p then p else "${basePath}/${p}";
|
||||||
|
in
|
||||||
|
removePrefix (homeDirectory + "/") absPath;
|
||||||
defaultText = literalExpression "name";
|
defaultText = literalExpression "name";
|
||||||
description = ''
|
description = ''
|
||||||
Path to target file relative to ${basePathDesc}.
|
Path to target file relative to ${basePathDesc}.
|
||||||
|
@ -111,11 +113,14 @@ in {
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
target = mkDefault name;
|
target = mkDefault name;
|
||||||
source = mkIf (config.text != null) (mkDefault (pkgs.writeTextFile {
|
source = mkIf (config.text != null) (
|
||||||
|
mkDefault (pkgs.writeTextFile {
|
||||||
inherit (config) text;
|
inherit (config) text;
|
||||||
executable = config.executable == true; # can be null
|
executable = config.executable == true; # can be null
|
||||||
name = hm.strings.storeFileName name;
|
name = hm.strings.storeFileName name;
|
||||||
}));
|
})
|
||||||
|
);
|
||||||
};
|
};
|
||||||
}));
|
}
|
||||||
|
));
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,49 +1,6 @@
|
||||||
{ lib }:
|
{ lib }:
|
||||||
|
|
||||||
{
|
{
|
||||||
toHyprconf = { attrs, indentLevel ? 0, importantPrefixes ? [ "$" ], }:
|
|
||||||
let
|
|
||||||
inherit (lib)
|
|
||||||
all concatMapStringsSep concatStrings concatStringsSep filterAttrs foldl
|
|
||||||
generators hasPrefix isAttrs isList mapAttrsToList replicate;
|
|
||||||
|
|
||||||
initialIndent = concatStrings (replicate indentLevel " ");
|
|
||||||
|
|
||||||
toHyprconf' = indent: attrs:
|
|
||||||
let
|
|
||||||
sections =
|
|
||||||
filterAttrs (n: v: isAttrs v || (isList v && all isAttrs v)) attrs;
|
|
||||||
|
|
||||||
mkSection = n: attrs:
|
|
||||||
if lib.isList attrs then
|
|
||||||
(concatMapStringsSep "\n" (a: mkSection n a) attrs)
|
|
||||||
else ''
|
|
||||||
${indent}${n} {
|
|
||||||
${toHyprconf' " ${indent}" attrs}${indent}}
|
|
||||||
'';
|
|
||||||
|
|
||||||
mkFields = generators.toKeyValue {
|
|
||||||
listsAsDuplicateKeys = true;
|
|
||||||
inherit indent;
|
|
||||||
};
|
|
||||||
|
|
||||||
allFields =
|
|
||||||
filterAttrs (n: v: !(isAttrs v || (isList v && all isAttrs v)))
|
|
||||||
attrs;
|
|
||||||
|
|
||||||
isImportantField = n: _:
|
|
||||||
foldl (acc: prev: if hasPrefix prev n then true else acc) false
|
|
||||||
importantPrefixes;
|
|
||||||
|
|
||||||
importantFields = filterAttrs isImportantField allFields;
|
|
||||||
|
|
||||||
fields = builtins.removeAttrs allFields
|
|
||||||
(mapAttrsToList (n: _: n) importantFields);
|
|
||||||
in mkFields importantFields
|
|
||||||
+ concatStringsSep "\n" (mapAttrsToList mkSection sections)
|
|
||||||
+ mkFields fields;
|
|
||||||
in toHyprconf' initialIndent attrs;
|
|
||||||
|
|
||||||
toKDL = { }:
|
toKDL = { }:
|
||||||
let
|
let
|
||||||
inherit (lib) concatStringsSep splitString mapAttrsToList any;
|
inherit (lib) concatStringsSep splitString mapAttrsToList any;
|
||||||
|
@ -142,97 +99,4 @@
|
||||||
in attrs: ''
|
in attrs: ''
|
||||||
${concatStringsSep "\n" (mapAttrsToList convertAttributeToKDL attrs)}
|
${concatStringsSep "\n" (mapAttrsToList convertAttributeToKDL attrs)}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
toSCFG = { }:
|
|
||||||
let
|
|
||||||
inherit (lib) concatStringsSep mapAttrsToList any;
|
|
||||||
inherit (builtins) typeOf replaceStrings elem;
|
|
||||||
|
|
||||||
# ListOf String -> String
|
|
||||||
indentStrings = let
|
|
||||||
# Although the input of this function is a list of strings,
|
|
||||||
# the strings themselves *will* contain newlines, so you need
|
|
||||||
# to normalize the list by joining and resplitting them.
|
|
||||||
unlines = lib.splitString "\n";
|
|
||||||
lines = lib.concatStringsSep "\n";
|
|
||||||
indentAll = lines: concatStringsSep "\n" (map (x: " " + x) lines);
|
|
||||||
in stringsWithNewlines: indentAll (unlines (lines stringsWithNewlines));
|
|
||||||
|
|
||||||
# String -> Bool
|
|
||||||
specialChars = s:
|
|
||||||
any (char: elem char (reserved ++ [ " " "'" "{" "}" ]))
|
|
||||||
(lib.stringToCharacters s);
|
|
||||||
|
|
||||||
# String -> String
|
|
||||||
sanitizeString =
|
|
||||||
replaceStrings reserved [ ''\"'' "\\\\" "\\r" "\\n" "\\t" ];
|
|
||||||
|
|
||||||
reserved = [ ''"'' "\\" "\r" "\n" " " ];
|
|
||||||
|
|
||||||
# OneOf [Int Float String Bool] -> String
|
|
||||||
literalValueToString = element:
|
|
||||||
lib.throwIfNot (elem (typeOf element) [ "int" "float" "string" "bool" ])
|
|
||||||
"Cannot convert value of type ${typeOf element} to SCFG literal."
|
|
||||||
(if element == false then
|
|
||||||
"false"
|
|
||||||
else if element == true then
|
|
||||||
"true"
|
|
||||||
else if typeOf element == "string" then
|
|
||||||
if element == "" || specialChars element then
|
|
||||||
''"${sanitizeString element}"''
|
|
||||||
else
|
|
||||||
element
|
|
||||||
else
|
|
||||||
toString element);
|
|
||||||
|
|
||||||
# Bool -> ListOf (OneOf [Int Float String Bool]) -> String
|
|
||||||
toOptParamsString = cond: list:
|
|
||||||
lib.optionalString (cond) (lib.pipe list [
|
|
||||||
(map literalValueToString)
|
|
||||||
(concatStringsSep " ")
|
|
||||||
(s: " " + s)
|
|
||||||
]);
|
|
||||||
|
|
||||||
# Attrset Conversion
|
|
||||||
# String -> AttrsOf Anything -> String
|
|
||||||
convertAttrsToSCFG = name: attrs:
|
|
||||||
let
|
|
||||||
optParamsString = toOptParamsString (attrs ? "_params") attrs._params;
|
|
||||||
in ''
|
|
||||||
${name}${optParamsString} {
|
|
||||||
${indentStrings (convertToAttrsSCFG' attrs)}
|
|
||||||
}'';
|
|
||||||
|
|
||||||
# Attrset Conversion
|
|
||||||
# AttrsOf Anything -> ListOf String
|
|
||||||
convertToAttrsSCFG' = attrs:
|
|
||||||
mapAttrsToList convertAttributeToSCFG
|
|
||||||
(lib.filterAttrs (name: val: !isNull val && name != "_params") attrs);
|
|
||||||
|
|
||||||
# List Conversion
|
|
||||||
# String -> ListOf (OneOf [Int Float String Bool]) -> String
|
|
||||||
convertListOfFlatAttrsToSCFG = name: list:
|
|
||||||
let optParamsString = toOptParamsString (list != [ ]) list;
|
|
||||||
in "${name}${optParamsString}";
|
|
||||||
|
|
||||||
# Combined Conversion
|
|
||||||
# String -> Anything -> String
|
|
||||||
convertAttributeToSCFG = name: value:
|
|
||||||
lib.throwIf (name == "") "Directive must not be empty"
|
|
||||||
(let vType = typeOf value;
|
|
||||||
in if elem vType [ "int" "float" "bool" "string" ] then
|
|
||||||
"${name} ${literalValueToString value}"
|
|
||||||
else if vType == "set" then
|
|
||||||
convertAttrsToSCFG name value
|
|
||||||
else if vType == "list" then
|
|
||||||
convertListOfFlatAttrsToSCFG name value
|
|
||||||
else
|
|
||||||
throw ''
|
|
||||||
Cannot convert type `(${typeOf value})` to SCFG:
|
|
||||||
${name} = ${toString value}
|
|
||||||
'');
|
|
||||||
in attrs:
|
|
||||||
lib.optionalString (attrs != { }) ''
|
|
||||||
${concatStringsSep "\n" (convertToAttrsSCFG' attrs)}
|
|
||||||
'';
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -7,18 +7,6 @@
|
||||||
# [1] https://github.com/NixOS/nixpkgs/blob/fca0d6e093c82b31103dc0dacc48da2a9b06e24b/maintainers/maintainer-list.nix#LC1
|
# [1] https://github.com/NixOS/nixpkgs/blob/fca0d6e093c82b31103dc0dacc48da2a9b06e24b/maintainers/maintainer-list.nix#LC1
|
||||||
|
|
||||||
{
|
{
|
||||||
abayomi185 = {
|
|
||||||
name = "Yomi";
|
|
||||||
email = "yomi+nix@yomitosh.com";
|
|
||||||
github = "abayomi185";
|
|
||||||
githubId = 21103047;
|
|
||||||
};
|
|
||||||
afresquet = {
|
|
||||||
name = "Alvaro Fresquet";
|
|
||||||
email = "alvarofresquet@gmail.com";
|
|
||||||
github = "afresquet";
|
|
||||||
githubId = 29437693;
|
|
||||||
};
|
|
||||||
amesgen = {
|
amesgen = {
|
||||||
name = "amesgen";
|
name = "amesgen";
|
||||||
email = "amesgen@amesgen.de";
|
email = "amesgen@amesgen.de";
|
||||||
|
@ -49,12 +37,6 @@
|
||||||
github = "bertof";
|
github = "bertof";
|
||||||
githubId = 9915675;
|
githubId = 9915675;
|
||||||
};
|
};
|
||||||
bricked = {
|
|
||||||
name = "Bricked";
|
|
||||||
email = "hello@bricked.dev";
|
|
||||||
github = "brckd";
|
|
||||||
githubId = 92804487;
|
|
||||||
};
|
|
||||||
CarlosLoboxyz = {
|
CarlosLoboxyz = {
|
||||||
name = "Carlos Lobo";
|
name = "Carlos Lobo";
|
||||||
email = "86011416+CarlosLoboxyz@users.noreply.github.com";
|
email = "86011416+CarlosLoboxyz@users.noreply.github.com";
|
||||||
|
@ -73,12 +55,6 @@
|
||||||
github = "cvoges12";
|
github = "cvoges12";
|
||||||
githubId = 38054771;
|
githubId = 38054771;
|
||||||
};
|
};
|
||||||
danjujan = {
|
|
||||||
name = "Jan Schmitz";
|
|
||||||
email = "44864658+danjujan@users.noreply.github.com";
|
|
||||||
github = "danjujan";
|
|
||||||
githubId = 44864658;
|
|
||||||
};
|
|
||||||
d-dervishi = {
|
d-dervishi = {
|
||||||
email = "david.dervishi@epfl.ch";
|
email = "david.dervishi@epfl.ch";
|
||||||
github = "d-dervishi";
|
github = "d-dervishi";
|
||||||
|
@ -95,37 +71,12 @@
|
||||||
github = "Dines97";
|
github = "Dines97";
|
||||||
githubId = 19364873;
|
githubId = 19364873;
|
||||||
};
|
};
|
||||||
diniamo = {
|
|
||||||
name = "diniamo";
|
|
||||||
email = "diniamo69@gmail.com";
|
|
||||||
github = "diniamo";
|
|
||||||
githubId = 55629891;
|
|
||||||
};
|
|
||||||
dwagenk = {
|
dwagenk = {
|
||||||
email = "dwagenk@mailbox.org";
|
email = "dwagenk@mailbox.org";
|
||||||
github = "dwagenk";
|
github = "dwagenk";
|
||||||
githubId = 32838899;
|
githubId = 32838899;
|
||||||
name = "Daniel Wagenknecht";
|
name = "Daniel Wagenknecht";
|
||||||
};
|
};
|
||||||
henrisota = {
|
|
||||||
email = "henrisota@users.noreply.github.com";
|
|
||||||
github = "henrisota";
|
|
||||||
githubId = "56848082";
|
|
||||||
name = "Henri Sota";
|
|
||||||
};
|
|
||||||
jack5079 = {
|
|
||||||
name = "Jack W.";
|
|
||||||
email = "nix@jack.cab";
|
|
||||||
github = "jack5079";
|
|
||||||
githubId = 29169102;
|
|
||||||
};
|
|
||||||
janik = {
|
|
||||||
name = "Janik";
|
|
||||||
email = "janik@aq0.de";
|
|
||||||
matrix = "@janik0:matrix.org";
|
|
||||||
github = "Janik-Haag";
|
|
||||||
githubId = 80165193;
|
|
||||||
};
|
|
||||||
jkarlson = {
|
jkarlson = {
|
||||||
email = "jekarlson@gmail.com";
|
email = "jekarlson@gmail.com";
|
||||||
github = "jkarlson";
|
github = "jkarlson";
|
||||||
|
@ -138,12 +89,6 @@
|
||||||
github = "JustinLovinger";
|
github = "JustinLovinger";
|
||||||
githubId = 7183441;
|
githubId = 7183441;
|
||||||
};
|
};
|
||||||
kaleo = {
|
|
||||||
name = "Kaleo Cheng";
|
|
||||||
email = "kaleocheng@gmail.com";
|
|
||||||
github = "kaleocheng";
|
|
||||||
githubId = 7939352;
|
|
||||||
};
|
|
||||||
owm111 = {
|
owm111 = {
|
||||||
email = "7798336+owm111@users.noreply.github.com";
|
email = "7798336+owm111@users.noreply.github.com";
|
||||||
name = "Owen McGrath";
|
name = "Owen McGrath";
|
||||||
|
@ -168,12 +113,6 @@
|
||||||
github = "foo-dogsquared";
|
github = "foo-dogsquared";
|
||||||
githubId = 34962634;
|
githubId = 34962634;
|
||||||
};
|
};
|
||||||
fpob = {
|
|
||||||
name = "Filip Pobořil";
|
|
||||||
email = "fpob@proton.me";
|
|
||||||
github = "fpob";
|
|
||||||
githubId = 6289078;
|
|
||||||
};
|
|
||||||
olmokramer = {
|
olmokramer = {
|
||||||
name = "Olmo Kramer";
|
name = "Olmo Kramer";
|
||||||
email = "olmokramer@users.noreply.github.com";
|
email = "olmokramer@users.noreply.github.com";
|
||||||
|
@ -186,13 +125,6 @@
|
||||||
github = "iosmanthus";
|
github = "iosmanthus";
|
||||||
githubId = 16307070;
|
githubId = 16307070;
|
||||||
};
|
};
|
||||||
jonringer = {
|
|
||||||
email = "jonringer117@gmail.com";
|
|
||||||
matrix = "@jonringer:matrix.org";
|
|
||||||
github = "jonringer";
|
|
||||||
githubId = 7673602;
|
|
||||||
name = "Jonathan Ringer";
|
|
||||||
};
|
|
||||||
kalhauge = {
|
kalhauge = {
|
||||||
name = "Christian Gram Kalhauge";
|
name = "Christian Gram Kalhauge";
|
||||||
email = "kalhauge@users.noreply.github.com";
|
email = "kalhauge@users.noreply.github.com";
|
||||||
|
@ -221,31 +153,12 @@
|
||||||
github = "kubukoz";
|
github = "kubukoz";
|
||||||
githubId = 894884;
|
githubId = 894884;
|
||||||
};
|
};
|
||||||
lheckemann = {
|
|
||||||
name = "Linus Heckemann";
|
|
||||||
email = "git@sphalerite.org";
|
|
||||||
github = "lheckemann";
|
|
||||||
githubId = 341954;
|
|
||||||
};
|
|
||||||
lilyinstarlight = {
|
|
||||||
email = "lily@lily.flowers";
|
|
||||||
matrix = "@lily:lily.flowers";
|
|
||||||
github = "lilyinstarlight";
|
|
||||||
githubId = 298109;
|
|
||||||
name = "Lily Foster";
|
|
||||||
};
|
|
||||||
loicreynier = {
|
loicreynier = {
|
||||||
name = "Loïc Reynier";
|
name = "Loïc Reynier";
|
||||||
email = "loic@loireynier.fr";
|
email = "loic@loireynier.fr";
|
||||||
github = "loicreynier";
|
github = "loicreynier";
|
||||||
githubId = 88983487;
|
githubId = 88983487;
|
||||||
};
|
};
|
||||||
LucasWagler = {
|
|
||||||
name = "Lucas Wagler";
|
|
||||||
email = "lucas@wagler.dev";
|
|
||||||
github = "LucasWagler";
|
|
||||||
githubId = 32136449;
|
|
||||||
};
|
|
||||||
matrss = {
|
matrss = {
|
||||||
name = "Matthias Riße";
|
name = "Matthias Riße";
|
||||||
email = "matrss@users.noreply.github.com";
|
email = "matrss@users.noreply.github.com";
|
||||||
|
@ -286,12 +199,6 @@
|
||||||
fingerprint = "F0E0 0311 126A CD72 4392 25E6 68BF 2EAE 6D91 CAFF";
|
fingerprint = "F0E0 0311 126A CD72 4392 25E6 68BF 2EAE 6D91 CAFF";
|
||||||
}];
|
}];
|
||||||
};
|
};
|
||||||
silmarp = {
|
|
||||||
name = "Silmar Pereira da Silva Junior";
|
|
||||||
email = "silmarjr2@gmail.com";
|
|
||||||
github = "silmarp";
|
|
||||||
githubID = 67292496;
|
|
||||||
};
|
|
||||||
fendse = {
|
fendse = {
|
||||||
email = "46252070+Fendse@users.noreply.github.com";
|
email = "46252070+Fendse@users.noreply.github.com";
|
||||||
github = "Fendse";
|
github = "Fendse";
|
||||||
|
@ -310,11 +217,6 @@
|
||||||
githubId = 33058747;
|
githubId = 33058747;
|
||||||
name = "Gaetan Lepage";
|
name = "Gaetan Lepage";
|
||||||
};
|
};
|
||||||
genericnerdyusername = {
|
|
||||||
email = "genericnerdyusername@proton.me";
|
|
||||||
github = "genericnerdyusername";
|
|
||||||
githubId = 111183546;
|
|
||||||
};
|
|
||||||
maximsmol = {
|
maximsmol = {
|
||||||
email = "maximsmol@gmail.com";
|
email = "maximsmol@gmail.com";
|
||||||
github = "maximsmol";
|
github = "maximsmol";
|
||||||
|
@ -415,12 +317,6 @@
|
||||||
github = "nurelin";
|
github = "nurelin";
|
||||||
githubId = 5276274;
|
githubId = 5276274;
|
||||||
};
|
};
|
||||||
omernaveedxyz = {
|
|
||||||
name = "Omer Naveed";
|
|
||||||
email = "omer@omernaveed.dev";
|
|
||||||
github = "omernaveedxyz";
|
|
||||||
githubId = 112912585;
|
|
||||||
};
|
|
||||||
otavio = {
|
otavio = {
|
||||||
email = "otavio.salvador@ossystems.com.br";
|
email = "otavio.salvador@ossystems.com.br";
|
||||||
github = "otavio";
|
github = "otavio";
|
||||||
|
@ -575,16 +471,4 @@
|
||||||
github = "9p4";
|
github = "9p4";
|
||||||
githubId = 17993169;
|
githubId = 17993169;
|
||||||
};
|
};
|
||||||
britter = {
|
|
||||||
name = "Benedikt Ritter";
|
|
||||||
email = "beneritter@gmail.com";
|
|
||||||
github = "britter";
|
|
||||||
githubId = 1327662;
|
|
||||||
};
|
|
||||||
zorrobert = {
|
|
||||||
name = "zorrobert";
|
|
||||||
email = "zorrobert@mailbox.org";
|
|
||||||
github = "zorrobert";
|
|
||||||
githubId = 118135271;
|
|
||||||
};
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -57,6 +57,13 @@ in {
|
||||||
(mkIf cfg.manpages.enable [ docs.manPages ])
|
(mkIf cfg.manpages.enable [ docs.manPages ])
|
||||||
(mkIf cfg.json.enable [ docs.options.json ])
|
(mkIf cfg.json.enable [ docs.options.json ])
|
||||||
];
|
];
|
||||||
|
|
||||||
|
# Whether a dependency on nmd should be introduced.
|
||||||
|
home.extraBuilderCommands =
|
||||||
|
mkIf (cfg.html.enable || cfg.manpages.enable || cfg.json.enable) ''
|
||||||
|
mkdir $out/lib
|
||||||
|
ln -s ${docs.nmdSrc} $out/lib/nmd
|
||||||
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
|
@ -111,8 +111,8 @@ in {
|
||||||
--slurpfile new "$newState" \
|
--slurpfile new "$newState" \
|
||||||
'($old[] - $new[])[]' \
|
'($old[] - $new[])[]' \
|
||||||
| while read -r key; do
|
| while read -r key; do
|
||||||
verboseEcho "Resetting dconf key \"$key\""
|
$VERBOSE_ECHO "Resetting dconf key \"$key\""
|
||||||
run $DCONF_DBUS_RUN_SESSION dconf reset "$key"
|
$DRY_RUN_CMD $DCONF_DBUS_RUN_SESSION dconf reset "$key"
|
||||||
done
|
done
|
||||||
'';
|
'';
|
||||||
in ''
|
in ''
|
||||||
|
@ -128,7 +128,7 @@ in {
|
||||||
"$newGenPath/${statePath}"
|
"$newGenPath/${statePath}"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
run $DCONF_DBUS_RUN_SESSION ${pkgs.dconf}/bin/dconf load / < ${iniFile}
|
$DRY_RUN_CMD $DCONF_DBUS_RUN_SESSION ${pkgs.dconf}/bin/dconf load / < ${iniFile}
|
||||||
|
|
||||||
unset DCONF_DBUS_RUN_SESSION
|
unset DCONF_DBUS_RUN_SESSION
|
||||||
'');
|
'');
|
||||||
|
|
|
@ -1,7 +1,3 @@
|
||||||
# This module is heavily inspired by the corresponding NixOS module. See
|
|
||||||
#
|
|
||||||
# https://github.com/NixOS/nixpkgs/blob/23.11/nixos/modules/config/fonts/fontconfig.nix
|
|
||||||
|
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
with lib;
|
with lib;
|
||||||
|
@ -36,50 +32,6 @@ in {
|
||||||
{command}`nix-env`.
|
{command}`nix-env`.
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
defaultFonts = {
|
|
||||||
monospace = mkOption {
|
|
||||||
type = with types; listOf str;
|
|
||||||
default = [ ];
|
|
||||||
description = ''
|
|
||||||
Per-user default monospace font(s). Multiple fonts may be listed in
|
|
||||||
case multiple languages must be supported.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
sansSerif = mkOption {
|
|
||||||
type = with types; listOf str;
|
|
||||||
default = [ ];
|
|
||||||
description = ''
|
|
||||||
Per-user default sans serif font(s). Multiple fonts may be listed
|
|
||||||
in case multiple languages must be supported.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
serif = mkOption {
|
|
||||||
type = with types; listOf str;
|
|
||||||
default = [ ];
|
|
||||||
description = ''
|
|
||||||
Per-user default serif font(s). Multiple fonts may be listed in
|
|
||||||
case multiple languages must be supported.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
emoji = mkOption {
|
|
||||||
type = with types; listOf str;
|
|
||||||
default = [ ];
|
|
||||||
description = ''
|
|
||||||
Per-user default emoji font(s). Multiple fonts may be listed in
|
|
||||||
case a font does not support all emoji.
|
|
||||||
|
|
||||||
Note that fontconfig matches color emoji fonts preferentially,
|
|
||||||
so if you want to use a black and white font while having
|
|
||||||
a color font installed (eg. Noto Color Emoji installed alongside
|
|
||||||
Noto Emoji), fontconfig will still choose the color font even
|
|
||||||
when it is later in the list.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -119,19 +71,14 @@ in {
|
||||||
fi
|
fi
|
||||||
'';
|
'';
|
||||||
|
|
||||||
xdg.configFile = let
|
xdg.configFile = {
|
||||||
mkFontconfigConf = conf: ''
|
"fontconfig/conf.d/10-hm-fonts.conf".text = ''
|
||||||
<?xml version='1.0'?>
|
<?xml version='1.0'?>
|
||||||
|
|
||||||
<!-- Generated by Home Manager. -->
|
<!-- Generated by Home Manager. -->
|
||||||
|
|
||||||
<!DOCTYPE fontconfig SYSTEM 'urn:fontconfig:fonts.dtd'>
|
<!DOCTYPE fontconfig SYSTEM 'urn:fontconfig:fonts.dtd'>
|
||||||
<fontconfig>
|
<fontconfig>
|
||||||
${conf}
|
|
||||||
</fontconfig>
|
|
||||||
'';
|
|
||||||
in {
|
|
||||||
"fontconfig/conf.d/10-hm-fonts.conf".text = mkFontconfigConf ''
|
|
||||||
<description>Add fonts in the Nix user profile</description>
|
<description>Add fonts in the Nix user profile</description>
|
||||||
|
|
||||||
<include ignore_missing="yes">${config.home.path}/etc/fonts/conf.d</include>
|
<include ignore_missing="yes">${config.home.path}/etc/fonts/conf.d</include>
|
||||||
|
@ -143,28 +90,7 @@ in {
|
||||||
<dir>${profileDirectory}/share/fonts</dir>
|
<dir>${profileDirectory}/share/fonts</dir>
|
||||||
|
|
||||||
<cachedir>${config.home.path}/lib/fontconfig/cache</cachedir>
|
<cachedir>${config.home.path}/lib/fontconfig/cache</cachedir>
|
||||||
'';
|
</fontconfig>
|
||||||
|
|
||||||
"fontconfig/conf.d/52-hm-default-fonts.conf".text = let
|
|
||||||
genDefault = fonts: name:
|
|
||||||
optionalString (fonts != [ ]) ''
|
|
||||||
<alias binding="same">
|
|
||||||
<family>${name}</family>
|
|
||||||
<prefer>
|
|
||||||
${
|
|
||||||
concatStringsSep "" (map (font: ''
|
|
||||||
<family>${font}</family>
|
|
||||||
'') fonts)
|
|
||||||
}
|
|
||||||
</prefer>
|
|
||||||
</alias>
|
|
||||||
'';
|
|
||||||
in mkFontconfigConf ''
|
|
||||||
<!-- Default fonts -->
|
|
||||||
${genDefault cfg.defaultFonts.sansSerif "sans-serif"}
|
|
||||||
${genDefault cfg.defaultFonts.serif "serif"}
|
|
||||||
${genDefault cfg.defaultFonts.monospace "monospace"}
|
|
||||||
${genDefault cfg.defaultFonts.emoji "emoji"}
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
|
@ -35,8 +35,6 @@ let
|
||||||
Package providing the theme. This package will be installed
|
Package providing the theme. This package will be installed
|
||||||
to your profile. If `null` then the theme
|
to your profile. If `null` then the theme
|
||||||
is assumed to already be available in your profile.
|
is assumed to already be available in your profile.
|
||||||
|
|
||||||
For the theme to apply to GTK 4, this option is mandatory.
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
|
@ -221,9 +219,10 @@ in {
|
||||||
|
|
||||||
config = mkIf cfg.enable (let
|
config = mkIf cfg.enable (let
|
||||||
gtkIni = optionalAttrs (cfg.font != null) {
|
gtkIni = optionalAttrs (cfg.font != null) {
|
||||||
gtk-font-name =
|
gtk-font-name = let
|
||||||
let fontSize = if cfg.font.size != null then cfg.font.size else 10;
|
fontSize =
|
||||||
in "${cfg.font.name} ${toString fontSize}";
|
optionalString (cfg.font.size != null) " ${toString cfg.font.size}";
|
||||||
|
in "${cfg.font.name}" + fontSize;
|
||||||
} // optionalAttrs (cfg.theme != null) { gtk-theme-name = cfg.theme.name; }
|
} // optionalAttrs (cfg.theme != null) { gtk-theme-name = cfg.theme.name; }
|
||||||
// optionalAttrs (cfg.iconTheme != null) {
|
// optionalAttrs (cfg.iconTheme != null) {
|
||||||
gtk-icon-theme-name = cfg.iconTheme.name;
|
gtk-icon-theme-name = cfg.iconTheme.name;
|
||||||
|
@ -234,19 +233,11 @@ in {
|
||||||
gtk-cursor-theme-size = cfg.cursorTheme.size;
|
gtk-cursor-theme-size = cfg.cursorTheme.size;
|
||||||
};
|
};
|
||||||
|
|
||||||
gtk4Css =
|
|
||||||
lib.optionalString (cfg.theme != null && cfg.theme.package != null) ''
|
|
||||||
/**
|
|
||||||
* GTK 4 reads the theme configured by gtk-theme-name, but ignores it.
|
|
||||||
* It does however respect user CSS, so import the theme from here.
|
|
||||||
**/
|
|
||||||
@import url("file://${cfg.theme.package}/share/themes/${cfg.theme.name}/gtk-4.0/gtk.css");
|
|
||||||
'' + cfg4.extraCss;
|
|
||||||
|
|
||||||
dconfIni = optionalAttrs (cfg.font != null) {
|
dconfIni = optionalAttrs (cfg.font != null) {
|
||||||
font-name =
|
font-name = let
|
||||||
let fontSize = if cfg.font.size != null then cfg.font.size else 10;
|
fontSize =
|
||||||
in "${cfg.font.name} ${toString fontSize}";
|
optionalString (cfg.font.size != null) " ${toString cfg.font.size}";
|
||||||
|
in "${cfg.font.name}" + fontSize;
|
||||||
} // optionalAttrs (cfg.theme != null) { gtk-theme = cfg.theme.name; }
|
} // optionalAttrs (cfg.theme != null) { gtk-theme = cfg.theme.name; }
|
||||||
// optionalAttrs (cfg.iconTheme != null) {
|
// optionalAttrs (cfg.iconTheme != null) {
|
||||||
icon-theme = cfg.iconTheme.name;
|
icon-theme = cfg.iconTheme.name;
|
||||||
|
@ -286,7 +277,8 @@ in {
|
||||||
xdg.configFile."gtk-4.0/settings.ini".text =
|
xdg.configFile."gtk-4.0/settings.ini".text =
|
||||||
toGtk3Ini { Settings = gtkIni // cfg4.extraConfig; };
|
toGtk3Ini { Settings = gtkIni // cfg4.extraConfig; };
|
||||||
|
|
||||||
xdg.configFile."gtk-4.0/gtk.css" = mkIf (gtk4Css != "") { text = gtk4Css; };
|
xdg.configFile."gtk-4.0/gtk.css" =
|
||||||
|
mkIf (cfg4.extraCss != "") { text = cfg4.extraCss; };
|
||||||
|
|
||||||
dconf.settings."org/gnome/desktop/interface" = dconfIni;
|
dconf.settings."org/gnome/desktop/interface" = dconfIni;
|
||||||
});
|
});
|
||||||
|
|
|
@ -42,10 +42,14 @@ let
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
|
||||||
config = { id = mkDefault (builtins.hashString "sha256" config.message); };
|
config = {
|
||||||
|
id = mkDefault (builtins.hashString "sha256" config.message);
|
||||||
|
};
|
||||||
});
|
});
|
||||||
|
|
||||||
in {
|
in
|
||||||
|
|
||||||
|
{
|
||||||
meta.maintainers = [ maintainers.rycee ];
|
meta.maintainers = [ maintainers.rycee ];
|
||||||
|
|
||||||
options = {
|
options = {
|
||||||
|
@ -93,8 +97,9 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = {
|
config = {
|
||||||
news.json.output = pkgs.writeText "hm-news.json"
|
news.json.output = pkgs.writeText "hm-news.json" (builtins.toJSON {
|
||||||
(builtins.toJSON { inherit (cfg) display entries; });
|
inherit (cfg) display entries;
|
||||||
|
});
|
||||||
|
|
||||||
# Add news entries in chronological order (i.e., latest time
|
# Add news entries in chronological order (i.e., latest time
|
||||||
# should be at the bottom of the list). The time should be
|
# should be at the bottom of the list). The time should be
|
||||||
|
@ -250,8 +255,7 @@ in {
|
||||||
|
|
||||||
{
|
{
|
||||||
time = "2021-09-23T17:04:48+00:00";
|
time = "2021-09-23T17:04:48+00:00";
|
||||||
condition = hostPlatform.isLinux
|
condition = hostPlatform.isLinux && config.services.screen-locker.enable;
|
||||||
&& config.services.screen-locker.enable;
|
|
||||||
message = ''
|
message = ''
|
||||||
'xautolock' is now optional in 'services.screen-locker', and the
|
'xautolock' is now optional in 'services.screen-locker', and the
|
||||||
'services.screen-locker' options have been reorganized for clarity.
|
'services.screen-locker' options have been reorganized for clarity.
|
||||||
|
@ -1305,404 +1309,6 @@ in {
|
||||||
A new module is available: 'programs.ruff'.
|
A new module is available: 'programs.ruff'.
|
||||||
'';
|
'';
|
||||||
}
|
}
|
||||||
|
|
||||||
{
|
|
||||||
time = "2023-11-26T23:18:01+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.signaturepdf'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2023-12-10T08:43:02+00:00";
|
|
||||||
condition = config.wayland.windowManager.hyprland.settings ? source;
|
|
||||||
message = ''
|
|
||||||
Entries in
|
|
||||||
|
|
||||||
wayland.windowManager.hyprland.settings.source
|
|
||||||
|
|
||||||
are now placed at the start of the configuration file. If you relied
|
|
||||||
on the previous placement of the 'source' entries, please set
|
|
||||||
|
|
||||||
wayland.windowManager.hyprland.sourceFirst = false
|
|
||||||
|
|
||||||
to keep the previous behaviour.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2023-12-19T22:57:52+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.sapling'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2023-12-20T11:41:10+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.gradle'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2023-12-28T08:28:26+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.osmscout-server'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2023-12-28T13:01:15+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.sftpman'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2023-12-29T08:22:40+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.bemenu'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-01-01T09:09:42+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.i3blocks'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-01-03T19:25:09+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'xdg.portal'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-01-20T23:45:07+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.mise'.
|
|
||||||
|
|
||||||
This module replaces 'programs.rtx', which has been removed.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-01-27T22:53:00+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.wob'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-02-05T22:33:54+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.arrpc'
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-02-05T22:45:37+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.jetbrains-remote'
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-02-21T23:01:27+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'wayland.windowManager.river'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-03-08T22:20:04+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.zk'
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-03-08T22:23:24+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.ranger'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-03-13T13:28:22+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.joplin-desktop'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-03-14T07:22:09+00:00";
|
|
||||||
condition = config.services.gpg-agent.enable;
|
|
||||||
message = ''
|
|
||||||
'services.gpg-agent.pinentryFlavor' has been removed and replaced by
|
|
||||||
'services.gpg-agent.pinentryPackage'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-03-14T07:22:59+00:00";
|
|
||||||
condition = config.programs.rbw.enable;
|
|
||||||
message = ''
|
|
||||||
'programs.rbw.pinentry' has been simplified to only accept 'null' or
|
|
||||||
a package.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-03-15T08:39:52+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.activitywatch'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-03-28T17:02:19+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.amberol'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-04-08T21:43:38+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.bun'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-04-18T22:30:49+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.fd'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-04-19T09:23:52+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.tofi'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-04-19T10:01:55+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.spotify-player'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-04-19T14:53:17+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.remmina'.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-04-21T20:53:09+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.poetry'.
|
|
||||||
|
|
||||||
Poetry is a tool that helps you manage Python project dependencies and
|
|
||||||
packages. See https://python-poetry.org/ for more.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-04-22T18:04:47+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.amberol'.
|
|
||||||
|
|
||||||
Amberol is a music player with no delusions of grandeur. If you just
|
|
||||||
want to play music available on your local system then Amberol is the
|
|
||||||
music player you are looking for. See https://apps.gnome.org/Amberol/
|
|
||||||
for more.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-04-28T20:27:08+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.psd'.
|
|
||||||
|
|
||||||
Profile-sync-daemon (psd) is a tiny pseudo-daemon designed to manage
|
|
||||||
your browser's profile in tmpfs and to periodically sync it back to
|
|
||||||
your physical disc (HDD/SSD).
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-04-29T22:01:51+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.swaync'.
|
|
||||||
|
|
||||||
SwayNotificationCenter is a simple notification daemon with a GTK GUI
|
|
||||||
for notifications and the control center. See
|
|
||||||
https://github.com/ErikReider/SwayNotificationCenter for more.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-04-30T18:28:28+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.freetube'.
|
|
||||||
|
|
||||||
FreeTube is a YouTube client built around using YouTube more
|
|
||||||
privately. You can enjoy your favorite content and creators without
|
|
||||||
your habits being tracked. See https://freetubeapp.io/ for more.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-04-30T21:57:23+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.conky'.
|
|
||||||
|
|
||||||
Conky is a system monitor for X. Conky can display just about
|
|
||||||
anything, either on your root desktop or in its own window. See
|
|
||||||
https://conky.cc/ for more.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-05-05T07:22:01+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.hypridle'.
|
|
||||||
|
|
||||||
Hypridle is a program that monitors user activity and runs commands
|
|
||||||
when idle or active. See https://github.com/hyprwm/hypridle for more.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-05-06T07:36:13+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.gnome-shell'.
|
|
||||||
|
|
||||||
GNOME Shell is the graphical shell of the GNOME desktop environment.
|
|
||||||
It provides basic functions like launching applications and switching
|
|
||||||
between windows, and is also a widget engine.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-05-10T10:30:58+00:00";
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.fastfetch'.
|
|
||||||
|
|
||||||
Fastfetch is a Neofetch-like tool for fetching system information and
|
|
||||||
displaying them in a pretty way. See
|
|
||||||
https://github.com/fastfetch-cli/fastfetch for more.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-05-10T11:48:34+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.hyprlock'.
|
|
||||||
|
|
||||||
Hyprland's simple, yet multi-threaded and GPU-accelerated screen
|
|
||||||
locking utility. See https://github.com/hyprwm/hyprlock for more.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-05-10T13:35:19+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.hyprpaper'.
|
|
||||||
|
|
||||||
Hyprpaper is a blazing fast wallpaper utility for Hyprland with the
|
|
||||||
ability to dynamically change wallpapers through sockets. It will work
|
|
||||||
on all wlroots-based compositors, though. See
|
|
||||||
https://github.com/hyprwm/hyprpaper for more.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-05-10T21:28:38+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'programs.yambar'.
|
|
||||||
|
|
||||||
Yambar is a lightweight and configurable status panel for X11 and
|
|
||||||
Wayland, that goes to great lengths to be both CPU and battery
|
|
||||||
efficient - polling is only done when absolutely necessary.
|
|
||||||
|
|
||||||
See https://codeberg.org/dnkl/yambar for more.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-05-25T14:36:03+00:00";
|
|
||||||
message = ''
|
|
||||||
Multiple new options are available:
|
|
||||||
|
|
||||||
- 'nix.nixPath'
|
|
||||||
- 'nix.keepOldNixPath'
|
|
||||||
- 'nix.channels'
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-06-22T05:49:48+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.blanket'.
|
|
||||||
|
|
||||||
Blanket is a program you can use to improve your focus and increase
|
|
||||||
your productivity by listening to different sounds. See
|
|
||||||
https://github.com/rafaelmardojai/blanket for more.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-06-26T07:07:17+00:00";
|
|
||||||
condition = with config.programs.yazi;
|
|
||||||
enable && (enableBashIntegration || enableZshIntegration
|
|
||||||
|| enableFishIntegration || enableNushellIntegration);
|
|
||||||
message = ''
|
|
||||||
Yazi's shell integration wrappers have been renamed from 'ya' to 'yy'.
|
|
||||||
|
|
||||||
A new option `programs.yazi.shellWrapperName` is also available that
|
|
||||||
allows you to override this name.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
|
|
||||||
{
|
|
||||||
time = "2024-06-28T14:18:16+00:00";
|
|
||||||
condition = hostPlatform.isLinux;
|
|
||||||
message = ''
|
|
||||||
A new module is available: 'services.glance'.
|
|
||||||
|
|
||||||
Glance is a self-hosted dashboard that puts all your feeds in
|
|
||||||
one place. See https://github.com/glanceapp/glance for more.
|
|
||||||
'';
|
|
||||||
}
|
|
||||||
];
|
];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,12 +1,8 @@
|
||||||
{ config, lib, pkgs, ... }:
|
{ config, lib, pkgs, ... }:
|
||||||
|
|
||||||
let
|
with lib;
|
||||||
|
|
||||||
inherit (lib)
|
let
|
||||||
boolToString concatStringsSep escape floatToString getVersion isBool
|
|
||||||
isConvertibleWithToString isDerivation isFloat isInt isList isString
|
|
||||||
literalExpression maintainers mapAttrsToList mkDefault mkEnableOption mkIf
|
|
||||||
mkMerge mkOption optionalString toPretty types versionAtLeast;
|
|
||||||
|
|
||||||
cfg = config.nix;
|
cfg = config.nix;
|
||||||
|
|
||||||
|
@ -14,27 +10,6 @@ let
|
||||||
|
|
||||||
isNixAtLeast = versionAtLeast (getVersion nixPackage);
|
isNixAtLeast = versionAtLeast (getVersion nixPackage);
|
||||||
|
|
||||||
nixPath = concatStringsSep ":" cfg.nixPath;
|
|
||||||
|
|
||||||
useXdg = config.nix.enable
|
|
||||||
&& (config.nix.settings.use-xdg-base-directories or false);
|
|
||||||
defexprDir = if useXdg then
|
|
||||||
"${config.xdg.stateHome}/nix/defexpr"
|
|
||||||
else
|
|
||||||
"${config.home.homeDirectory}/.nix-defexpr";
|
|
||||||
|
|
||||||
# The deploy path for declarative channels. The directory name is prefixed
|
|
||||||
# with a number to make it easier for files in defexprDir to control the order
|
|
||||||
# they'll be read relative to each other.
|
|
||||||
channelPath = "${defexprDir}/50-home-manager";
|
|
||||||
|
|
||||||
channelsDrv = let
|
|
||||||
mkEntry = name: drv: {
|
|
||||||
inherit name;
|
|
||||||
path = toString drv;
|
|
||||||
};
|
|
||||||
in pkgs.linkFarm "channels" (lib.mapAttrsToList mkEntry cfg.channels);
|
|
||||||
|
|
||||||
nixConf = assert isNixAtLeast "2.2";
|
nixConf = assert isNixAtLeast "2.2";
|
||||||
let
|
let
|
||||||
|
|
||||||
|
@ -77,17 +52,13 @@ let
|
||||||
checkPhase =
|
checkPhase =
|
||||||
if pkgs.stdenv.hostPlatform != pkgs.stdenv.buildPlatform then ''
|
if pkgs.stdenv.hostPlatform != pkgs.stdenv.buildPlatform then ''
|
||||||
echo "Ignoring validation for cross-compilation"
|
echo "Ignoring validation for cross-compilation"
|
||||||
'' else
|
'' else ''
|
||||||
let
|
|
||||||
showCommand =
|
|
||||||
if isNixAtLeast "2.20pre" then "config show" else "show-config";
|
|
||||||
in ''
|
|
||||||
echo "Validating generated nix.conf"
|
echo "Validating generated nix.conf"
|
||||||
ln -s $out ./nix.conf
|
ln -s $out ./nix.conf
|
||||||
set -e
|
set -e
|
||||||
set +o pipefail
|
set +o pipefail
|
||||||
NIX_CONF_DIR=$PWD \
|
NIX_CONF_DIR=$PWD \
|
||||||
${cfg.package}/bin/nix ${showCommand} ${
|
${cfg.package}/bin/nix show-config ${
|
||||||
optionalString (isNixAtLeast "2.3pre")
|
optionalString (isNixAtLeast "2.3pre")
|
||||||
"--no-net --option experimental-features nix-command"
|
"--no-net --option experimental-features nix-command"
|
||||||
} \
|
} \
|
||||||
|
@ -127,47 +98,6 @@ in {
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
|
|
||||||
nixPath = mkOption {
|
|
||||||
type = types.listOf types.str;
|
|
||||||
default = [ ];
|
|
||||||
example = [
|
|
||||||
"$HOME/.nix-defexpr/channels"
|
|
||||||
"darwin-config=$HOME/.config/nixpkgs/darwin-configuration.nix"
|
|
||||||
];
|
|
||||||
description = ''
|
|
||||||
Adds new directories to the Nix expression search path.
|
|
||||||
|
|
||||||
Used by Nix when looking up paths in angular brackets
|
|
||||||
(e.g. `<nixpkgs>`).
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
keepOldNixPath = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
default = true;
|
|
||||||
example = false;
|
|
||||||
description = ''
|
|
||||||
Whether {option}`nix.nixPath` should keep the previously set values in
|
|
||||||
{env}`NIX_PATH`.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
channels = lib.mkOption {
|
|
||||||
type = with lib.types; attrsOf package;
|
|
||||||
default = { };
|
|
||||||
example = lib.literalExpression "{ inherit nixpkgs; }";
|
|
||||||
description = ''
|
|
||||||
A declarative alternative to Nix channels. Whereas with stock channels,
|
|
||||||
you would register URLs and fetch them into the Nix store with
|
|
||||||
{manpage}`nix-channel(1)`, this option allows you to register the store
|
|
||||||
path directly. One particularly useful example is registering flake
|
|
||||||
inputs as channels.
|
|
||||||
|
|
||||||
This option can coexist with stock Nix channels. If the same channel is
|
|
||||||
defined in both, this option takes precedence.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
registry = mkOption {
|
registry = mkOption {
|
||||||
type = types.attrsOf (types.submodule (let
|
type = types.attrsOf (types.submodule (let
|
||||||
inputAttrs = types.attrsOf
|
inputAttrs = types.attrsOf
|
||||||
|
@ -276,19 +206,6 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = mkIf cfg.enable (mkMerge [
|
config = mkIf cfg.enable (mkMerge [
|
||||||
(mkIf (cfg.nixPath != [ ] && !cfg.keepOldNixPath) {
|
|
||||||
home.sessionVariables.NIX_PATH = "${nixPath}";
|
|
||||||
})
|
|
||||||
|
|
||||||
(mkIf (cfg.nixPath != [ ] && cfg.keepOldNixPath) {
|
|
||||||
home.sessionVariables.NIX_PATH = "${nixPath}\${NIX_PATH:+:$NIX_PATH}";
|
|
||||||
})
|
|
||||||
|
|
||||||
(lib.mkIf (cfg.channels != { }) {
|
|
||||||
nix.nixPath = [ channelPath ];
|
|
||||||
home.file."${channelPath}".source = channelsDrv;
|
|
||||||
})
|
|
||||||
|
|
||||||
(mkIf (cfg.registry != { }) {
|
(mkIf (cfg.registry != { }) {
|
||||||
xdg.configFile."nix/registry.json".source =
|
xdg.configFile."nix/registry.json".source =
|
||||||
jsonFormat.generate "registry.json" {
|
jsonFormat.generate "registry.json" {
|
||||||
|
@ -311,5 +228,5 @@ in {
|
||||||
})
|
})
|
||||||
]);
|
]);
|
||||||
|
|
||||||
meta.maintainers = [ ];
|
meta.maintainers = [ maintainers.polykernel ];
|
||||||
}
|
}
|
||||||
|
|
|
@ -6,7 +6,6 @@ let
|
||||||
# Map platform names to their packages.
|
# Map platform names to their packages.
|
||||||
platformPackages = with pkgs; {
|
platformPackages = with pkgs; {
|
||||||
gnome = [ qgnomeplatform qgnomeplatform-qt6 ];
|
gnome = [ qgnomeplatform qgnomeplatform-qt6 ];
|
||||||
adwaita = [ qadwaitadecorations qadwaitadecorations-qt6 ];
|
|
||||||
gtk = [ libsForQt5.qtstyleplugins qt6Packages.qt6gtk2 ];
|
gtk = [ libsForQt5.qtstyleplugins qt6Packages.qt6gtk2 ];
|
||||||
kde = [ libsForQt5.plasma-integration libsForQt5.systemsettings ];
|
kde = [ libsForQt5.plasma-integration libsForQt5.systemsettings ];
|
||||||
lxqt = [ lxqt.lxqt-qtplugin lxqt.lxqt-config ];
|
lxqt = [ lxqt.lxqt-qtplugin lxqt.lxqt-config ];
|
||||||
|
@ -56,17 +55,14 @@ in {
|
||||||
qt = {
|
qt = {
|
||||||
enable = lib.mkEnableOption "Qt 5 and 6 configuration";
|
enable = lib.mkEnableOption "Qt 5 and 6 configuration";
|
||||||
|
|
||||||
platformTheme = let
|
platformTheme = lib.mkOption {
|
||||||
newOption = {
|
type = with lib.types;
|
||||||
name = lib.mkOption {
|
nullOr (enum [ "gtk" "gtk3" "gnome" "lxqt" "qtct" "kde" ]);
|
||||||
type = with lib.types; nullOr str;
|
|
||||||
default = null;
|
default = null;
|
||||||
example = "adwaita";
|
example = "gnome";
|
||||||
relatedPackages = [
|
relatedPackages = [
|
||||||
"qgnomeplatform"
|
"qgnomeplatform"
|
||||||
"qgnomeplatform-qt6"
|
"qgnomeplatform-qt6"
|
||||||
"qadwaitadecorations"
|
|
||||||
"qadwaitadecorations-qt6"
|
|
||||||
[ "libsForQt5" "plasma-integration" ]
|
[ "libsForQt5" "plasma-integration" ]
|
||||||
[ "libsForQt5" "qt5ct" ]
|
[ "libsForQt5" "qt5ct" ]
|
||||||
[ "libsForQt5" "qtstyleplugins" ]
|
[ "libsForQt5" "qtstyleplugins" ]
|
||||||
|
@ -79,7 +75,7 @@ in {
|
||||||
description = ''
|
description = ''
|
||||||
Platform theme to use for Qt applications.
|
Platform theme to use for Qt applications.
|
||||||
|
|
||||||
Some examples are
|
The options are
|
||||||
|
|
||||||
`gtk`
|
`gtk`
|
||||||
: Use GTK theme with
|
: Use GTK theme with
|
||||||
|
@ -89,14 +85,9 @@ in {
|
||||||
: Use [GTK3 integration](https://github.com/qt/qtbase/tree/dev/src/plugins/platformthemes/gtk3)
|
: Use [GTK3 integration](https://github.com/qt/qtbase/tree/dev/src/plugins/platformthemes/gtk3)
|
||||||
for file picker dialogs, font and theme configuration
|
for file picker dialogs, font and theme configuration
|
||||||
|
|
||||||
`adwaita`
|
`gnome`
|
||||||
: Use Adwaita theme with
|
|
||||||
[`qadwaitadecorations`](https://github.com/FedoraQt/QAdwaitaDecorations)
|
|
||||||
|
|
||||||
`gnome` (deprecated)
|
|
||||||
: Use GNOME theme with
|
: Use GNOME theme with
|
||||||
[`qgnomeplatform`](https://github.com/FedoraQt/QGnomePlatform).
|
[`qgnomeplatform`](https://github.com/FedoraQt/QGnomePlatform)
|
||||||
Is no longer maintained so prefer `adwaita`.
|
|
||||||
|
|
||||||
`lxqt`
|
`lxqt`
|
||||||
: Use LXQt theme style set using the
|
: Use LXQt theme style set using the
|
||||||
|
@ -113,28 +104,7 @@ in {
|
||||||
: Use Qt settings from Plasma
|
: Use Qt settings from Plasma
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
package = lib.mkOption {
|
|
||||||
type = with lib.types; nullOr (either package (listOf package));
|
|
||||||
default = null;
|
|
||||||
example =
|
|
||||||
lib.literalExpression "[pkgs.adwaita-qt pkgs.adwaita-qt6]";
|
|
||||||
description = ''
|
|
||||||
Theme package to be used in Qt5/Qt6 applications.
|
|
||||||
Auto-detected from {option}`qt.platformTheme.name` if possible.
|
|
||||||
See its documentation for available options.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
in lib.mkOption {
|
|
||||||
type = with lib.types;
|
|
||||||
nullOr
|
|
||||||
(either (enum [ "gtk" "gtk3" "gnome" "adwaita" "lxqt" "qtct" "kde" ])
|
|
||||||
(lib.types.submodule { options = newOption; }));
|
|
||||||
default = null;
|
|
||||||
description = ''
|
|
||||||
Deprecated. Use {option}`qt.platformTheme.name` instead.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
style = {
|
style = {
|
||||||
name = lib.mkOption {
|
name = lib.mkOption {
|
||||||
type = with lib.types; nullOr str;
|
type = with lib.types; nullOr str;
|
||||||
|
@ -179,7 +149,6 @@ in {
|
||||||
description = ''
|
description = ''
|
||||||
Theme package to be used in Qt5/Qt6 applications.
|
Theme package to be used in Qt5/Qt6 applications.
|
||||||
Auto-detected from {option}`qt.style.name` if possible.
|
Auto-detected from {option}`qt.style.name` if possible.
|
||||||
See its documentation for available options.
|
|
||||||
'';
|
'';
|
||||||
};
|
};
|
||||||
};
|
};
|
||||||
|
@ -187,24 +156,11 @@ in {
|
||||||
};
|
};
|
||||||
|
|
||||||
config = let
|
config = let
|
||||||
platformTheme = if (builtins.isString cfg.platformTheme) then {
|
|
||||||
option = "qt.platformTheme";
|
|
||||||
name = cfg.platformTheme;
|
|
||||||
package = null;
|
|
||||||
} else if cfg.platformTheme == null then {
|
|
||||||
option = null;
|
|
||||||
name = null;
|
|
||||||
package = null;
|
|
||||||
} else {
|
|
||||||
option = "qt.platformTheme.name";
|
|
||||||
name = cfg.platformTheme.name;
|
|
||||||
package = cfg.platformTheme.package;
|
|
||||||
};
|
|
||||||
|
|
||||||
# Necessary because home.sessionVariables doesn't support mkIf
|
# Necessary because home.sessionVariables doesn't support mkIf
|
||||||
envVars = lib.filterAttrs (n: v: v != null) {
|
envVars = lib.filterAttrs (n: v: v != null) {
|
||||||
QT_QPA_PLATFORMTHEME = if (platformTheme.name != null) then
|
QT_QPA_PLATFORMTHEME = if (cfg.platformTheme != null) then
|
||||||
styleNames.${platformTheme.name} or platformTheme.name
|
styleNames.${cfg.platformTheme} or cfg.platformTheme
|
||||||
else
|
else
|
||||||
null;
|
null;
|
||||||
QT_STYLE_OVERRIDE = cfg.style.name;
|
QT_STYLE_OVERRIDE = cfg.style.name;
|
||||||
|
@ -225,20 +181,14 @@ in {
|
||||||
|
|
||||||
in lib.mkIf cfg.enable {
|
in lib.mkIf cfg.enable {
|
||||||
assertions = [{
|
assertions = [{
|
||||||
assertion = platformTheme.name == "gnome" -> cfg.style.name != null
|
assertion = cfg.platformTheme == "gnome" -> cfg.style.name != null
|
||||||
&& cfg.style.package != null;
|
&& cfg.style.package != null;
|
||||||
message = ''
|
message = ''
|
||||||
`qt.platformTheme.name` "gnome" must have `qt.style` set to a theme that
|
`qt.platformTheme` "gnome" must have `qt.style` set to a theme that
|
||||||
supports both Qt and Gtk, for example "adwaita", "adwaita-dark", or "breeze".
|
supports both Qt and Gtk, for example "adwaita", "adwaita-dark", or "breeze".
|
||||||
'';
|
'';
|
||||||
}];
|
}];
|
||||||
|
|
||||||
warnings = (lib.lists.optional (platformTheme.option == "qt.platformTheme")
|
|
||||||
"The option `qt.platformTheme` has been renamed to `qt.platformTheme.name`.")
|
|
||||||
++ (lib.lists.optional
|
|
||||||
(platformTheme.name == "gnome" && platformTheme.package == null)
|
|
||||||
"The value `gnome` for option `${platformTheme.option}` is deprecated. Use `adwaita` instead.");
|
|
||||||
|
|
||||||
qt.style.package = lib.mkIf (cfg.style.name != null)
|
qt.style.package = lib.mkIf (cfg.style.name != null)
|
||||||
(lib.mkDefault (stylePackages.${lib.toLower cfg.style.name} or null));
|
(lib.mkDefault (stylePackages.${lib.toLower cfg.style.name} or null));
|
||||||
|
|
||||||
|
@ -258,16 +208,13 @@ in {
|
||||||
# Apply theming also to apps started by systemd.
|
# Apply theming also to apps started by systemd.
|
||||||
systemd.user.sessionVariables = envVars // envVarsExtra;
|
systemd.user.sessionVariables = envVars // envVarsExtra;
|
||||||
|
|
||||||
home.packages = (lib.findFirst (x: x != [ ]) [ ] [
|
home.packages = (lib.optionals (cfg.platformTheme != null)
|
||||||
(lib.optionals (platformTheme.package != null)
|
platformPackages.${cfg.platformTheme} or [ ])
|
||||||
(lib.toList platformTheme.package))
|
++ (lib.optionals (cfg.style.package != null)
|
||||||
(lib.optionals (platformTheme.name != null)
|
|
||||||
platformPackages.${platformTheme.name} or [ ])
|
|
||||||
]) ++ (lib.optionals (cfg.style.package != null)
|
|
||||||
(lib.toList cfg.style.package));
|
(lib.toList cfg.style.package));
|
||||||
|
|
||||||
xsession.importedVariables = [ "QT_PLUGIN_PATH" "QML2_IMPORT_PATH" ]
|
xsession.importedVariables = [ "QT_PLUGIN_PATH" "QML2_IMPORT_PATH" ]
|
||||||
++ lib.optionals (platformTheme.name != null) [ "QT_QPA_PLATFORMTHEME" ]
|
++ lib.optionals (cfg.platformTheme != null) [ "QT_QPA_PLATFORMTHEME" ]
|
||||||
++ lib.optionals (cfg.style.name != null) [ "QT_STYLE_OVERRIDE" ];
|
++ lib.optionals (cfg.style.name != null) [ "QT_STYLE_OVERRIDE" ];
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,73 +0,0 @@
|
||||||
{ config, pkgs, lib, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
cfg = config.qt.kde.settings;
|
|
||||||
in {
|
|
||||||
options.qt.kde.settings = lib.mkOption {
|
|
||||||
type = with lib.types;
|
|
||||||
let
|
|
||||||
valueType =
|
|
||||||
nullOr (oneOf [ bool int float str path (attrsOf valueType) ]) // {
|
|
||||||
description = "KDE option value";
|
|
||||||
};
|
|
||||||
in attrsOf valueType;
|
|
||||||
default = { };
|
|
||||||
example = {
|
|
||||||
powermanagementprofilesrc.AC.HandleButtonEvents.lidAction = 32;
|
|
||||||
};
|
|
||||||
description = ''
|
|
||||||
A set of values to be modified by {command}`kwriteconfig5`.
|
|
||||||
|
|
||||||
The example value would cause the following command to run in the
|
|
||||||
activation script:
|
|
||||||
|
|
||||||
``` shell
|
|
||||||
kwriteconfig5 --file $XDG_CONFIG_HOME/powermanagementprofilesrc \
|
|
||||||
--group AC \
|
|
||||||
--group HandleButtonEvents \
|
|
||||||
--group lidAction \
|
|
||||||
--key lidAction \
|
|
||||||
32
|
|
||||||
```
|
|
||||||
|
|
||||||
Note, `null` values will delete the corresponding entry instead of
|
|
||||||
inserting any value.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
config = lib.mkIf (cfg != { }) {
|
|
||||||
home.activation.kconfig = lib.hm.dag.entryAfter [ "writeBoundary" ] ''
|
|
||||||
${let
|
|
||||||
inherit (config.xdg) configHome;
|
|
||||||
toValue = v:
|
|
||||||
let t = builtins.typeOf v;
|
|
||||||
in if v == null then
|
|
||||||
"--delete"
|
|
||||||
else if t == "bool" then
|
|
||||||
"--type bool ${builtins.toJSON v}"
|
|
||||||
else
|
|
||||||
lib.escapeShellArg (toString v);
|
|
||||||
toLine = file: path: value:
|
|
||||||
if builtins.isAttrs value then
|
|
||||||
lib.mapAttrsToList
|
|
||||||
(group: value: toLine file (path ++ [ group ]) value) value
|
|
||||||
else
|
|
||||||
"run test -f '${configHome}/${file}' && run ${pkgs.libsForQt5.kconfig}/bin/kwriteconfig5 --file '${configHome}/${file}' ${
|
|
||||||
lib.concatMapStringsSep " " (x: "--group ${x}")
|
|
||||||
(lib.lists.init path)
|
|
||||||
} --key '${lib.lists.last path}' ${toValue value}";
|
|
||||||
lines = lib.flatten
|
|
||||||
(lib.mapAttrsToList (file: attrs: toLine file [ ] attrs) cfg);
|
|
||||||
in builtins.concatStringsSep "\n" lines}
|
|
||||||
|
|
||||||
# TODO: some way to only call the dbus calls needed
|
|
||||||
run ${pkgs.libsForQt5.qttools.bin}/bin/qdbus org.kde.KWin /KWin reconfigure || echo "KWin reconfigure failed"
|
|
||||||
# the actual values are https://github.com/KDE/plasma-workspace/blob/c97dddf20df5702eb429b37a8c10b2c2d8199d4e/kcms/kcms-common_p.h#L13
|
|
||||||
for changeType in {0..10}; do
|
|
||||||
# even if one of those calls fails the others keep running
|
|
||||||
run ${pkgs.dbus}/bin/dbus-send /KGlobalSettings org.kde.KGlobalSettings.notifyChange int32:$changeType int32:0 || echo "KGlobalSettings.notifyChange $changeType failed"
|
|
||||||
done
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -1,50 +0,0 @@
|
||||||
{ config, lib, pkgs, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
inherit (lib) mkIf mkOption types;
|
|
||||||
|
|
||||||
in {
|
|
||||||
options.uninstall = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
default = false;
|
|
||||||
description = ''
|
|
||||||
Whether to set up a minimal configuration that will remove all managed
|
|
||||||
files and packages.
|
|
||||||
|
|
||||||
Use this with extreme care since running the generated activation script
|
|
||||||
will remove all Home Manager state from your user environment. This
|
|
||||||
includes removing all your historic Home Manager generations.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkIf config.uninstall {
|
|
||||||
home.packages = lib.mkForce [ ];
|
|
||||||
home.file = lib.mkForce { };
|
|
||||||
home.stateVersion = lib.mkForce "24.05";
|
|
||||||
home.enableNixpkgsReleaseCheck = lib.mkForce false;
|
|
||||||
manual.manpages.enable = lib.mkForce false;
|
|
||||||
news.display = lib.mkForce "silent";
|
|
||||||
|
|
||||||
home.activation.uninstall =
|
|
||||||
lib.hm.dag.entryAfter [ "installPackages" "linkGeneration" ] ''
|
|
||||||
nixProfileRemove home-manager-path
|
|
||||||
|
|
||||||
if [[ -e $hmDataPath ]]; then
|
|
||||||
run rm $VERBOSE_ARG -r "$hmDataPath"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -e $hmStatePath ]]; then
|
|
||||||
run rm $VERBOSE_ARG -r "$hmStatePath"
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -e $genProfilePath ]]; then
|
|
||||||
run rm $VERBOSE_ARG "$genProfilePath"*
|
|
||||||
fi
|
|
||||||
|
|
||||||
if [[ -e $legacyGenGcPath ]]; then
|
|
||||||
run rm $VERBOSE_ARG "$legacyGenGcPath"
|
|
||||||
fi
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -20,8 +20,6 @@ in {
|
||||||
"22.11"
|
"22.11"
|
||||||
"23.05"
|
"23.05"
|
||||||
"23.11"
|
"23.11"
|
||||||
"24.05"
|
|
||||||
"24.11"
|
|
||||||
];
|
];
|
||||||
description = ''
|
description = ''
|
||||||
It is occasionally necessary for Home Manager to change
|
It is occasionally necessary for Home Manager to change
|
||||||
|
|
|
@ -51,7 +51,7 @@ let
|
||||||
|
|
||||||
terminal = mkOption {
|
terminal = mkOption {
|
||||||
description = "Whether the program runs in a terminal window.";
|
description = "Whether the program runs in a terminal window.";
|
||||||
type = types.nullOr types.bool;
|
type = types.bool;
|
||||||
default = false;
|
default = false;
|
||||||
};
|
};
|
||||||
|
|
||||||
|
|
|
@ -1,144 +0,0 @@
|
||||||
{ config, pkgs, lib, ... }:
|
|
||||||
|
|
||||||
let
|
|
||||||
|
|
||||||
inherit (lib) mkIf mkMerge mkOption optional types;
|
|
||||||
|
|
||||||
associationOptions = with types;
|
|
||||||
attrsOf (coercedTo (either (listOf str) str)
|
|
||||||
(x: lib.concatStringsSep ";" (lib.toList x)) str);
|
|
||||||
|
|
||||||
in {
|
|
||||||
meta.maintainers = [ lib.maintainers.misterio77 ];
|
|
||||||
|
|
||||||
options.xdg.portal = {
|
|
||||||
enable = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
default = false;
|
|
||||||
example = true;
|
|
||||||
description = ''
|
|
||||||
Whether to enable [XDG desktop integration](https://github.com/flatpak/xdg-desktop-portal).
|
|
||||||
|
|
||||||
Note, if you use the NixOS module and have `useUserPackages = true`,
|
|
||||||
make sure to add
|
|
||||||
|
|
||||||
``` nix
|
|
||||||
environment.pathsToLink = [ "/share/xdg-desktop-portal" "/share/applications" ];
|
|
||||||
```
|
|
||||||
|
|
||||||
to your system configuration so that the portal definitions and DE
|
|
||||||
provided configurations get linked.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
extraPortals = mkOption {
|
|
||||||
type = types.listOf types.package;
|
|
||||||
default = [ ];
|
|
||||||
description = ''
|
|
||||||
List of additional portals that should be passed to the
|
|
||||||
`xdg-desktop-portal.service`, via the `XDG_DESKTOP_PORTAL_DIR`
|
|
||||||
variable.
|
|
||||||
|
|
||||||
Portals allow interaction with system, like choosing files or taking
|
|
||||||
screenshots. At minimum, a desktop portal implementation should be
|
|
||||||
listed.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
xdgOpenUsePortal = mkOption {
|
|
||||||
type = types.bool;
|
|
||||||
default = false;
|
|
||||||
description = ''
|
|
||||||
Sets environment variable `NIXOS_XDG_OPEN_USE_PORTAL` to `1`
|
|
||||||
This will make `xdg-open` use the portal to open programs, which resolves bugs involving
|
|
||||||
programs opening inside FHS envs or with unexpected env vars set from wrappers.
|
|
||||||
See [#160923](https://github.com/NixOS/nixpkgs/issues/160923) for more info.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
config = mkOption {
|
|
||||||
type = types.attrsOf associationOptions;
|
|
||||||
default = { };
|
|
||||||
example = {
|
|
||||||
x-cinnamon = { default = [ "xapp" "gtk" ]; };
|
|
||||||
pantheon = {
|
|
||||||
default = [ "pantheon" "gtk" ];
|
|
||||||
"org.freedesktop.impl.portal.Secret" = [ "gnome-keyring" ];
|
|
||||||
};
|
|
||||||
common = { default = [ "gtk" ]; };
|
|
||||||
};
|
|
||||||
description = ''
|
|
||||||
Sets which portal backend should be used to provide the implementation
|
|
||||||
for the requested interface. For details check {manpage}`portals.conf(5)`.
|
|
||||||
|
|
||||||
These will be written with the name `$desktop-portals.conf` for
|
|
||||||
`xdg.portal.config.$desktop` and `portals.conf` for
|
|
||||||
`xdg.portal.config.common` as an exception.
|
|
||||||
|
|
||||||
These, together with `xdg.portal.configPackages`, will be joined into a
|
|
||||||
directory and passed to `xdg-desktop-portal.service` through a
|
|
||||||
`NIXOS_XDG_DESKTOP_PORTAL_CONFIG_DIR` variable.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
|
|
||||||
configPackages = mkOption {
|
|
||||||
type = types.listOf types.package;
|
|
||||||
default = [ ];
|
|
||||||
example = lib.literalExpression "[ pkgs.gnome.gnome-session ]";
|
|
||||||
description = ''
|
|
||||||
List of packages that provide XDG desktop portal configuration, usually in
|
|
||||||
the form of `share/xdg-desktop-portal/$desktop-portals.conf`.
|
|
||||||
|
|
||||||
Note that configs in `xdg.portal.config` will be preferred if set.
|
|
||||||
'';
|
|
||||||
};
|
|
||||||
};
|
|
||||||
|
|
||||||
config = let
|
|
||||||
cfg = config.xdg.portal;
|
|
||||||
packages = [ pkgs.xdg-desktop-portal ] ++ cfg.extraPortals;
|
|
||||||
portalsDir =
|
|
||||||
"${config.home.profileDirectory}/share/xdg-desktop-portal/portals";
|
|
||||||
in mkIf cfg.enable {
|
|
||||||
warnings = optional (cfg.configPackages == [ ] && cfg.config == { }) ''
|
|
||||||
xdg-desktop-portal 1.17 reworked how portal implementations are loaded, you
|
|
||||||
should either set `xdg.portal.config` or `xdg.portal.configPackages`
|
|
||||||
to specify which portal backend to use for the requested interface.
|
|
||||||
|
|
||||||
https://github.com/flatpak/xdg-desktop-portal/blob/1.18.1/doc/portals.conf.rst.in
|
|
||||||
|
|
||||||
If you simply want to keep the behaviour in < 1.17, which uses the first
|
|
||||||
portal implementation found in lexicographical order, use the following:
|
|
||||||
|
|
||||||
xdg.portal.config.common.default = "*";
|
|
||||||
'';
|
|
||||||
|
|
||||||
assertions = [
|
|
||||||
(lib.hm.assertions.assertPlatform "xdg.portal" pkgs lib.platforms.linux)
|
|
||||||
|
|
||||||
{
|
|
||||||
assertion = cfg.extraPortals != [ ];
|
|
||||||
message =
|
|
||||||
"Setting xdg.portal.enable to true requires a portal implementation in xdg.portal.extraPortals such as xdg-desktop-portal-gtk or xdg-desktop-portal-kde.";
|
|
||||||
}
|
|
||||||
];
|
|
||||||
|
|
||||||
home = {
|
|
||||||
packages = packages ++ cfg.configPackages;
|
|
||||||
sessionVariables = mkMerge [
|
|
||||||
(mkIf cfg.xdgOpenUsePortal { NIXOS_XDG_OPEN_USE_PORTAL = "1"; })
|
|
||||||
{ NIX_XDG_DESKTOP_PORTAL_DIR = portalsDir; }
|
|
||||||
];
|
|
||||||
};
|
|
||||||
systemd.user.sessionVariables = {
|
|
||||||
NIX_XDG_DESKTOP_PORTAL_DIR = portalsDir;
|
|
||||||
};
|
|
||||||
|
|
||||||
xdg.configFile = lib.concatMapAttrs (desktop: conf:
|
|
||||||
lib.optionalAttrs (conf != { }) {
|
|
||||||
"xdg-desktop-portal/${
|
|
||||||
lib.optionalString (desktop != "common") "${desktop}-"
|
|
||||||
}portals.conf".text = lib.generators.toINI { } { preferred = conf; };
|
|
||||||
}) cfg.config;
|
|
||||||
};
|
|
||||||
}
|
|
|
@ -137,8 +137,7 @@ in {
|
||||||
|
|
||||||
home.activation.createXdgUserDirectories = mkIf cfg.createDirectories (let
|
home.activation.createXdgUserDirectories = mkIf cfg.createDirectories (let
|
||||||
directoriesList = attrValues directories;
|
directoriesList = attrValues directories;
|
||||||
mkdir =
|
mkdir = (dir: ''$DRY_RUN_CMD mkdir -p $VERBOSE_ARG "${dir}"'');
|
||||||
(dir: ''[[ -L "${dir}" ]] || run mkdir -p $VERBOSE_ARG "${dir}"'');
|
|
||||||
in lib.hm.dag.entryAfter [ "linkGeneration" ]
|
in lib.hm.dag.entryAfter [ "linkGeneration" ]
|
||||||
(strings.concatMapStringsSep "\n" mkdir directoriesList));
|
(strings.concatMapStringsSep "\n" mkdir directoriesList));
|
||||||
};
|
};
|
||||||
|
|
Some files were not shown because too many files have changed in this diff Show more
Loading…
Reference in a new issue