Merge pull request #7225 from GuardRex/guardrex/first-run-info-update
Update first time welcome message
This commit is contained in:
commit
6a64e17857
18 changed files with 222 additions and 208 deletions
|
@ -26,17 +26,18 @@ If you just installed `dotnet` you may see the first-run output:
|
||||||
```
|
```
|
||||||
Welcome to .NET Core!
|
Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry
|
||||||
|
|
||||||
Configuring...
|
Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.
|
||||||
Decompressing 100% 4936 ms
|
Decompressing 100% 4936 ms
|
||||||
Expanding 100% 17195 ms
|
Expanding 100% 17195 ms
|
||||||
```
|
```
|
||||||
|
|
|
@ -5,19 +5,18 @@ echo "Please visit http://aka.ms/dotnet-cli-eula for more information."
|
||||||
# Run 'dotnet new' to trigger the first time experience to initialize the cache
|
# Run 'dotnet new' to trigger the first time experience to initialize the cache
|
||||||
echo "Welcome to .NET Core!
|
echo "Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
.NET Core Tools Telemetry
|
Telemetry
|
||||||
|
---------
|
||||||
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
|
|
||||||
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry
|
||||||
|
|
||||||
|
Configuring...
|
||||||
--------------
|
--------------
|
||||||
The .NET Core Tools include a telemetry feature that collects usage information. It is important that the .NET Team understands how the tools are being used so that we can improve them.
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once."
|
||||||
|
|
||||||
The data collected is anonymous and will be published in an aggregated form for use by both Microsoft and community engineers under the Creative Commons Attribution License.
|
|
||||||
|
|
||||||
The .NET Core Tools telemetry feature is enabled by default. You can opt-out of the telemetry feature by setting an environment variable DOTNET_CLI_TELEMETRY_OPTOUT (for example, 'export' on macOS/Linux, 'set' on Windows) to true (for example, 'true', 1). You can read more about .NET Core tools telemetry at https://aka.ms/dotnet-cli-telemetry.
|
|
||||||
|
|
||||||
Installation Note
|
|
||||||
--------------
|
|
||||||
A command will be run during the install process that will improve project restore speed and enable offline access. It will take up to a minute to complete."
|
|
||||||
|
|
||||||
first_run() {
|
first_run() {
|
||||||
/usr/share/dotnet/dotnet exec /usr/share/dotnet/sdk/%SDK_VERSION%/dotnet.dll internal-reportinstallsuccess "debianpackage" > /dev/null 2>&1 || true
|
/usr/share/dotnet/dotnet exec /usr/share/dotnet/sdk/%SDK_VERSION%/dotnet.dll internal-reportinstallsuccess "debianpackage" > /dev/null 2>&1 || true
|
||||||
|
|
|
@ -9,19 +9,18 @@ echo "Please visit http://aka.ms/dotnet-cli-eula for more information."
|
||||||
# Run 'dotnet new' as the user to trigger the first time experience to initialize the cache
|
# Run 'dotnet new' as the user to trigger the first time experience to initialize the cache
|
||||||
echo "Welcome to .NET Core!
|
echo "Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
.NET Core Tools Telemetry
|
Telemetry
|
||||||
|
---------
|
||||||
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
|
|
||||||
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry
|
||||||
|
|
||||||
|
Configuring...
|
||||||
--------------
|
--------------
|
||||||
The .NET Core Tools include a telemetry feature that collects usage information. It is important that the .NET Team understands how the tools are being used so that we can improve them.
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once."
|
||||||
|
|
||||||
The data collected is anonymous and will be published in an aggregated form for use by both Microsoft and community engineers under the Creative Commons Attribution License.
|
|
||||||
|
|
||||||
The .NET Core Tools telemetry feature is enabled by default. You can opt-out of the telemetry feature by setting an environment variable DOTNET_CLI_TELEMETRY_OPTOUT (for example, 'export' on macOS/Linux, 'set' on Windows) to true (for example, 'true', 1). You can read more about .NET Core tools telemetry at https://aka.ms/dotnet-cli-telemetry.
|
|
||||||
|
|
||||||
Installation Note
|
|
||||||
--------------
|
|
||||||
A command will be run during the install process that will improve project restore speed and enable offline access. It will take up to a minute to complete."
|
|
||||||
|
|
||||||
first_run() {
|
first_run() {
|
||||||
/usr/share/dotnet/dotnet exec /usr/share/dotnet/sdk/%SDK_VERSION%/dotnet.dll internal-reportinstallsuccess "rpmpackage" > /dev/null 2>&1 || true
|
/usr/share/dotnet/dotnet exec /usr/share/dotnet/sdk/%SDK_VERSION%/dotnet.dll internal-reportinstallsuccess "rpmpackage" > /dev/null 2>&1 || true
|
||||||
|
|
|
@ -120,18 +120,19 @@
|
||||||
<data name="FirstTimeWelcomeMessage" xml:space="preserve">
|
<data name="FirstTimeWelcomeMessage" xml:space="preserve">
|
||||||
<value>Welcome to .NET Core!
|
<value>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</value>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="NugetCachePrimeMessage" xml:space="preserve">
|
<data name="NugetCachePrimeMessage" xml:space="preserve">
|
||||||
<value>Configuring...
|
<value>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</value>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</value>
|
||||||
</data>
|
</data>
|
||||||
<data name="FailedToPrimeCacheError" xml:space="preserve">
|
<data name="FailedToPrimeCacheError" xml:space="preserve">
|
||||||
<value>Failed to prime the NuGet cache. {0} failed with: {1}</value>
|
<value>Failed to prime the NuGet cache. {0} failed with: {1}</value>
|
||||||
|
@ -140,7 +141,7 @@ A command is running to initially populate your local package cache, to improve
|
||||||
<value>Permission denied to modify the '{0}' folder.
|
<value>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">Vítá vás .NET Core!
|
<target state="needs-review-translation">Vítá vás .NET Core!
|
||||||
---------------------
|
-------------------
|
||||||
Další informace o .NET Core najdete na https://aka.ms/dotnet-docs. Dostupné příkazy si zobrazíte pomocí dotnet --help, případně přejděte na https://aka.ms/dotnet-cli-docs.
|
Další informace o .NET Core najdete na https://aka.ms/dotnet-docs. Dostupné příkazy si zobrazíte pomocí dotnet --help, případně přejděte na https://aka.ms/dotnet-cli-docs.
|
||||||
|
|
||||||
Telemetrie
|
Telemetrie
|
||||||
--------------
|
----------
|
||||||
Nástroje .NET Core shromažďují data o využití s cílem vylepšit vaše prostředí. Data jsou anonymní a nezahrnují argumenty příkazového řádku. Data shromažďuje Microsoft, který je sdílí s komunitou.
|
Nástroje .NET Core shromažďují data o využití s cílem vylepšit vaše prostředí. Data jsou anonymní a nezahrnují argumenty příkazového řádku. Data shromažďuje Microsoft, který je sdílí s komunitou.
|
||||||
S telemetrií můžete vyjádřit výslovný nesouhlas, a to nastavením proměnné prostředí DOTNET_CLI_TELEMETRY_OPTOUT na 1 prostřednictvím svého oblíbeného rozhraní.
|
S telemetrií můžete vyjádřit výslovný nesouhlas, a to nastavením proměnné prostředí DOTNET_CLI_TELEMETRY_OPTOUT na 1 prostřednictvím svého oblíbeného rozhraní.
|
||||||
Další informace o telemetrii nástrojů .NET Core si můžete přečíst na webu https://aka.ms/dotnet-cli-telemetry.</target>
|
Další informace o telemetrii nástrojů .NET Core si můžete přečíst na webu https://aka.ms/dotnet-cli-telemetry.</target>
|
||||||
|
@ -30,10 +31,10 @@ Další informace o telemetrii nástrojů .NET Core si můžete přečíst na we
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">Probíhá konfigurace...
|
<target state="translated">Probíhá konfigurace...
|
||||||
-------------------
|
----------------------
|
||||||
Běží příkaz pro počáteční naplnění vaší místní mezipaměti balíčků, aby se vylepšila rychlost obnovování a umožnil se offline přístup. Provádění tohoto příkazu může trvat až minutu a proběhne jen jednou.</target>
|
Běží příkaz pro počáteční naplnění vaší místní mezipaměti balíčků, aby se vylepšila rychlost obnovování a umožnil se offline přístup. Provádění tohoto příkazu může trvat až minutu a proběhne jen jednou.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -41,7 +42,7 @@ Běží příkaz pro počáteční naplnění vaší místní mezipaměti balí
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
@ -49,7 +50,7 @@ Here are some options to fix this error:
|
||||||
<target state="translated">Oprávnění ke změně složky {0} bylo zamítnuto.
|
<target state="translated">Oprávnění ke změně složky {0} bylo zamítnuto.
|
||||||
|
|
||||||
Tuto chybu můžete opravit pomocí některé z těchto možností:
|
Tuto chybu můžete opravit pomocí některé z těchto možností:
|
||||||
---------------------
|
-----------------------------------------------------------
|
||||||
1. Znovu spusťte tento příkaz pomocí přístupu se zvýšenou úrovní oprávnění.
|
1. Znovu spusťte tento příkaz pomocí přístupu se zvýšenou úrovní oprávnění.
|
||||||
2. Zakažte software spouštěný při prvním zapnutí počítače tak, že nastavíte proměnnou prostředí DOTNET_SKIP_FIRST_TIME_EXPERIENCE na hodnotu Pravda.
|
2. Zakažte software spouštěný při prvním zapnutí počítače tak, že nastavíte proměnnou prostředí DOTNET_SKIP_FIRST_TIME_EXPERIENCE na hodnotu Pravda.
|
||||||
3. Zkopírujte sadu .NET Core SDK do nechráněného umístění a použijte ji z tohoto umístění.
|
3. Zkopírujte sadu .NET Core SDK do nechráněného umístění a použijte ji z tohoto umístění.
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">Willkommen bei .NET Core!
|
<target state="needs-review-translation">Willkommen bei .NET Core!
|
||||||
---------------------
|
-------------------------
|
||||||
Weitere Informationen zu .NET Core finden Sie unter https://aka.ms/dotnet-docs. Verwenden Sie "dotnet --help", um die verfügbaren Befehle anzuzeigen, oder wechseln Sie zu https://aka.ms/dotnet-cli-docs.
|
Weitere Informationen zu .NET Core finden Sie unter https://aka.ms/dotnet-docs. Verwenden Sie "dotnet --help", um die verfügbaren Befehle anzuzeigen, oder wechseln Sie zu https://aka.ms/dotnet-cli-docs.
|
||||||
|
|
||||||
Telemetrie
|
Telemetrie
|
||||||
--------------
|
----------
|
||||||
Über die .NET Core-Tools werden Nutzungsdaten erfasst, damit wir die Benutzeroberfläche weiter für Sie verbessern können. Die Daten sind anonym und enthalten keine Befehlszeilenargumente. Die Daten werden von Microsoft gesammelt und mit der Community geteilt.
|
Über die .NET Core-Tools werden Nutzungsdaten erfasst, damit wir die Benutzeroberfläche weiter für Sie verbessern können. Die Daten sind anonym und enthalten keine Befehlszeilenargumente. Die Daten werden von Microsoft gesammelt und mit der Community geteilt.
|
||||||
Sie können die Erfassung von Telemetriedaten deaktivieren, indem Sie die Umgebungsvariable DOTNET_CLI_TELEMETRY_OPTOUT mithilfe Ihrer bevorzugten Shell auf 1 festlegen.
|
Sie können die Erfassung von Telemetriedaten deaktivieren, indem Sie die Umgebungsvariable DOTNET_CLI_TELEMETRY_OPTOUT mithilfe Ihrer bevorzugten Shell auf 1 festlegen.
|
||||||
Weitere Informationen zur Telemetrie der .NET Core-Tools finden Sie unter https://aka.ms/dotnet-cli-telemetry.</target>
|
Weitere Informationen zur Telemetrie der .NET Core-Tools finden Sie unter https://aka.ms/dotnet-cli-telemetry.</target>
|
||||||
|
@ -30,10 +31,10 @@ Weitere Informationen zur Telemetrie der .NET Core-Tools finden Sie unter https:
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">Konfiguration wird durchgeführt...
|
<target state="translated">Konfiguration wird durchgeführt...
|
||||||
-------------------
|
----------------------------------
|
||||||
Ein Befehl wird ausgeführt, um Ihren lokalen Paketcache erstmals aufzufüllen, die Wiederherstellungsgeschwindigkeit zu verbessern und Onlinezugriff zu ermöglichen. Die Ausführung dieses Befehls nimmt bis zu einer Minute in Anspruch und wird einmalig ausgeführt.</target>
|
Ein Befehl wird ausgeführt, um Ihren lokalen Paketcache erstmals aufzufüllen, die Wiederherstellungsgeschwindigkeit zu verbessern und Onlinezugriff zu ermöglichen. Die Ausführung dieses Befehls nimmt bis zu einer Minute in Anspruch und wird einmalig ausgeführt.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -41,7 +42,7 @@ Ein Befehl wird ausgeführt, um Ihren lokalen Paketcache erstmals aufzufüllen,
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
@ -49,7 +50,7 @@ Here are some options to fix this error:
|
||||||
<target state="translated">Die Berechtigung zum Ändern des Ordners "{0}" wurde verweigert.
|
<target state="translated">Die Berechtigung zum Ändern des Ordners "{0}" wurde verweigert.
|
||||||
|
|
||||||
Im Folgenden finden Sie einige Optionen, um diesen Fehler zu beheben:
|
Im Folgenden finden Sie einige Optionen, um diesen Fehler zu beheben:
|
||||||
---------------------
|
---------------------------------------------------------------------
|
||||||
1. Führen Sie diesen Befehl mit erhöhten Zugriffsrechten noch mal aus.
|
1. Führen Sie diesen Befehl mit erhöhten Zugriffsrechten noch mal aus.
|
||||||
2. Deaktivieren Sie die erste Ausführung, indem Sie die Umgebungsvariable DOTNET_SKIP_FIRST_TIME_EXPERIENCE auf "true" festlegen.
|
2. Deaktivieren Sie die erste Ausführung, indem Sie die Umgebungsvariable DOTNET_SKIP_FIRST_TIME_EXPERIENCE auf "true" festlegen.
|
||||||
3. Kopieren Sie das .NET Core SDK an einen nicht geschützten Speicherort, und kopieren Sie es von dort.
|
3. Kopieren Sie das .NET Core SDK an einen nicht geschützten Speicherort, und kopieren Sie es von dort.
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">Bienvenido a .NET Core
|
<target state="needs-review-translation">Bienvenido a .NET Core
|
||||||
---------------------
|
----------------------
|
||||||
Aprenda sobre .NET Core en https://aka.ms/dotnet-docs. Use dotnet --help para ver los comandos disponibles o vaya a https://aka.ms/dotnet-cli-docs.
|
Aprenda sobre .NET Core en https://aka.ms/dotnet-docs. Use dotnet --help para ver los comandos disponibles o vaya a https://aka.ms/dotnet-cli-docs.
|
||||||
|
|
||||||
Telemetría
|
Telemetría
|
||||||
--------------
|
----------
|
||||||
Las herramientas de .NET Core recopilan datos de uso con el fin de mejorar su experiencia. Los datos son anónimos y no incluyen argumentos de la línea de comandos. Microsoft recopila los datos y los comparte con la comunidad.
|
Las herramientas de .NET Core recopilan datos de uso con el fin de mejorar su experiencia. Los datos son anónimos y no incluyen argumentos de la línea de comandos. Microsoft recopila los datos y los comparte con la comunidad.
|
||||||
Si desea optar por no participar en la telemetría, establezca una variable de entorno DOTNET_CLI_TELEMETRY_OPTOUT en 1 con el shell de su preferencia.
|
Si desea optar por no participar en la telemetría, establezca una variable de entorno DOTNET_CLI_TELEMETRY_OPTOUT en 1 con el shell de su preferencia.
|
||||||
Puede leer más información sobre la telemetría de las herramientas de .NET Core en https://aka.ms/dotnet-cli-telemetry.</target>
|
Puede leer más información sobre la telemetría de las herramientas de .NET Core en https://aka.ms/dotnet-cli-telemetry.</target>
|
||||||
|
@ -30,10 +31,10 @@ Puede leer más información sobre la telemetría de las herramientas de .NET Co
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">Configurando...
|
<target state="translated">Configurando...
|
||||||
-------------------
|
---------------
|
||||||
Se está ejecutando un comando para rellenar inicialmente la caché de paquetes local, para mejorar la velocidad de restauración y habilitar el acceso sin conexión. Este comando tardará en completarse un minuto y solo sucederá una vez.</target>
|
Se está ejecutando un comando para rellenar inicialmente la caché de paquetes local, para mejorar la velocidad de restauración y habilitar el acceso sin conexión. Este comando tardará en completarse un minuto y solo sucederá una vez.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -41,7 +42,7 @@ Se está ejecutando un comando para rellenar inicialmente la caché de paquetes
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
@ -49,7 +50,7 @@ Here are some options to fix this error:
|
||||||
<target state="translated">Permiso denegado para modificar la carpeta "{0}".
|
<target state="translated">Permiso denegado para modificar la carpeta "{0}".
|
||||||
|
|
||||||
Estas son algunas opciones para corregir este error:
|
Estas son algunas opciones para corregir este error:
|
||||||
---------------------
|
----------------------------------------------------
|
||||||
1. Vuelva a ejecutar este comando con acceso con privilegios elevados.
|
1. Vuelva a ejecutar este comando con acceso con privilegios elevados.
|
||||||
2. Deshabilite la primera experiencia de ejecución; para ello, establezca la variable de entorno DOTNET_SKIP_FIRST_TIME_EXPERIENCE en true.
|
2. Deshabilite la primera experiencia de ejecución; para ello, establezca la variable de entorno DOTNET_SKIP_FIRST_TIME_EXPERIENCE en true.
|
||||||
3. Copie el SDK de .NET Core en una ubicación no protegida y úselo desde ahí.
|
3. Copie el SDK de .NET Core en una ubicación no protegida y úselo desde ahí.
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">Bienvenue dans .NET Core !
|
<target state="needs-review-translation">Bienvenue dans .NET Core !
|
||||||
---------------------
|
--------------------------
|
||||||
En savoir plus sur .NET Core @ https://aka.ms/dotnet-docs. Utilisez dotnet --help pour voir les commandes disponibles, ou accédez à https://aka.ms/dotnet-cli-docs.
|
En savoir plus sur .NET Core @ https://aka.ms/dotnet-docs. Utilisez dotnet --help pour voir les commandes disponibles, ou accédez à https://aka.ms/dotnet-cli-docs.
|
||||||
|
|
||||||
Télémétrie
|
Télémétrie
|
||||||
--------------
|
----------
|
||||||
Les outils .NET Core collectent des données d'utilisation pour améliorer votre expérience utilisateur. Ces données sont anonymes et n'incluent aucun argument de ligne de commande. Les données sont collectées par Microsoft et partagées par la communauté.
|
Les outils .NET Core collectent des données d'utilisation pour améliorer votre expérience utilisateur. Ces données sont anonymes et n'incluent aucun argument de ligne de commande. Les données sont collectées par Microsoft et partagées par la communauté.
|
||||||
Vous pouvez refuser l'adhésion à la télémétrie en affectant la valeur 1 à la variable d'environnement DOTNET_CLI_TELEMETRY_OPTOUT via l'interpréteur de commandes de votre choix.
|
Vous pouvez refuser l'adhésion à la télémétrie en affectant la valeur 1 à la variable d'environnement DOTNET_CLI_TELEMETRY_OPTOUT via l'interpréteur de commandes de votre choix.
|
||||||
Pour plus d'informations sur la télémétrie des outils .NET Core, consultez https://aka.ms/dotnet-cli-telemetry.</target>
|
Pour plus d'informations sur la télémétrie des outils .NET Core, consultez https://aka.ms/dotnet-cli-telemetry.</target>
|
||||||
|
@ -30,10 +31,10 @@ Pour plus d'informations sur la télémétrie des outils .NET Core, consultez ht
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">Configuration en cours...
|
<target state="translated">Configuration en cours...
|
||||||
-------------------
|
-------------------------
|
||||||
Une commande s'exécute pour remplir votre cache de package local, améliorer la vitesse de restauration et activer l'accès hors connexion. L'exécution de cette commande peut prendre jusqu'à une minute et n'a lieu qu'une seule fois.</target>
|
Une commande s'exécute pour remplir votre cache de package local, améliorer la vitesse de restauration et activer l'accès hors connexion. L'exécution de cette commande peut prendre jusqu'à une minute et n'a lieu qu'une seule fois.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -41,7 +42,7 @@ Une commande s'exécute pour remplir votre cache de package local, améliorer la
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
@ -49,7 +50,7 @@ Here are some options to fix this error:
|
||||||
<target state="translated">Autorisation refusée pour la modification du dossier '{0}'.
|
<target state="translated">Autorisation refusée pour la modification du dossier '{0}'.
|
||||||
|
|
||||||
Voici quelques options pour corriger cette erreur :
|
Voici quelques options pour corriger cette erreur :
|
||||||
---------------------
|
---------------------------------------------------
|
||||||
1. Réexécutez cette commande avec un accès élevé.
|
1. Réexécutez cette commande avec un accès élevé.
|
||||||
2. Désactivez l'introduction de l'interface logicielle lors de la première utilisation en affectant la valeur true à la variable d'environnement DOTNET_SKIP_FIRST_TIME_EXPERIENCE.
|
2. Désactivez l'introduction de l'interface logicielle lors de la première utilisation en affectant la valeur true à la variable d'environnement DOTNET_SKIP_FIRST_TIME_EXPERIENCE.
|
||||||
3. Copiez le kit .NET Core SDK à un emplacement non protégé à partir duquel vous l'utiliserez ensuite.
|
3. Copiez le kit .NET Core SDK à un emplacement non protégé à partir duquel vous l'utiliserez ensuite.
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">Benvenuti a .NET Core
|
<target state="needs-review-translation">Benvenuti a .NET Core
|
||||||
---------------------
|
---------------------
|
||||||
Per altre informazioni su .NET Core, vedere https://aka.ms/dotnet-docs. Per visualizzare i comandi disponibili, usare dotnet --help oppure vedere https://aka.ms/dotnet-cli-docs.
|
Per altre informazioni su .NET Core, vedere https://aka.ms/dotnet-docs. Per visualizzare i comandi disponibili, usare dotnet --help oppure vedere https://aka.ms/dotnet-cli-docs.
|
||||||
|
|
||||||
Telemetria
|
Telemetria
|
||||||
--------------
|
----------
|
||||||
Gli strumenti di .NET Core consentono di raccogliere i dati di utilizzo allo scopo di migliorare l'esperienza. I dati sono anonimi e non includono gli argomenti della riga di comando. Vengono raccolti da Microsoft e condivisi con la community.
|
Gli strumenti di .NET Core consentono di raccogliere i dati di utilizzo allo scopo di migliorare l'esperienza. I dati sono anonimi e non includono gli argomenti della riga di comando. Vengono raccolti da Microsoft e condivisi con la community.
|
||||||
È possibile escludere la telemetria impostando la variabile di ambiente DOTNET_CLI_TELEMETRY_OPTOUT su 1 nella shell preferita.
|
È possibile escludere la telemetria impostando la variabile di ambiente DOTNET_CLI_TELEMETRY_OPTOUT su 1 nella shell preferita.
|
||||||
Per altre informazioni sulla telemetria degli strumenti di .NET Core, vedere https://aka.ms/dotnet-cli-telemetry.</target>
|
Per altre informazioni sulla telemetria degli strumenti di .NET Core, vedere https://aka.ms/dotnet-cli-telemetry.</target>
|
||||||
|
@ -30,10 +31,10 @@ Per altre informazioni sulla telemetria degli strumenti di .NET Core, vedere htt
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">Configurazione...
|
<target state="translated">Configurazione...
|
||||||
-------------------
|
-----------------
|
||||||
È in esecuzione un comando per popolare inizialmente la cache dei pacchetti locale, migliorare la velocità di ripristino e abilitare l'accesso offline. Il completamento di questo comando, che viene eseguito una sola volta, richiede circa un minuto.</target>
|
È in esecuzione un comando per popolare inizialmente la cache dei pacchetti locale, migliorare la velocità di ripristino e abilitare l'accesso offline. Il completamento di questo comando, che viene eseguito una sola volta, richiede circa un minuto.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -41,7 +42,7 @@ A command is running to initially populate your local package cache, to improve
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
@ -49,7 +50,7 @@ Here are some options to fix this error:
|
||||||
<target state="translated">L'autorizzazione per modificare la cartella '{0}' è stata negata.
|
<target state="translated">L'autorizzazione per modificare la cartella '{0}' è stata negata.
|
||||||
|
|
||||||
Ecco alcune opzioni per correggere questo errore:
|
Ecco alcune opzioni per correggere questo errore:
|
||||||
---------------------
|
-------------------------------------------------
|
||||||
1. Eseguire di nuovo questo comando con privilegi di accesso elevati.
|
1. Eseguire di nuovo questo comando con privilegi di accesso elevati.
|
||||||
2. Disabilitare il completamento dell'installazione impostando su true la variabile di ambiente DOTNET_SKIP_FIRST_TIME_EXPERIENCE.
|
2. Disabilitare il completamento dell'installazione impostando su true la variabile di ambiente DOTNET_SKIP_FIRST_TIME_EXPERIENCE.
|
||||||
3. Copiare .NET Core SDK in un percorso non protetto e usarlo da tale posizione.
|
3. Copiare .NET Core SDK in un percorso non protetto e usarlo da tale posizione.
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">.NET Core へようこそ!
|
<target state="needs-review-translation">.NET Core へようこそ!
|
||||||
---------------------
|
--------------------
|
||||||
.NET Core について詳しくは、https://aka.ms/dotnet-docs をご覧ください。dotnet --help を使って使用可能なコマンドを確認するか、https://aka.ms/dotnet-cli-docs をご覧ください。
|
.NET Core について詳しくは、https://aka.ms/dotnet-docs をご覧ください。dotnet --help を使って使用可能なコマンドを確認するか、https://aka.ms/dotnet-cli-docs をご覧ください。
|
||||||
|
|
||||||
テレメトリ
|
テレメトリ
|
||||||
--------------
|
---------
|
||||||
.NET Core ツールは、操作性を向上させるために利用状況データを収集します。データは匿名で、コマンドライン引数が含まれません。データは Microsoft によって収集され、コミュニティと共有されます。
|
.NET Core ツールは、操作性を向上させるために利用状況データを収集します。データは匿名で、コマンドライン引数が含まれません。データは Microsoft によって収集され、コミュニティと共有されます。
|
||||||
テレメトリを無効にするには、お好きなシェルを使用して、DOTNET_CLI_TELEMETRY_OPTOUT 環境変数を 1 に設定します。
|
テレメトリを無効にするには、お好きなシェルを使用して、DOTNET_CLI_TELEMETRY_OPTOUT 環境変数を 1 に設定します。
|
||||||
.NET Core ツールのテレメトリについて詳しくは、https://aka.ms/dotnet-cli-telemetry をお読みください。</target>
|
.NET Core ツールのテレメトリについて詳しくは、https://aka.ms/dotnet-cli-telemetry をお読みください。</target>
|
||||||
|
@ -30,10 +31,10 @@ You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-te
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">構成中...
|
<target state="translated">構成中...
|
||||||
-------------------
|
---------
|
||||||
ローカル パッケージ キャッシュを最初に設定し、復元速度を向上させ、オフライン アクセスを可能にするため、コマンドを実行しています。このコマンドは 1 回だけ実行され、完了までに最大 1 分かかる場合があります。</target>
|
ローカル パッケージ キャッシュを最初に設定し、復元速度を向上させ、オフライン アクセスを可能にするため、コマンドを実行しています。このコマンドは 1 回だけ実行され、完了までに最大 1 分かかる場合があります。</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -41,7 +42,7 @@ A command is running to initially populate your local package cache, to improve
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
@ -49,7 +50,7 @@ Here are some options to fix this error:
|
||||||
<target state="translated">'{0}' フォルダーを変更するためのアクセス許可が拒否されました。
|
<target state="translated">'{0}' フォルダーを変更するためのアクセス許可が拒否されました。
|
||||||
|
|
||||||
このエラーを修正するためのいくつかのオプションを次に示します。
|
このエラーを修正するためのいくつかのオプションを次に示します。
|
||||||
---------------------
|
--------------------------------------------------------
|
||||||
1. 昇格したアクセス権でこのコマンドを再実行します。
|
1. 昇格したアクセス権でこのコマンドを再実行します。
|
||||||
2. 環境変数 DOTNET_SKIP_FIRST_TIME_EXPERIENCE を true に設定して、最初の実行エクスペリエンスを無効にします。
|
2. 環境変数 DOTNET_SKIP_FIRST_TIME_EXPERIENCE を true に設定して、最初の実行エクスペリエンスを無効にします。
|
||||||
3. 保護されていない場所に .NET Core SDK をコピーし、そこから使用します。
|
3. 保護されていない場所に .NET Core SDK をコピーし、そこから使用します。
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">.NET Core를 시작합니다!
|
<target state="needs-review-translation">NET Core를 시작합니다!
|
||||||
---------------------
|
---------------------
|
||||||
.NET Core에 대한 자세한 내용은 https://aka.ms/dotnet-docs를 참조하세요. 사용 가능한 명령을 보려면 dotnet --help를 사용하거나 https://aka.ms/dotnet-cli-docs를 방문하세요.
|
.NET Core에 대한 자세한 내용은 https://aka.ms/dotnet-docs를 참조하세요. 사용 가능한 명령을 보려면 dotnet --help를 사용하거나 https://aka.ms/dotnet-cli-docs를 방문하세요.
|
||||||
|
|
||||||
원격 분석
|
원격 분석
|
||||||
--------------
|
---------
|
||||||
.NET Core 도구는 사용자 환경 개선을 위해 사용량 데이터를 수집합니다. 데이터는 익명이며 명령줄 인수를 포함하지 않습니다. Microsoft에서 데이터를 수집하여 커뮤니티와 공유합니다.
|
.NET Core 도구는 사용자 환경 개선을 위해 사용량 데이터를 수집합니다. 데이터는 익명이며 명령줄 인수를 포함하지 않습니다. Microsoft에서 데이터를 수집하여 커뮤니티와 공유합니다.
|
||||||
자주 사용하는 셸에서 DOTNET_CLI_TELEMETRY_OPTOUT 환경 변수를 1로 설정하여 원격 분석을 옵트아웃할 수 있습니다.
|
자주 사용하는 셸에서 DOTNET_CLI_TELEMETRY_OPTOUT 환경 변수를 1로 설정하여 원격 분석을 옵트아웃할 수 있습니다.
|
||||||
.NET Core 도구 원격 분석에 대한 자세한 내용은 https://aka.ms/dotnet-cli-telemetry에서 확인할 수 있습니다.</target>
|
.NET Core 도구 원격 분석에 대한 자세한 내용은 https://aka.ms/dotnet-cli-telemetry에서 확인할 수 있습니다.</target>
|
||||||
|
@ -30,10 +31,10 @@ You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-te
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">구성 중...
|
<target state="translated">구성 중...
|
||||||
-------------------
|
----------
|
||||||
초기에 로컬 패키지 캐시를 채우고, 복원 속도를 개선하고, 오프라인 액세스를 사용하도록 설정하기 위한 명령을 실행하고 있습니다. 완료하는 데 최대 1분이 소요되며 한 번만 실행됩니다.</target>
|
초기에 로컬 패키지 캐시를 채우고, 복원 속도를 개선하고, 오프라인 액세스를 사용하도록 설정하기 위한 명령을 실행하고 있습니다. 완료하는 데 최대 1분이 소요되며 한 번만 실행됩니다.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -41,7 +42,7 @@ A command is running to initially populate your local package cache, to improve
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
@ -49,7 +50,7 @@ Here are some options to fix this error:
|
||||||
<target state="translated">'{0}' 폴더를 수정하는 데 필요한 사용 권한이 거부되었습니다.
|
<target state="translated">'{0}' 폴더를 수정하는 데 필요한 사용 권한이 거부되었습니다.
|
||||||
|
|
||||||
이 오류를 해결하기 위한 옵션을 다음과 같습니다.
|
이 오류를 해결하기 위한 옵션을 다음과 같습니다.
|
||||||
---------------------
|
--------------------------------------------
|
||||||
1. 높은 액세스 권한으로 이 명령을 다시 실행합니다.
|
1. 높은 액세스 권한으로 이 명령을 다시 실행합니다.
|
||||||
2. 환경 변수 DOTNET_SKIP_FIRST_TIME_EXPERIENCE를 true로 설정하여 첫 실행 경험을 사용하지 않습니다.
|
2. 환경 변수 DOTNET_SKIP_FIRST_TIME_EXPERIENCE를 true로 설정하여 첫 실행 경험을 사용하지 않습니다.
|
||||||
3. .NET Core SDK를 보호되지 않은 위치로 복사한 후 이 위치에서 사용합니다.
|
3. .NET Core SDK를 보호되지 않은 위치로 복사한 후 이 위치에서 사용합니다.
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">.NET Core — Zapraszamy!
|
<target state="needs-review-translation">.NET Core — Zapraszamy!
|
||||||
---------------------
|
-----------------------
|
||||||
Więcej informacji o programie .NET Core znajdziesz na stronie https://aka.ms/dotnet-docs. Aby wyświetlić dostępne polecenia, użyj polecenia dotnet --help lub przejdź na stronę https://aka.ms/dotnet-cli-docs.
|
Więcej informacji o programie .NET Core znajdziesz na stronie https://aka.ms/dotnet-docs. Aby wyświetlić dostępne polecenia, użyj polecenia dotnet --help lub przejdź na stronę https://aka.ms/dotnet-cli-docs.
|
||||||
|
|
||||||
Telemetria
|
Telemetria
|
||||||
--------------
|
----------
|
||||||
Narzędzia programu .NET Core zbierają dane dotyczące użycia w celu ulepszenia Twojego środowiska pracy. Dane te są anonimowe i nie obejmują argumentów wiersza polecenia. Zbiera je firma Microsoft i udostępnia społeczności.
|
Narzędzia programu .NET Core zbierają dane dotyczące użycia w celu ulepszenia Twojego środowiska pracy. Dane te są anonimowe i nie obejmują argumentów wiersza polecenia. Zbiera je firma Microsoft i udostępnia społeczności.
|
||||||
Z telemetrii można zrezygnować, ustawiając zmienną środowiskową DOTNET_CLI_TELEMETRY_OPTOUT na wartość 1 przy użyciu ulubionej powłoki.
|
Z telemetrii można zrezygnować, ustawiając zmienną środowiskową DOTNET_CLI_TELEMETRY_OPTOUT na wartość 1 przy użyciu ulubionej powłoki.
|
||||||
Więcej informacji na temat telemetrii narzędzi programu .NET Core możesz znaleźć na stronie https://aka.ms/dotnet-cli-telemetry.</target>
|
Więcej informacji na temat telemetrii narzędzi programu .NET Core możesz znaleźć na stronie https://aka.ms/dotnet-cli-telemetry.</target>
|
||||||
|
@ -30,10 +31,10 @@ Więcej informacji na temat telemetrii narzędzi programu .NET Core możesz znal
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">Trwa konfigurowanie…
|
<target state="translated">Trwa konfigurowanie…
|
||||||
-------------------
|
---------------------
|
||||||
Wykonywane jest polecenie w celu wstępnego wypełnienia lokalnej pamięci podręcznej pakietów, poprawy szybkości przywracania i włączenia dostępu offline. Wykonanie tego polecenia jest jednorazowe i zajmie maksymalnie minutę.</target>
|
Wykonywane jest polecenie w celu wstępnego wypełnienia lokalnej pamięci podręcznej pakietów, poprawy szybkości przywracania i włączenia dostępu offline. Wykonanie tego polecenia jest jednorazowe i zajmie maksymalnie minutę.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -41,7 +42,7 @@ Wykonywane jest polecenie w celu wstępnego wypełnienia lokalnej pamięci podr
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
@ -49,7 +50,7 @@ Here are some options to fix this error:
|
||||||
<target state="translated">Odmowa uprawnień do zmodyfikowania folderu „{0}”.
|
<target state="translated">Odmowa uprawnień do zmodyfikowania folderu „{0}”.
|
||||||
|
|
||||||
Oto kilka opcji naprawiania tego błędu:
|
Oto kilka opcji naprawiania tego błędu:
|
||||||
---------------------
|
---------------------------------------
|
||||||
1. Uruchom to polecenie ponownie z podwyższonym poziomem uprawnień.
|
1. Uruchom to polecenie ponownie z podwyższonym poziomem uprawnień.
|
||||||
2. Wyłącz środowisko pierwszego uruchomienia, ustawiając dla zmiennej środowiskowej DOTNET_SKIP_FIRST_TIME_EXPERIENCE wartość true.
|
2. Wyłącz środowisko pierwszego uruchomienia, ustawiając dla zmiennej środowiskowej DOTNET_SKIP_FIRST_TIME_EXPERIENCE wartość true.
|
||||||
3. Skopiuj zestaw .NET Core SDK do lokalizacji niechronionej i tam z niego korzystaj.
|
3. Skopiuj zestaw .NET Core SDK do lokalizacji niechronionej i tam z niego korzystaj.
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">Bem-vindo ao .NET Core!
|
<target state="needs-review-translation">Bem-vindo ao .NET Core!
|
||||||
---------------------
|
-----------------------
|
||||||
Saiba mais sobre o .NET Core em https://aka.ms/dotnet-docs. Use dotnet --help para ver os comandos disponíveis ou acesse https://aka.ms/dotnet-cli-docs.
|
Saiba mais sobre o .NET Core em https://aka.ms/dotnet-docs. Use dotnet --help para ver os comandos disponíveis ou acesse https://aka.ms/dotnet-cli-docs.
|
||||||
|
|
||||||
Telemetria
|
Telemetria
|
||||||
--------------
|
----------
|
||||||
As ferramentas do .NET Core coletam dados de uso para melhorar sua experiência. Os dados são anônimos e não incluem argumentos de linha de comando. Os dados são coletados pela Microsoft e compartilhados com a comunidade.
|
As ferramentas do .NET Core coletam dados de uso para melhorar sua experiência. Os dados são anônimos e não incluem argumentos de linha de comando. Os dados são coletados pela Microsoft e compartilhados com a comunidade.
|
||||||
É possível recusar a telemetria ao configurar uma variável de ambiente DOTNET_CLI_TELEMETRY_OPTOUT como 1 usando seu shell favorito.
|
É possível recusar a telemetria ao configurar uma variável de ambiente DOTNET_CLI_TELEMETRY_OPTOUT como 1 usando seu shell favorito.
|
||||||
Leia mais sobre a telemetria das ferramentas do .NET Core em https://aka.ms/dotnet-cli-telemetry.</target>
|
Leia mais sobre a telemetria das ferramentas do .NET Core em https://aka.ms/dotnet-cli-telemetry.</target>
|
||||||
|
@ -30,10 +31,10 @@ Leia mais sobre a telemetria das ferramentas do .NET Core em https://aka.ms/dotn
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">Configurando...
|
<target state="translated">Configurando...
|
||||||
-------------------
|
---------------
|
||||||
Um comando está sendo executado para popular inicialmente o cache do pacote local, a fim de melhorar a velocidade de restauração e habilitar o acesso offline. Esse comando levará até um minuto para ser concluído e só ocorrerá uma vez.</target>
|
Um comando está sendo executado para popular inicialmente o cache do pacote local, a fim de melhorar a velocidade de restauração e habilitar o acesso offline. Esse comando levará até um minuto para ser concluído e só ocorrerá uma vez.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -41,7 +42,7 @@ Um comando está sendo executado para popular inicialmente o cache do pacote loc
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
@ -49,7 +50,7 @@ Here are some options to fix this error:
|
||||||
<target state="translated">Permissão negada para modificar a pasta '{0}'.
|
<target state="translated">Permissão negada para modificar a pasta '{0}'.
|
||||||
|
|
||||||
Aqui estão algumas opções para consertar este erro:
|
Aqui estão algumas opções para consertar este erro:
|
||||||
---------------------
|
---------------------------------------------------
|
||||||
1. Execute este comando novamente com acesso elevado.
|
1. Execute este comando novamente com acesso elevado.
|
||||||
2. Desabilite a primeira experiência de execução ao configurar a variável de ambiente DOTNET_SKIP_FIRST_TIME_EXPERIENCE como verdadeira.
|
2. Desabilite a primeira experiência de execução ao configurar a variável de ambiente DOTNET_SKIP_FIRST_TIME_EXPERIENCE como verdadeira.
|
||||||
3. Copie o SDK do .NET Core para uma localização não protegida e use-o de lá.
|
3. Copie o SDK do .NET Core para uma localização não protegida e use-o de lá.
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">Добро пожаловать в .NET Core!
|
<target state="needs-review-translation">Добро пожаловать в .NET Core!
|
||||||
---------------------
|
-----------------------------
|
||||||
Дополнительные сведения о .NET Core можно получить по адресу https://aka.ms/dotnet-docs. Для просмотра доступных команд используйте dotnet --help или перейдите на страницу https://aka.ms/dotnet-cli-docs.
|
Дополнительные сведения о .NET Core можно получить по адресу https://aka.ms/dotnet-docs. Для просмотра доступных команд используйте dotnet --help или перейдите на страницу https://aka.ms/dotnet-cli-docs.
|
||||||
|
|
||||||
Телеметрия
|
Телеметрия
|
||||||
--------------
|
----------
|
||||||
Средства .NET Core собирают данные об использовании для улучшения взаимодействия с пользователем. Эти данные анонимны и не включают в себя аргументы командной строки. Сбор данных осуществляется корпорацией Майкрософт, которая предоставляет их сообществу.
|
Средства .NET Core собирают данные об использовании для улучшения взаимодействия с пользователем. Эти данные анонимны и не включают в себя аргументы командной строки. Сбор данных осуществляется корпорацией Майкрософт, которая предоставляет их сообществу.
|
||||||
Вы можете явно отказаться от телеметрии, присвоив переменной среды DOTNET_CLI_TELEMETRY_OPTOUT значение 1 с помощью предпочитаемой оболочки.
|
Вы можете явно отказаться от телеметрии, присвоив переменной среды DOTNET_CLI_TELEMETRY_OPTOUT значение 1 с помощью предпочитаемой оболочки.
|
||||||
Дополнительные сведения о телеметрии в средствах .NET Core см. по адресу https://aka.ms/dotnet-cli-telemetry.</target>
|
Дополнительные сведения о телеметрии в средствах .NET Core см. по адресу https://aka.ms/dotnet-cli-telemetry.</target>
|
||||||
|
@ -30,10 +31,10 @@ You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-te
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">Идет настройка...
|
<target state="translated">Идет настройка...
|
||||||
-------------------
|
-----------------
|
||||||
Выполняется команда для изначального заполнения локального кэша пакетов, повышения скорости восстановления и обеспечения автономного доступа. Ее выполнение может занять до одной минуты и производится только раз.</target>
|
Выполняется команда для изначального заполнения локального кэша пакетов, повышения скорости восстановления и обеспечения автономного доступа. Ее выполнение может занять до одной минуты и производится только раз.</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -41,7 +42,7 @@ A command is running to initially populate your local package cache, to improve
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
@ -49,7 +50,7 @@ Here are some options to fix this error:
|
||||||
<target state="translated">Отменено разрешение на изменение папки "{0}".
|
<target state="translated">Отменено разрешение на изменение папки "{0}".
|
||||||
|
|
||||||
Ниже приведено несколько способов устранения этой ошибки.
|
Ниже приведено несколько способов устранения этой ошибки.
|
||||||
---------------------
|
---------------------------------------------------------
|
||||||
1. Повторно выполните эту команду с правами повышенного доступа.
|
1. Повторно выполните эту команду с правами повышенного доступа.
|
||||||
2. Отключите возможность первого запуска, задав для переменной среды DOTNET_SKIP_FIRST_TIME_EXPERIENCE значение "true".
|
2. Отключите возможность первого запуска, задав для переменной среды DOTNET_SKIP_FIRST_TIME_EXPERIENCE значение "true".
|
||||||
3. Скопируйте пакет SDK для .NET Core в незащищенное расположение и используйте его оттуда.
|
3. Скопируйте пакет SDK для .NET Core в незащищенное расположение и используйте его оттуда.
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">.NET Core’a Hoş Geldiniz!
|
<target state="needs-review-translation">.NET Core’a Hoş Geldiniz!
|
||||||
---------------------
|
-------------------------
|
||||||
.NET Core hakkında daha fazla bilgi için bkz. https://aka.ms/dotnet-docs. Kullanılabilir komutları görmek için dotnet --help komutunu kullanın veya https://aka.ms/dotnet-cli-docs adresine gidin.
|
.NET Core hakkında daha fazla bilgi için bkz. https://aka.ms/dotnet-docs. Kullanılabilir komutları görmek için dotnet --help komutunu kullanın veya https://aka.ms/dotnet-cli-docs adresine gidin.
|
||||||
|
|
||||||
Telemetri
|
Telemetri
|
||||||
--------------
|
---------
|
||||||
.NET Core araçları, deneyiminizi iyileştirmek için kullanım verileri toplar. Veriler anonimdir ve komut satırı bağımsız değişkenlerini içermez. Veriler Microsoft tarafından toplanır ve topluluk ile paylaşılır.
|
.NET Core araçları, deneyiminizi iyileştirmek için kullanım verileri toplar. Veriler anonimdir ve komut satırı bağımsız değişkenlerini içermez. Veriler Microsoft tarafından toplanır ve topluluk ile paylaşılır.
|
||||||
Sık kullandığınız kabuk aracılığıyla DOTNET_CLI_TELEMETRY_OPTOUT ortam değişkenini 1 değerine ayarlayarak telemetri toplanmasını geri çevirebilirsiniz.
|
Sık kullandığınız kabuk aracılığıyla DOTNET_CLI_TELEMETRY_OPTOUT ortam değişkenini 1 değerine ayarlayarak telemetri toplanmasını geri çevirebilirsiniz.
|
||||||
.NET Core araçları telemetrisi hakkında daha faza bilgi için bkz. https://aka.ms/dotnet-cli-telemetry.</target>
|
.NET Core araçları telemetrisi hakkında daha faza bilgi için bkz. https://aka.ms/dotnet-cli-telemetry.</target>
|
||||||
|
@ -30,8 +31,8 @@ Sık kullandığınız kabuk aracılığıyla DOTNET_CLI_TELEMETRY_OPTOUT ortam
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">Yapılandırılıyor...
|
<target state="translated">Yapılandırılıyor...
|
||||||
-------------------
|
-------------------
|
||||||
Yerel paket önbelleğinizi başlangıçta doldurmak, geri yükleme hızını artırmak ve çevrimdışı erişimi etkinleştirmek için bir komut çalıştırılıyor. Bu komutun tamamlanması yaklaşık bir dakika sürer ve bu işlem yalnızca bir kez gerçekleştirilir.</target>
|
Yerel paket önbelleğinizi başlangıçta doldurmak, geri yükleme hızını artırmak ve çevrimdışı erişimi etkinleştirmek için bir komut çalıştırılıyor. Bu komutun tamamlanması yaklaşık bir dakika sürer ve bu işlem yalnızca bir kez gerçekleştirilir.</target>
|
||||||
|
@ -41,7 +42,7 @@ Yerel paket önbelleğinizi başlangıçta doldurmak, geri yükleme hızını ar
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
@ -49,7 +50,7 @@ Here are some options to fix this error:
|
||||||
<target state="translated">'{0}' klasörünü değiştirme izni verilmedi.
|
<target state="translated">'{0}' klasörünü değiştirme izni verilmedi.
|
||||||
|
|
||||||
Bu hatayı düzeltmek için bazı seçenekler:
|
Bu hatayı düzeltmek için bazı seçenekler:
|
||||||
---------------------
|
-----------------------------------------
|
||||||
1. Bu komutu yükseltilmiş erişim ile yeniden çalıştırın.
|
1. Bu komutu yükseltilmiş erişim ile yeniden çalıştırın.
|
||||||
2. DOTNET_SKIP_FIRST_TIME_EXPERIENCE ortam değişkenini true olarak ayarlayarak ilk çalıştırma deneyimini devre dışı bırakın.
|
2. DOTNET_SKIP_FIRST_TIME_EXPERIENCE ortam değişkenini true olarak ayarlayarak ilk çalıştırma deneyimini devre dışı bırakın.
|
||||||
3. .NET Core SDK’sını korumasız bir konuma kopyalayarak oradan kullanın.
|
3. .NET Core SDK’sını korumasız bir konuma kopyalayarak oradan kullanın.
|
||||||
|
|
|
@ -6,17 +6,18 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry
|
||||||
|
|
||||||
Configuring...
|
Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="FailedToPrimeCacheError">
|
<trans-unit id="FailedToPrimeCacheError">
|
||||||
|
|
|
@ -5,19 +5,20 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">欢迎使用 .NET Core!
|
<target state="needs-review-translation">欢迎使用 .NET Core!
|
||||||
---------------------
|
------------------
|
||||||
若要详细了解 .NET Core,请访问 https://aka.ms/dotnet-docs。使用 dotnet --help 查看可用的命令或转到 https://aka.ms/dotnet-cli-docs。
|
若要详细了解 .NET Core,请访问 https://aka.ms/dotnet-docs。使用 dotnet --help 查看可用的命令或转到 https://aka.ms/dotnet-cli-docs。
|
||||||
|
|
||||||
遥测
|
遥测
|
||||||
--------------
|
----
|
||||||
.NET Core 收集使用情况数据,以便改善用户体验。数据是匿名的且不包含命令行参数。数据由 Microsoft 收集,并与社区共享。
|
.NET Core 收集使用情况数据,以便改善用户体验。数据是匿名的且不包含命令行参数。数据由 Microsoft 收集,并与社区共享。
|
||||||
可选择使用你最喜爱的 shell 将 DOTNET_CLI_TELEMETRY_OPTOUT 环境变量设置为 1,从而退出遥测。
|
可选择使用你最喜爱的 shell 将 DOTNET_CLI_TELEMETRY_OPTOUT 环境变量设置为 1,从而退出遥测。
|
||||||
若要深入了解 .NET Core 工具遥测,请访问 https://aka.ms/dotnet-cli-telemetry。</target>
|
若要深入了解 .NET Core 工具遥测,请访问 https://aka.ms/dotnet-cli-telemetry。</target>
|
||||||
|
@ -30,10 +31,10 @@ You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-te
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">正在配置...
|
<target state="translated">正在配置...
|
||||||
-------------------
|
----------
|
||||||
正在运行一项命令,以初步填充本地包缓存,从而提高还原速度并启用脱机访问。此命令最长需要一分钟才能完成,且仅可运行一次。</target>
|
正在运行一项命令,以初步填充本地包缓存,从而提高还原速度并启用脱机访问。此命令最长需要一分钟才能完成,且仅可运行一次。</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -41,7 +42,7 @@ A command is running to initially populate your local package cache, to improve
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
|
|
@ -5,15 +5,16 @@
|
||||||
<trans-unit id="FirstTimeWelcomeMessage">
|
<trans-unit id="FirstTimeWelcomeMessage">
|
||||||
<source>Welcome to .NET Core!
|
<source>Welcome to .NET Core!
|
||||||
---------------------
|
---------------------
|
||||||
Learn more about .NET Core @ https://aka.ms/dotnet-docs. Use dotnet --help to see available commands or go to https://aka.ms/dotnet-cli-docs.
|
Learn more about .NET Core: https://aka.ms/dotnet-docs
|
||||||
|
Use 'dotnet --help' to see available commands or visit: https://aka.ms/dotnet-cli-docs
|
||||||
|
|
||||||
Telemetry
|
Telemetry
|
||||||
--------------
|
---------
|
||||||
The .NET Core tools collect usage data in order to improve your experience. The data is anonymous and does not include command-line arguments. The data is collected by Microsoft and shared with the community.
|
The .NET Core tools collect usage data in order to help us improve your experience. The data is anonymous and doesn't include command-line arguments. The data is collected by Microsoft and shared with the community. You can opt-out of telemetry by setting the DOTNET_CLI_TELEMETRY_OPTOUT environment variable to '1' or 'true' using your favorite shell.
|
||||||
You can opt out of telemetry by setting a DOTNET_CLI_TELEMETRY_OPTOUT environment variable to 1 using your favorite shell.
|
|
||||||
You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-telemetry.</source>
|
Read more about .NET Core CLI Tools telemetry: https://aka.ms/dotnet-cli-telemetry</source>
|
||||||
<target state="translated">歡迎使用 .NET Core!
|
<target state="needs-review-translation">歡迎使用 .NET Core!
|
||||||
---------------------
|
------------------
|
||||||
深入了解 .NET Core @ https://aka.ms/dotnet-docs。使用 dotnet --help 可查看可用的命令,或前往 https://aka.ms/dotnet-cli-docs。
|
深入了解 .NET Core @ https://aka.ms/dotnet-docs。使用 dotnet --help 可查看可用的命令,或前往 https://aka.ms/dotnet-cli-docs。
|
||||||
|
|
||||||
遙測
|
遙測
|
||||||
|
@ -30,10 +31,10 @@ You can read more about .NET Core tools telemetry @ https://aka.ms/dotnet-cli-te
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
<trans-unit id="NugetCachePrimeMessage">
|
<trans-unit id="NugetCachePrimeMessage">
|
||||||
<source>Configuring...
|
<source>Configuring...
|
||||||
-------------------
|
--------------
|
||||||
A command is running to initially populate your local package cache, to improve restore speed and enable offline access. This command will take up to a minute to complete and will only happen once.</source>
|
A command is running to populate your local package cache to improve restore speed and enable offline access. This command takes up to one minute to complete and only runs once.</source>
|
||||||
<target state="translated">正在設定...
|
<target state="translated">正在設定...
|
||||||
-------------------
|
-----------
|
||||||
執行命令以初步填入您的本機套件快取,以改善還原速度並允許離線存取。此命令最長需要一分鐘的時間才可完成,且只會進行一次。</target>
|
執行命令以初步填入您的本機套件快取,以改善還原速度並允許離線存取。此命令最長需要一分鐘的時間才可完成,且只會進行一次。</target>
|
||||||
<note />
|
<note />
|
||||||
</trans-unit>
|
</trans-unit>
|
||||||
|
@ -41,7 +42,7 @@ A command is running to initially populate your local package cache, to improve
|
||||||
<source>Permission denied to modify the '{0}' folder.
|
<source>Permission denied to modify the '{0}' folder.
|
||||||
|
|
||||||
Here are some options to fix this error:
|
Here are some options to fix this error:
|
||||||
---------------------
|
----------------------------------------
|
||||||
1. Re-run this command with elevated access.
|
1. Re-run this command with elevated access.
|
||||||
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
2. Disabled the first run experience by setting the environment variable DOTNET_SKIP_FIRST_TIME_EXPERIENCE to true.
|
||||||
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
3. Copy the .NET Core SDK to a non-protected location and use it from there.
|
||||||
|
@ -49,7 +50,7 @@ Here are some options to fix this error:
|
||||||
<target state="translated">權限無法修改 '{0}' 資料夾。
|
<target state="translated">權限無法修改 '{0}' 資料夾。
|
||||||
|
|
||||||
以下為修正此錯誤的一些選項:
|
以下為修正此錯誤的一些選項:
|
||||||
---------------------
|
-------------------------
|
||||||
1. 利用較高的存取權再次執行此命令。
|
1. 利用較高的存取權再次執行此命令。
|
||||||
2. 將環境變數 DOTNET_SKIP_FIRST_TIME_EXPERIENCE 設定為 true,停用第一次的執行體驗。
|
2. 將環境變數 DOTNET_SKIP_FIRST_TIME_EXPERIENCE 設定為 true,停用第一次的執行體驗。
|
||||||
3. 將 .NET Core SDK 複製到不受保護的位置,並於該處使用此 SDK。
|
3. 將 .NET Core SDK 複製到不受保護的位置,並於該處使用此 SDK。
|
||||||
|
|
Loading…
Reference in a new issue