Author SHA1 Message Date
amd64foxandGitHub e22aba4ed4 version bump to 1.2.94 2026-07-11 16:37:12 +03:00
amd64fox 9eafb084c6 testing the new patch for slots in version 1.2.94
#876
2026-07-11 15:50:34 +03:00
amd64fox 550bc72cd1 feat(binary): enable native crossfade patch
- enable crossfade_enabled in Spotify.dll for 1.2.89+ free users #866

- share pe scanning helpers between dll signature and feature patches
2026-07-07 01:40:11 +03:00
amd64fox 981411947b corrected version 2026-07-02 00:46:46 +03:00
amd64fox 837d5d2471 version bump to 1.2.93 2026-07-02 00:45:00 +03:00
amd64fox ba77e8cc0b preparing for 1.2.93
- support ui-licenses.html
2026-06-27 02:20:15 +03:00
amd64fox fca14a99ba fix(installer): avoid duplicate pause prompts 2026-06-16 19:38:51 +03:00
amd64fox 0725e3465f enabled user top tracks 1.2.90+ 2026-06-15 22:41:42 +03:00
amd64fox 3284673df6 version bump to 1.2.92 2026-06-12 00:45:17 +03:00
amd64fox 95882aa5b3 version corrected 2026-05-30 22:39:47 +03:00
amd64fox b53956f71d fix(patches): skip version-mismatched patch targets
- check patch versions before opening target files
- add the home-v2 empty response check patch #862
2026-05-30 22:06:22 +03:00
49d6db9448 Fix strict-mode installer state initialization (#859)
* fix: initialize version comparison flags

* fix: initialize installer state defaults

* docs: explain installer state defaults

* fix: initialize remaining runtime state

* initialize curl capability cache and local patch accumulator before they are read

* this fixes StrictMode failures in curl download detection and product_state patch assembly

---------

Co-authored-by: amd64fox <62529699+amd64fox@users.noreply.github.com>
2026-05-26 18:08:00 +03:00
amd64foxandGitHub 0154f9b353 Fix Spotify link in README 2026-05-24 02:13:57 +03:00
amd64fox 13ef73f820 version bump to 1.2.90 2026-05-20 22:46:05 +03:00
amd64fox 8e2595922e version bump to 1.2.89
- Show "Make this a playlist" button when filtering Liked Songs by genre
- Resolve short recommended Spotify versions through versions.json
- Keep downloads on short loadspot URLs
- Auto-handle explicit -v downgrade installs
- Simplify installer translation messages
2026-05-08 14:45:51 +03:00
amd64fox bd5de69a7e version bump to 1.2.88.485 2026-05-04 12:12:12 +03:00
amd64fox 730ea89a66 version bump to 1.2.88.484 2026-04-29 23:32:09 +03:00
amd64fox 513bbdbe57 fix: update SpotX check version source 2026-04-29 23:22:50 +03:00
amd64fox c1c04dd69b fix: use uk language code for Ukrainian locale 2026-04-27 19:16:07 +03:00
amd64fox 7fde1cbe98 download error fixed 2026-04-26 22:10:47 +03:00
amd64fox 71a8cfdcc2 version bump to 1.2.88.483
- localization for tags in liked songs has been fixed
- added support for custom themes for lyrics in versions 1.2.80+
- lyrics are disabled for the right panel
2026-04-26 21:59:57 +03:00
46 changed files with 1723 additions and 1022 deletions
@@ -7,7 +7,7 @@ body:
attributes:
label: What language do you want to translate into?
description: Also note the already added <a href="https://github.com/SpotX-Official/SpotX/tree/main/scripts/installer-lang">languages</a>
placeholder: e.g. English
placeholder: e.g. English
validations:
required: true
- type: input
@@ -26,8 +26,8 @@ body:
- Translation strings start after an equals sign and are enclosed in quotation marks
- There are variables before the equal sign, they do not need to be translated.
- Also, if you come across characters <kbd>{0}</kbd>, <kbd>{1}</kbd>, <kbd>[Y/N]</kbd> or file names, then just skip them.
Good luck to you.
Good luck to you.
value: |
Welcome = "
╔══════════════════════════════╗
@@ -46,17 +46,13 @@ body:
MsSpoti3 = "Automatically uninstalling Spotify MS..."
MsSpoti4 = "Uninstalling Spotify MS..."
Prem = "Modification for premium account..."
OldV = "Found outdated version of Spotify"
OldV2 = "Your Spotify version ({0}) is outdated, the current latest version is — {1}"
OldV3 = "Want to update ? [Y/N]"
AutoUpd = "Automatic update to the recommended version"
DelOrOver = "Remove the current version ({0}) or install over it? Y [Remove] / N [Install Over]"
DelOld = "Uninstalling old Spotify..."
NewV = "Unsupported version of Spotify found"
DelSpotify = "Uninstalling Spotify..."
NewV2 = "Your Spotify version ({0}) has not been tested. The stable version for SpotX is {1}"
NewV3 = "Continue with {0} (errors may occur) ? [Y/N]"
Recom = "Install the latest version {0} ? [Y/N]"
DelNew = "Uninstalling an untested Spotify..."
DownSpoti = "Downloading and installing Spotify"
DownSpoti2 = "Please wait..."
PodcatsOff = "Off Podcasts"
@@ -75,7 +71,7 @@ body:
HostInfo = "Unwanted URLs found in hosts file"
HostBak = "Backing up hosts.bak..."
HostDel = "Trying to remove unwanted URLs from the original hosts file..."
HostError = "Something went wrong while editing the hosts file, edit it manually or run the script as administrator"
render: txt
HostError = "Something went wrong while editing the hosts file, edit it manually or run the script as administrator"
render: txt
validations:
required: true
required: true
+27 -9
View File
@@ -14,19 +14,37 @@ jobs:
- name: Run Spotx
shell: powershell
run: |
$jsonUrl = "https://raw.githubusercontent.com/amd64fox/LoaderSpot/main/versions.json"
$jsonUrl = "https://raw.githubusercontent.com/LoaderSpot/table/refs/heads/main/table/versions.json"
$resp = Invoke-RestMethod -Uri $jsonUrl
# Get a link to the x86 installer for the first version
$firstVersion = $resp.PSObject.Properties.Name | Select-Object -First 1
$x64InstallerUrl = $resp.$firstVersion.links.win.x64
# Use fullversion because installer names include architecture suffixes
$latestEntry = $resp.PSObject.Properties | Select-Object -First 1
if (-not $latestEntry) {
throw "No Spotify versions found in $jsonUrl"
}
# Regex to find the desired part of the link
$regex = [regex]::Match($x64InstallerUrl, "spotify_installer-(.+?)\.exe")
$version = $regex.Groups[1].Value
$spotifyFullVersion = $latestEntry.Value.fullversion
if ([string]::IsNullOrWhiteSpace($spotifyFullVersion) -or $spotifyFullVersion -notmatch '^\d+\.\d+\.\d+\.\d+\.g[0-9a-f]{8}$') {
throw "Invalid Spotify fullversion for $($latestEntry.Name)"
}
# Incoming parameters
$parametrs = '-Verbose -new_theme -v $version -sp-over -cache_limit 1000 -block_update_on -lyrics_stat spotify -urlform_goofy "https://docs.google.com/forms/formResponse" -idbox_goofy "9999999" -podcasts_off -adsections_off -lyrics_block'
$parameters = @{
Verbose = $true
new_theme = $true
version = $spotifyFullVersion
confirm_spoti_recomended_over = $true
cache_limit = 1000
block_update_on = $true
lyrics_stat = "spotify"
urlform_goofy = "https://docs.google.com/forms/formResponse"
idbox_goofy = "9999999"
podcasts_off = $true
adsections_off = $true
lyrics_block = $true
}
# Run Spotx
iex "& { $(iwr -useb 'https://raw.githubusercontent.com/SpotX-Official/SpotX/refs/heads/main/run.ps1') } $parametrs"
$spotxUrl = "https://raw.githubusercontent.com/SpotX-Official/SpotX/refs/heads/main/run.ps1"
$spotxScript = [scriptblock]::Create((Invoke-WebRequest -UseBasicParsing -Uri $spotxUrl).Content)
& $spotxScript @parameters
+1
View File
@@ -0,0 +1 @@
AGENTS.md
+2 -2
View File
@@ -1,7 +1,7 @@
@echo off
:: Line for changing spotx parameters, each parameter should be separated by a space
set param=-new_theme
set param=-new_theme -no_pause
set url='https://raw.githubusercontent.com/SpotX-Official/SpotX/refs/heads/main/run.ps1'
set url2='https://spotx-official.github.io/SpotX/run.ps1'
@@ -11,4 +11,4 @@ set tls=[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]:
-Command %tls% $p='%param%'; """ & { $(try { iwr -useb %url% } catch { $p+= ' -m'; iwr -useb %url2% })} $p """" | iex
pause
exit /b
exit /b
+1 -1
View File
@@ -1,7 +1,7 @@
@echo off
:: Line for changing spotx parameters, each parameter should be separated by a space
set param=-v 1.2.13.661.ga588f749 -confirm_spoti_recomended_over -block_update_on
set param=-v 1.2.13.661.ga588f749 -confirm_spoti_recomended_over -block_update_on -no_pause
set url='https://raw.githubusercontent.com/SpotX-Official/SpotX/refs/heads/main/run.ps1'
set url2='https://spotx-official.github.io/SpotX/run.ps1'
+1 -1
View File
@@ -27,7 +27,7 @@
<h1 id="requirements">Requirements</h1>
- **OS:** Windows 7-11
- **Spotify:** [Official desktop version](https://loadspot.pages.dev) (Microsoft Store version is not suitable)
- **Spotify:** [Official desktop version](https://loadspot.vercel.app/) (Microsoft Store version is not suitable)
- **PowerShell:** 5.1 and above
<h1 id="features">Features</h1>
+10 -3
View File
@@ -42,7 +42,9 @@ body .KDhLFoEqoClhH12bsfrS {
/* lyrics not available message */
.C3pBU1DsOUJJOAv89ZFT,
.T67LFP0PElpfkkLuegQt,
.e7eFLioNSG5PAi1qVFT4 {
.e7eFLioNSG5PAi1qVFT4,
.l2060qoyWU4J9ihSxHLE,
.hfTlyhd7WCIk9xmP {
color: var(--musixmatch) !important;
}
@@ -50,7 +52,8 @@ body .KDhLFoEqoClhH12bsfrS {
.FUYNhisXTCmbzt9IDxnT,
.tr8V5eHsUaIkOYVw7eSG,
.hW9km7ku6_iggdWDR_Lg,
.lofIAg8Ixko3mfBrbfej {
.lofIAg8Ixko3mfBrbfej,
.bbJIIopLxggQmv5x {
--lyrics-color-active: var(--current) !important;
--lyrics-color-inactive: var(--next) !important;
--lyrics-color-passed: var(--past) !important;
@@ -69,7 +72,11 @@ body .KDhLFoEqoClhH12bsfrS {
._LKG3z7SnerR0eigPCoK:hover,
.NHVfxGs2HwmI_fly2JC4:hover,
.gaHIufRWhoWbiT8S6zuM:hover,
.FQYXZaa0aDIrse54YlYO:hover {
.FQYXZaa0aDIrse54YlYO:hover,
.PSyA4iign083ZV6vOqPj:hover,
.Plu0zvuRv7kOQwsQ02cC:hover,
.Mnf9PkrVHsX90BNf:hover,
.XiH9KR6bhDwEFykV:hover {
color: var(--hover) !important;
/* remove underline */
text-decoration: none !important;
+111 -15
View File
@@ -390,7 +390,7 @@
"native_description": "Enable esperanto Migration for Leaderboard Ad Format",
"version": {
"fr": "1.2.32",
"to": ""
"to": "1.2.90"
}
},
"SponsoredPlaylistEsperantoMigration": {
@@ -449,7 +449,7 @@
"native_description": "Enables cross-origin iframe rendering for leaderboard ads via CDN template",
"version": {
"fr": "1.2.86",
"to": ""
"to": "1.2.90"
}
},
"LyricsUpsell": {
@@ -557,7 +557,7 @@
"native_description": "Enable Canvas for ads",
"version": {
"fr": "1.2.52",
"to": ""
"to": "1.2.92"
}
},
"ConnectedStateObserver": {
@@ -780,6 +780,62 @@
"fr": "1.2.84",
"to": ""
}
},
"ad_feedback_in_stream": {
"name": "enable_ad_feedback_in_stream",
"description": "Enable new ad feedback UX for in-stream ads",
"version": {
"fr": "1.2.88",
"to": ""
}
},
"ad_feedback_home_free": {
"name": "enable_ad_feedback_home_free",
"description": "Kill switch for ad feedback on home ad format for free users",
"version": {
"fr": "1.2.93",
"to": ""
}
},
"ad_feedback_home_premium": {
"name": "enable_ad_feedback_home_premium",
"description": "Kill switch for ad feedback on home ad format for premium users",
"version": {
"fr": "1.2.93",
"to": ""
}
},
"ad_feedback_milestone_3": {
"name": "enable_ad_feedback_milestone_3",
"description": "Enable ad feedback milestone 3 feature",
"version": {
"fr": "1.2.93",
"to": ""
}
},
"HarmonyMediaPlaybackReporting": {
"name": "enableHarmonyMediaPlaybackReporting",
"description": "Enable the reporting of media playback events in Harmony",
"version": {
"fr": "1.2.88",
"to": ""
}
},
"ad_reporting": {
"name": "enable_ad_reporting",
"description": "Gates the report ad menu item in the ad overflow context menu",
"version": {
"fr": "1.2.89",
"to": ""
}
},
"HptoLayoutRewrite": {
"name": "enableHptoLayoutRewrite",
"description": "Enable the new HomeAdCard flexbox layout rewrite",
"version": {
"fr": "1.2.92",
"to": ""
}
}
},
"EnableExp": {
@@ -1167,7 +1223,7 @@
"native_description": "Show top tracks and top artists on profile page",
"version": {
"fr": "1.2.22",
"to": ""
"to": "1.2.89"
}
},
"EightShortcuts": {
@@ -1842,6 +1898,13 @@
"to": ""
}
},
"MagpieAudiobookRows": {
"name": "enableMagpieAudiobookRows",
"version": {
"fr": "1.2.92",
"to": ""
}
},
"PlaylistExtenderBpmKey": {
"name": "enablePlaylistExtenderBpmKey",
"native_description": "Enable BPM and key columns in playlist recommendations",
@@ -1897,6 +1960,30 @@
"fr": "1.2.86",
"to": ""
}
},
"LikedSongsMakePlaylist": {
"name": "enableLikedSongsMakePlaylist",
"native_description": "Show 'Make this a playlist' button when filtering Liked Songs by genre",
"version": {
"fr": "1.2.89",
"to": ""
}
},
"UserTopTracks": {
"name": "enableUserTopTracks",
"native_description": "Enable User Top Tracks shelf on the profile page and the dedicated /top/tracks route. Disable via rollout to kill the feature ahead of any List Platform migration",
"version": {
"fr": "1.2.90",
"to": ""
}
},
"crossfade_enabled": {
"name": "crossfade_enabled",
"native_description": "When true, shows the Crossfade toggle in Advanced Playback settings. When false, the setting is hidden.",
"version": {
"fr": "1.2.89",
"to": ""
}
}
},
"CustomExp": {
@@ -2124,7 +2211,7 @@
"block_slots": {
"version": {
"fr": "1.1.59",
"to": ""
"to": "1.2.93"
},
"add": "slot}(?=.{3,8}(override_url|queued_ads))",
"match": "slots(?=.{3,8}(override_url|queued_ads))",
@@ -2133,7 +2220,7 @@
"block_slots_2": {
"version": {
"fr": "1.2.55",
"to": ""
"to": "1.2.93"
},
"add": "slot}(?=.{25,35}state)",
"match": "slots(?=.{25,35}state)",
@@ -2142,7 +2229,7 @@
"block_slots_3": {
"version": {
"fr": "1.2.55",
"to": ""
"to": "1.2.93"
},
"add": "}(?=payload=)",
"match": "\\?(?=payload=)",
@@ -2432,14 +2519,14 @@
"to": ""
},
"match": [
"<li><a href=\"#[A-Za-z0-9]{5}\">zlib<\/a><\/li>\n(.|\n)*<\/p><!-- END CONTAINER DEPS LICENSES -->(<\/div>)",
"\t",
" ",
"(?m)(^\\s*\r?\n)",
"\r?\n(?!\\(1|\\d)"
"(?s)<li><a href=\"#[A-Za-z0-9]{5}\">zlib<\/a><\/li>.*?<\/p><!-- END CONTAINER DEPS LICENSES -->(<\/div>)|(<p>Third-party licenses[^<]*Desktop UI code:<\/p>\\s*<ul\\b[^>]*>(?:\\s*<li><a href=\"[^\"]+\">.*?<\/a><\/li>){1,8}).*?(<\/ul>).*\\z|(<p>Third-party licenses[^<]*Desktop UI code:<\/p>)\\s*\\z",
"\t|\\z",
" |\\z",
"(?m)(^\\s*\r?\n)|\\z",
"\r?\n(?!\\(1|\\d)|\\z"
],
"replace": [
"$2",
"$1$2$3$4",
"",
"",
"",
@@ -2551,6 +2638,14 @@
},
"match": "(typeName\\])",
"replace": "$1 || []"
},
"fixHomeV2EmptyResponseCheck": {
"version": {
"fr": "1.1.92",
"to": "1.2.44"
},
"match": "(\"HomeResponsePayload\"[\\s\\S]{0,500}?)0\\s*===\\s*([A-Za-z_$][\\w$]*)\\.sectionContainer\\.sections\\.totalCount\\s*\\|\\|\\s*0\\s*===\\s*\\2\\.sectionContainer\\.sections\\.items\\.length",
"replace": "$1!Array.isArray(null==$2||null==$2.sectionContainer||null==$2.sectionContainer.sections?void 0:$2.sectionContainer.sections.items)||0===$2.sectionContainer.sections.items.length"
}
},
"VariousJs": {
@@ -2645,6 +2740,7 @@
"replace": "min:250,max:400"
},
"filtertags_locale_fix": {
"disable": true,
"version": {
"fr": "1.2.29",
"to": ""
@@ -2703,7 +2799,7 @@
"hideEmptyYourEpisodes": {
"version": {
"fr": "1.2.78",
"to": ""
"to": "1.2.89"
},
"match": "(includeYourEpisodes\\?\\{inclusionMode:[^,}]+\\.)INCLUDE_ALWAYS",
"replace": "$1INCLUDE_IF_NOT_EMPTY"
@@ -2717,4 +2813,4 @@
"replace": "$1(\"browsePage\"===$4.name?\"d8346883162a16a62a5b69e73e70c66a68c27b14265091cd9e1517f48334bbb3\":$3($4.body))"
}
}
}
}
+1525 -400
View File
File diff suppressed because it is too large Load Diff
-22
View File
@@ -1,22 +0,0 @@
@echo off
setlocal
set "script_name=DL_Diag.ps1"
set "branch_name=dl-diag-scripts"
set "script_dir=%~dp0"
set "local_script=%script_dir%%script_name%"
set "branch_url=https://raw.githubusercontent.com/SpotX-Official/SpotX/refs/heads/%branch_name%/scripts/%script_name%"
set "main_url=https://raw.githubusercontent.com/SpotX-Official/SpotX/refs/heads/main/scripts/%script_name%"
set "temp_script=%TEMP%\SpotX-%script_name%"
set "ps=%SYSTEMROOT%\System32\WindowsPowerShell\v1.0\powershell.exe"
if exist "%local_script%" (
%ps% -NoProfile -ExecutionPolicy Bypass -File "%local_script%"
) else (
%ps% -NoProfile -ExecutionPolicy Bypass ^
-Command "[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]::SecurityProtocol -bor [Net.SecurityProtocolType]::Tls12; $out='%temp_script%'; $urls=@('%branch_url%','%main_url%'); $downloaded=$false; foreach ($url in $urls) { try { Invoke-WebRequest -UseBasicParsing -Uri $url -OutFile $out -ErrorAction Stop; $downloaded=$true; break } catch {} }; if (-not $downloaded) { throw 'Failed to download diagnostic script' }; & $out"
)
pause
endlocal
exit /b
-388
View File
@@ -1,388 +0,0 @@
$rawScriptUrl = 'https://raw.githubusercontent.com/SpotX-Official/SpotX/refs/heads/main/run.ps1'
$mirrorScriptUrl = 'https://spotx-official.github.io/SpotX/run.ps1'
$downloadHost = 'loadspot.amd64fox1.workers.dev'
$defaultLatestFull = '1.2.86.502.g8cd7fb22'
$stableFull = '1.2.13.661.ga588f749'
$reportLines = New-Object 'System.Collections.Generic.List[string]'
$sensitivePatterns = New-Object 'System.Collections.Generic.List[object]'
function Add-SensitivePattern {
param(
[string]$Pattern,
[string]$Replacement = '[redacted]'
)
if (-not [string]::IsNullOrWhiteSpace($Pattern)) {
$script:sensitivePatterns.Add([PSCustomObject]@{
Pattern = $Pattern
Replacement = $Replacement
}) | Out-Null
}
}
function Protect-DiagnosticText {
param(
[AllowNull()]
[string]$Text
)
if ($null -eq $Text) {
return $null
}
$value = [string]$Text
foreach ($item in $script:sensitivePatterns) {
$value = [regex]::Replace($value, $item.Pattern, $item.Replacement)
}
$value
}
function Add-ReportLine {
param(
[AllowEmptyString()]
[string]$Line = ''
)
[void]$script:reportLines.Add((Protect-DiagnosticText -Text $Line))
}
function Add-ReportSection {
param(
[Parameter(Mandatory = $true)]
[string]$Title
)
if ($script:reportLines.Count -gt 0) {
Add-ReportLine
}
Add-ReportLine ("== {0} ==" -f $Title)
}
function Add-CommandOutput {
param(
[string[]]$Lines
)
foreach ($line in $Lines) {
Add-ReportLine ([string]$line)
}
}
function Invoke-WebRequestCompat {
param(
[Parameter(Mandatory = $true)]
[string]$Uri
)
$params = @{
Uri = $Uri
ErrorAction = 'Stop'
}
if ($PSVersionTable.PSVersion.Major -lt 6) {
$params.UseBasicParsing = $true
}
Invoke-WebRequest @params
}
function Invoke-WebClientStep {
param(
[Parameter(Mandatory = $true)]
[string]$Title,
[Parameter(Mandatory = $true)]
[string]$Uri
)
Invoke-PowerShellStep -Title $Title -Action {
$wc = New-Object System.Net.WebClient
$stream = $null
try {
$stream = $wc.OpenRead($Uri)
$buffer = New-Object byte[] 1
[void]$stream.Read($buffer, 0, 1)
$lines = New-Object 'System.Collections.Generic.List[string]'
$lines.Add('WEBCLIENT_OK') | Out-Null
$lines.Add(("Url: {0}" -f $Uri)) | Out-Null
if ($wc.ResponseHeaders) {
foreach ($headerName in $wc.ResponseHeaders.AllKeys) {
$lines.Add(("{0}: {1}" -f $headerName, $wc.ResponseHeaders[$headerName])) | Out-Null
}
}
$lines
}
finally {
if ($stream) {
$stream.Dispose()
}
$wc.Dispose()
}
}
}
function Copy-TextToClipboard {
param(
[Parameter(Mandatory = $true)]
[string]$Text
)
try {
if (Get-Command Set-Clipboard -ErrorAction SilentlyContinue) {
Set-Clipboard -Value $Text -ErrorAction Stop
return $true
}
if (Get-Command clip.exe -ErrorAction SilentlyContinue) {
$Text | clip.exe
return ($LASTEXITCODE -eq 0)
}
}
catch {
return $false
}
return $false
}
function Get-DiagnosticArchitecture {
$arch = $env:PROCESSOR_ARCHITEW6432
if ([string]::IsNullOrWhiteSpace($arch)) {
$arch = $env:PROCESSOR_ARCHITECTURE
}
switch -Regex ($arch) {
'ARM64' { return 'arm64' }
'64' { return 'x64' }
default { return 'x86' }
}
}
if (-not [string]::IsNullOrWhiteSpace($env:COMPUTERNAME)) {
Add-SensitivePattern -Pattern ([regex]::Escape($env:COMPUTERNAME)) -Replacement '[redacted-host]'
}
if (-not [string]::IsNullOrWhiteSpace($env:USERNAME)) {
Add-SensitivePattern -Pattern ([regex]::Escape($env:USERNAME)) -Replacement '[redacted-user]'
}
if (-not [string]::IsNullOrWhiteSpace($env:USERPROFILE)) {
Add-SensitivePattern -Pattern ([regex]::Escape($env:USERPROFILE)) -Replacement '[redacted-profile]'
}
Add-SensitivePattern -Pattern '(?<![\d.])(?:\d{1,3}\.){3}\d{1,3}(?![\d.])' -Replacement '[redacted-ipv4]'
Add-SensitivePattern -Pattern '(?i)(?<![0-9a-f:])((?:[0-9a-f]{1,4}:){7}[0-9a-f]{1,4}|(?:[0-9a-f]{1,4}:){1,7}:|(?:[0-9a-f]{1,4}:){1,6}:[0-9a-f]{1,4}|(?:[0-9a-f]{1,4}:){1,5}(?::[0-9a-f]{1,4}){1,2}|(?:[0-9a-f]{1,4}:){1,4}(?::[0-9a-f]{1,4}){1,3}|(?:[0-9a-f]{1,4}:){1,3}(?::[0-9a-f]{1,4}){1,4}|(?:[0-9a-f]{1,4}:){1,2}(?::[0-9a-f]{1,4}){1,5}|[0-9a-f]{1,4}:(?:(?::[0-9a-f]{1,4}){1,6})|:(?:(?::[0-9a-f]{1,4}){1,7}|:))(?![0-9a-f:])' -Replacement '[redacted-ipv6]'
function Format-ExceptionDetails {
param(
[Parameter(Mandatory = $true)]
[System.Exception]$Exception
)
$details = New-Object 'System.Collections.Generic.List[string]'
$current = $Exception
while ($null -ne $current) {
[void]$details.Add($current.Message)
$current = $current.InnerException
}
$details
}
function Invoke-CurlStep {
param(
[Parameter(Mandatory = $true)]
[string]$Title,
[Parameter(Mandatory = $true)]
[string[]]$Arguments
)
Add-ReportSection -Title $Title
if (-not (Get-Command curl.exe -ErrorAction SilentlyContinue)) {
Add-ReportLine 'curl.exe not found'
return
}
try {
$output = & curl.exe '-sS' @Arguments 2>&1
Add-CommandOutput -Lines ($output | ForEach-Object { [string]$_ })
Add-ReportLine ("ExitCode: {0}" -f $LASTEXITCODE)
}
catch {
Add-CommandOutput -Lines (Format-ExceptionDetails -Exception $_.Exception)
}
}
function Invoke-PowerShellStep {
param(
[Parameter(Mandatory = $true)]
[string]$Title,
[Parameter(Mandatory = $true)]
[scriptblock]$Action
)
Add-ReportSection -Title $Title
try {
$result = & $Action
if ($null -eq $result) {
Add-ReportLine
return
}
if ($result -is [System.Array]) {
Add-CommandOutput -Lines ($result | ForEach-Object { [string]$_ })
return
}
Add-ReportLine ([string]$result)
}
catch {
Add-CommandOutput -Lines (Format-ExceptionDetails -Exception $_.Exception)
}
}
$architecture = Get-DiagnosticArchitecture
$latestFull = $defaultLatestFull
$bootstrapResults = New-Object 'System.Collections.Generic.List[object]'
foreach ($source in @(
[PSCustomObject]@{ Name = 'raw'; Url = $rawScriptUrl },
[PSCustomObject]@{ Name = 'mirror'; Url = $mirrorScriptUrl }
)) {
try {
$response = Invoke-WebRequestCompat -Uri $source.Url
$content = [string]$response.Content
if ($latestFull -eq $defaultLatestFull) {
$match = [regex]::Match($content, '\[string\]\$latest_full\s*=\s*"([^"]+)"')
if ($match.Success) {
$latestFull = $match.Groups[1].Value
}
}
$bootstrapResults.Add([PSCustomObject]@{
Name = $source.Name
Url = $source.Url
Success = $true
StatusCode = [int]$response.StatusCode
Length = $content.Length
}) | Out-Null
}
catch {
$bootstrapResults.Add([PSCustomObject]@{
Name = $source.Name
Url = $source.Url
Success = $false
StatusCode = $null
Length = $null
Error = $_.Exception.Message
}) | Out-Null
}
}
$tempUrl = if ($architecture -eq 'x64') {
'https://{0}/temporary-download/spotify_installer-{1}-x64.exe' -f $downloadHost, $latestFull
}
else {
$null
}
$directUrl = 'https://{0}/download/spotify_installer-{1}-{2}.exe' -f $downloadHost, $stableFull, $architecture
Add-ReportSection -Title 'Environment'
Add-ReportLine ("Date: {0}" -f (Get-Date).ToString('yyyy-MM-dd HH:mm:ss zzz'))
Add-ReportLine ("PowerShell: {0}" -f $PSVersionTable.PSVersion)
Add-ReportLine ("Architecture: {0}" -f $architecture)
Add-ReportLine ("LatestFull: {0}" -f $latestFull)
Add-ReportLine ("StableFull: {0}" -f $stableFull)
Add-ReportLine ("TempUrl: {0}" -f $(if ($tempUrl) { $tempUrl } else { 'skipped for non-x64 system' }))
Add-ReportLine ("DirectUrl: {0}" -f $directUrl)
Add-ReportSection -Title 'Bootstrap check'
foreach ($item in $bootstrapResults) {
Add-ReportLine ("Source: {0}" -f $item.Name)
Add-ReportLine ("Url: {0}" -f $item.Url)
Add-ReportLine ("Success: {0}" -f $item.Success)
if ($item.Success) {
Add-ReportLine ("StatusCode: {0}" -f $item.StatusCode)
Add-ReportLine ("ContentLength: {0}" -f $item.Length)
}
else {
Add-ReportLine ("Error: {0}" -f $item.Error)
}
Add-ReportLine
}
Invoke-CurlStep -Title 'curl version' -Arguments @('-V')
Invoke-PowerShellStep -Title 'DNS' -Action {
Resolve-DnsName $downloadHost | Format-Table -AutoSize | Out-String -Width 4096
}
if ($tempUrl) {
Invoke-CurlStep -Title 'HEAD temp' -Arguments @('-I', '-L', '-k', '--ssl-no-revoke', $tempUrl)
Invoke-CurlStep -Title '1MB temp' -Arguments @('-L', '-k', '--ssl-no-revoke', '--fail-with-body', '--connect-timeout', '15', '-r', '0-1048575', '-o', 'NUL', '-D', '-', '-w', "`nHTTP_STATUS:%{http_code}`n", $tempUrl)
}
else {
Add-ReportSection -Title 'HEAD temp'
Add-ReportLine 'Skipped because temporary route is only used for x64 latest build'
Add-ReportSection -Title '1MB temp'
Add-ReportLine 'Skipped because temporary route is only used for x64 latest build'
}
Invoke-CurlStep -Title 'HEAD direct stable' -Arguments @('-I', '-L', '-k', '--ssl-no-revoke', $directUrl)
Invoke-CurlStep -Title '1MB direct stable' -Arguments @('-L', '-k', '--ssl-no-revoke', '--fail-with-body', '--connect-timeout', '15', '-r', '0-1048575', '-o', 'NUL', '-D', '-', '-w', "`nHTTP_STATUS:%{http_code}`n", $directUrl)
if ($tempUrl) {
Invoke-WebClientStep -Title 'WebClient temp' -Uri $tempUrl
}
else {
Add-ReportSection -Title 'WebClient temp'
Add-ReportLine 'Skipped because temporary route is only used for x64 latest build'
}
Invoke-WebClientStep -Title 'WebClient direct stable' -Uri $directUrl
$finalOutputLines = New-Object 'System.Collections.Generic.List[string]'
$finalOutputLines.Add('----- BEGIN DIAGNOSTICS -----') | Out-Null
foreach ($line in $reportLines) {
$finalOutputLines.Add($line) | Out-Null
}
$finalOutputLines.Add('----- END DIAGNOSTICS -----') | Out-Null
$finalOutputText = [string]::Join([Environment]::NewLine, $finalOutputLines)
$clipboardCopied = Copy-TextToClipboard -Text $finalOutputText
Write-Host
Write-Host '----- BEGIN DIAGNOSTICS -----' -ForegroundColor Cyan
foreach ($line in $reportLines) {
Write-Output $line
}
Write-Host '----- END DIAGNOSTICS -----' -ForegroundColor Cyan
if ($clipboardCopied) {
Write-Host
Write-Host 'Diagnostics copied to clipboard' -ForegroundColor Green
}
else {
Write-Host
Write-Host 'Clipboard copy failed, copy the text above manually' -ForegroundColor Yellow
}
+2 -2
View File
@@ -1,7 +1,7 @@
@echo off
:: Line for changing spotx parameters, each parameter should be separated by a space
set param=-confirm_uninstall_ms_spoti -confirm_spoti_recomended_over -podcasts_off -block_update_on -start_spoti -new_theme -adsections_off -lyrics_stat spotify
set param=-confirm_uninstall_ms_spoti -confirm_spoti_recomended_over -podcasts_off -block_update_on -start_spoti -new_theme -adsections_off -lyrics_stat spotify -no_pause
set url='https://raw.githubusercontent.com/SpotX-Official/SpotX/refs/heads/main/run.ps1'
set url2='https://spotx-official.github.io/SpotX/run.ps1'
@@ -11,4 +11,4 @@ set tls=[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]:
-Command %tls% $p='%param%'; """ & { $(try { iwr -useb %url% } catch { $p+= ' -m'; iwr -useb %url2% })} $p """" | iex
pause
exit /b
exit /b
+2 -2
View File
@@ -1,7 +1,7 @@
@echo off
:: Line for changing spotx parameters, each parameter should be separated by a space
set param=-premium -new_theme
set param=-premium -new_theme -no_pause
set url='https://raw.githubusercontent.com/SpotX-Official/SpotX/refs/heads/main/run.ps1'
set url2='https://spotx-official.github.io/SpotX/run.ps1'
@@ -11,4 +11,4 @@ set tls=[Net.ServicePointManager]::SecurityProtocol = [Net.ServicePointManager]:
-Command %tls% $p='%param%'; """ & { $(try { iwr -useb %url% } catch { $p+= ' -m'; iwr -useb %url2% })} $p """" | iex
pause
exit /b
exit /b
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Аўтаматычнае выдаленне Spotify MS..."
MsSpoti4 = "Выдаленне Spotify MS..."
Prem = "Мадыфікацыя для прэміум-акаўнта..."
OldV = "Знойдзена састарэлая версія Spotify"
OldV2 = "Ваша версія Spotify ({0}) састарэла, бягучая апошняя версія — {1}"
OldV3 = "Хочаце абнавіць? [Y/N]"
AutoUpd = "Аўтаматычнае абнаўленне да рэкамендаванай версіі"
DelOrOver = "Выдаліць бягучую версію ({0}) або ўсталяваць паверх яе? Y [Выдаліць] / N [Усталяваць паверх]"
DelOld = "Выдаленне старой версіі Spotify..."
NewV = "Знойдзена непадтрымоўваная версія Spotify"
DelSpotify = "Выдаленне Spotify..."
NewV2 = "Ваша версія Spotify ({0}) не была пратэставана. Стабільная версія для SpotX — {1}"
NewV3 = "Працягнуць з {0} (могуць узнікнуць памылкі)? [Y/N]"
Recom = "Усталяваць апошнюю версію {0}? [Y/N]"
DelNew = "Выдаленне неправеранай версіі Spotify..."
DownSpoti = "Спампоўка і ўсталёўка Spotify"
DownSpoti2 = "Калі ласка, пачакайце..."
PodcatsOff = "Падкасты выкл"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "স্বয়ংক্রিয়ভাবে স্পটিফাই এর মাইক্রোসফট স্টোর সংস্করণ আনইন্সটল করা হচ্ছে..."
MsSpoti4 = "স্পটিফাই এর মাইক্রোসফট স্টোর সংস্করণ আনইন্সটল করা হচ্ছে..."
Prem = "প্রিমিয়াম একাউন্ট এর জন্য পরিবর্তন..."
OldV = "স্পটিফাই এর একটি অসমর্থিত সংস্করণ পাওয়া গিয়েছে"
OldV2 = "আপনার স্পটিফাই এর {0} সংস্করণটি অসমর্থিত, আপনাকে {1} সংস্করণে হালনাগাদের জন্য পরামর্শ দেয়া হলো"
OldV3 = "হালনাগাদ করতে চান ? [Y/N]"
AutoUpd = "সুপারিশকৃত সংস্করণে স্বয়ংক্রিয় হালনাগাদকরণ"
DelOrOver = "আপনি কি বর্তমানে ইনস্টল থাকা {0} সংস্করণটি আনইনস্টল করতে চান নাকি আগেরটির সাথেই ইনস্টল করবেন? Y [আনইন্সটল করুন] / N [আগেরটির সাথেই ইনস্টল করুন]"
DelOld = "পুরাতন স্পটিফাই আনইন্সটল করা হচ্ছে..."
NewV = "স্পটিফাই এর একটি অসমর্থিত সংস্করণ পাওয়া গিয়েছে"
DelSpotify = "Spotify আনইন্সটল করা হচ্ছে..."
NewV2 = "আপনার স্পটিফাই এর {0} সংস্করণটি এখনো পরীক্ষা করা হয়নি, বর্তমানে এটি স্থায়ী {1} সংস্করণ"
NewV3 = "আপনি কি {0} সংস্করণের সাথে চালিয়ে যেতে চান (এটিতে সমস্যা থাকতে পারে) ? [Y/N]"
Recom = "আপনি কি সুপারিশকৃত {0} সংস্করণটি ইনস্টল করতে চান ? [Y/N]"
DelNew = "অপরীক্ষিত স্পটিফাই আনইন্সটল করা হচ্ছে..."
DownSpoti = "স্পটিফাই ডাউনলোড এবং ইনস্টল করা হচ্ছে"
DownSpoti2 = "দয়া করে অপেক্ষা করুন..."
PodcatsOff = "পডকাস্ট বন্ধ রাখুন"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Automaticky odinstalovávám Spotify z Microsoft Store..."
MsSpoti4 = "Odinštalovávám Spotify z Microsoft Store..."
Prem = "Úprava kvůli prémiovému účtu..."
OldV = "Nalezena stará verze Spotify"
OldV2 = "Vaše Spotify {0} verze je stará, doporučuje se aktualizovat na verzi {1}"
OldV3 = "Chcete aktualizovat? [Y/N]"
AutoUpd = "Automatická aktualizace na doporučenou verzi"
DelOrOver = "Chcete odinstalovat současnou verzi {0} nebo nainstalovat novější na současnou (zůstanou některé soubory)? Y [Odinštalovat] / N [Nainstalovat novější na současnou]"
DelOld = "Odinštalovávám staré Spotify..."
NewV = "Byla nalezena nepodporovaná verze Spotify"
DelSpotify = "Odinštalovávám Spotify..."
NewV2 = "Vaše Spotify {0} verze zatím nebyla testována, stabilní je nyní {1} verze"
NewV3 = "Chcete pokračovat s {0} verzí (mohou nastat chyby)? [Y/N]"
Recom = "Chcete nainstalovat doporučenou {0} verzi? [Y/N]"
DelNew = "Odinštalovávám netestovanou verzi Spotify..."
DownSpoti = "Stahuji a instaluji Spotify"
DownSpoti2 = "Prosím čekejte..."
PodcatsOff = "Vypněte podcasty"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Deinstalliere die MS Version von Spotify automatisch..."
MsSpoti4 = "Deinstalliere die MS Version von Spotify..."
Prem = "Modifikation für Premium Accounts..."
OldV = "Veraltete Version von Spotify gefunden"
OldV2 = "Ihre Spotify {0} Version ist veraltet, es wird empfohlen, Spotify auf {1} zu aktualisieren"
OldV3 = "Möchten Sie Spotify aktualisieren? [Y/N]"
AutoUpd = "Automatisches Aktualisieren zur empfohlenen Version"
DelOrOver = "Möchten Sie die bestehenden Version von Spotify {0} deinstallieren oder möchten Sie sie überschreiben? Y [Deinstallieren] / N [Überschreiben]"
DelOld = "Deinstalliere das alte Spotify..."
NewV = "Nicht unterstützte Version von Spotify gefunden"
DelSpotify = "Deinstalliere Spotify..."
NewV2 = "Ihre Spotify {0} Version wurde noch nicht getestet, im Moment ist {1} die stabile Version"
NewV3 = "Möchten Sie mit der {0} Version fortfahren? (Fehler können auftreten) [Y/N]"
Recom = "Möchten Sie die empfohlene Version von Spotify installieren? [Y/N]"
DelNew = "Deinstalliere eine ungetestete Version von Spotify..."
DownSpoti = "Installiere Spotify"
DownSpoti2 = "Bitte warten..."
PodcatsOff = "Podcasts Aus"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Αυτόματη απεγκατάσταση Spotify MS..."
MsSpoti4 = "Απεγκατάσταση Spotify MS..."
Prem = "Τροποποίηση για premium λογαριασμό..."
OldV = "Βρέθηκε ξεπερασμένη έκδοση του Spotify"
OldV2 = "Η έκδοση Spotify {0} είναι ξεπερασμένη, συνιστάται η αναβάθμιση σε {1}"
OldV3 = "Θέλετε να ενημερώσετε; [Y/N]"
AutoUpd = "Αυτόματη αναβάθμιση στην προτεινόμενη έκδοση"
DelOrOver = "Θέλετε να απεγκαταστήσετε την τρέχουσα έκδοση του {0} η να αντικατασταθεί; Y [Απεγκατάσταση] / N [Αντικατάσταση]"
DelOld = "Απεγκατάσταση του παλιού Spotify..."
NewV = "Μη υποστηριζόμενη έκδοση του Spotify βρέθηκε"
DelSpotify = "Απεγκατάσταση Spotify..."
NewV2 = "Η έκδοσή σας στο Spotify {0} δεν έχει δοκιμαστεί ακόμα, αυτή τη στιγμή είναι σταθερή {1} έκδοση"
NewV3 = "Θέλετε να συνεχίσετε με την {0} έκδοση (πιθανά σφάλματα); [Y/N]"
Recom = "Θέλετε να εγκαταστήσετε την προτεινόμενη {0} έκδοση; [Y/N]"
DelNew = "Απεγκατάσταση μη δοκιμασμένου Spotify..."
DownSpoti = "Λήψη και εγκατάσταση Spotify"
DownSpoti2 = "Παρακαλώ περιμένετε..."
PodcatsOff = "Podcasts Απενεργοποιημένα"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Automatically uninstalling Spotify MS..."
MsSpoti4 = "Uninstalling Spotify MS..."
Prem = "Modification for premium account..."
OldV = "Found outdated version of Spotify"
OldV2 = "Your Spotify version ({0}) is outdated, the current latest version is — {1}"
OldV3 = "Want to update ? [Y/N]"
AutoUpd = "Automatic update to the recommended version"
DelOrOver = "Remove the current version ({0}) or install over it? Y [Remove] / N [Install Over]"
DelOld = "Uninstalling old Spotify..."
NewV = "Unsupported version of Spotify found"
DelSpotify = "Uninstalling Spotify..."
NewV2 = "Your Spotify version ({0}) has not been tested. The stable version for SpotX is {1}"
NewV3 = "Continue with {0} (errors may occur) ? [Y/N]"
Recom = "Install the latest version {0} ? [Y/N]"
DelNew = "Uninstalling an untested Spotify..."
DownSpoti = "Downloading and installing Spotify"
DownSpoti2 = "Please wait..."
PodcatsOff = "Off Podcasts"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Desinstalación automática de Spotify de Microsoft Store..."
MsSpoti4 = "Desinstalación de Spotify de Microsoft Store..."
Prem = "Modificación para la cuenta prémium..."
OldV = "Se ha encontrado una versión obsoleta de Spotify"
OldV2 = "Su versión de Spotify {0} está obsoleta, se recomienda actualizar a {1}"
OldV3 = "¿Quiere actualizar? [Y/N]"
AutoUpd = "Actualización automática a la versión recomendada"
DelOrOver = "¿Desea desinstalar la versión actual de {0} o instalar sobre ella? Y [Desinstalar] / N [Instalar encima]"
DelOld = "Desinstalando el antiguo Spotify..."
NewV = "Se ha encontrado una versión no compatible de Spotify"
DelSpotify = "Desinstalando Spotify..."
NewV2 = "Su versión de Spotify {0} aún no se ha probado; actualmente la versión estable es la {1}"
NewV3 = "¿Quieres continuar con la versión {0} (posibles errores)? [Y/N]"
Recom = "¿Desea instalar la versión recomendada {0}? [Y/N]"
DelNew = "Desinstalando un Spotify no probado..."
DownSpoti = "Descargando e instalando Spotify"
DownSpoti2 = "Espere un momento..."
PodcatsOff = "Pódcast desactivados"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "حذف خودکار اسپاتیفای MS"
MsSpoti4 = "حذف نصب اسپاتیفای MS"
Prem = "تغییر برای حساب پریمیوم"
OldV = "نسخه قدیمی اسپاتیفای پیدا شد"
OldV2 = "نسخه اسپاتیفای {0} شما قدیمی است، توصیه می شود به {1} ارتقا دهید"
OldV3 = "می خواهید به روز رسانی کنید؟ [Y/N]"
AutoUpd = "به روز رسانی خودکار به نسخه پیشنهادی"
DelOrOver = "آیا می خواهید نسخه فعلی {0} را حذف نصب کنید یا روی آن نصب کنید؟ Y [Uninstall] / N [Install Over]"
DelOld = "حذف نصب اسپاتیفای قدیمی"
NewV = "نسخه پشتیبانی نشده اسپاتیفای پیدا شد"
DelSpotify = "حذف نصب اسپاتیفای..."
NewV2 = "نسخه اسپاتیفای {0} شما هنوز آزمایش نشده است، در حال حاضر یک نسخه پایدار {1} است"
NewV3 = "آیا می خواهید با نسخه {0} ادامه دهید (خطا ممکن است رخ دهد)؟ [Y/N]"
Recom = "آیا می خواهید نسخه پیشنهادی {0} را نصب کنید؟ [Y/N]"
DelNew = "حذف نصب اسپاتیفای تست نشده..."
DownSpoti = "دانلود و نصب اسپاتیفای"
DownSpoti2 = "لطفا صبر کنید..."
PodcatsOff = "خاموش کردن پادکست"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Spotifyn Microsoft Store -version automaattinen poistaminen..."
MsSpoti4 = "Poistetaan Spotifyn Microsoft Store -versiota."
Prem = "Muunnos premium-tiliin..."
OldV = "Spotifysta löytyi vanhentunut versio"
OldV2 = "Spotify {0} -versiosi on vanhentunut, on suositeltavaa päivittää versioon {1}"
OldV3 = "Haluatko päivittää? [Y/N]"
AutoUpd = "Automaattinen päivitys suositeltuun versioon"
DelOrOver = "Haluatko poistaa nykyisen version {0} vai asentaa sen päälle? Y [Poista asennus] / N [Asenna edellisen päälle]"
DelOld = "Poistetaan vanhaa Spotify versiota..."
NewV = "Spotifyn ei-tuettu versio löytyi"
DelSpotify = "Poistetaan Spotifyta..."
NewV2 = "Spotify-versiotasi {0} ei ole vielä testattu, tällä hetkellä versio {1} on vakaa"
NewV3 = "Haluatko jatkaa versiolla {0} (bugit sekä virheet mahdollista)? [Y/N]"
Recom = "Haluatko asentaa suositellun {0} version? [Y/N]"
DelNew = "Poistetaan testaamattoman Spotify versiota..."
DownSpoti = "Ladataan ja asennetaan spotify:tä"
DownSpoti2 = "Odota hetki..."
PodcatsOff = "podcastit poissa päältä"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Awtomatikong i-uninstall ang Spotify na MS..."
MsSpoti4 = "Ina-uninstall ang Spotify MS..."
Prem = "Pagbabago para sa premium account..."
OldV = "Natagpuan ang lumang bersyon ng Spotify"
OldV2 = "Ang iyong bersyon ng Spotify na {0} ay luma na, ito ay inirerekomenda na i-upgrade sa {1}"
OldV3 = "Gusto mo ba mag-update? [Y/N]"
AutoUpd = "Awtomatikong i-update sa inirerekumendang bersyon"
DelOrOver = "Gusto mo bang i-uninstall ang kasalukuyang bersyon ng {0} o mag-install ng panibagong bersyon? Y [I-uninstall] / N [Mag-install ng Panibagong Bersyon]"
DelOld = "Tinatanggal ang lumang Spotify..."
NewV = "Natagpuan ang hindi suportadong bersyon ng Spotify"
DelSpotify = "Ina-uninstall ang Spotify..."
NewV2 = "Ang iyong bersyon ng Spotify {0} ay hindi pa nasusubukan, kasalukuyang ito ay nasa stable na bersyon na {1}"
NewV3 = "Gusto mo bang magpatuloy sa {0} bersyon (mayroong mga error)? [Y/N]"
Recom = "Gusto mo bang mag-install ng inirerekumendang {0} na bersyon? [Y/N]"
DelNew = "Ina-uninstall ang hindi pa nasusubukan na Spotify..."
DownSpoti = "Nagda-download at nag-i-install ng Spotify"
DownSpoti2 = "Mangyaring maghintay..."
PodcatsOff = "I-off ang mga Podcast"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Désinstallation automatique de Spotify MS..."
MsSpoti4 = "Désinstallation de Spotify MS..."
Prem = "Modification pour compte premium..."
OldV = "Ancienne version de Spotify trouvée"
OldV2 = "Votre version Spotify {0} est obsolète, il est recommandé de mettre à jour vers la {1}"
OldV3 = "Voulez-vous faire la mise à jour ? [Y/N]"
AutoUpd = "Mise à jour automatique vers la version recommandée"
DelOrOver = "Voulez-vous désinstaller la version actuelle {0} ou installer par dessus ? Y [Désinstaller] / N [Installer par dessus]"
DelOld = "Désinstallation de l'ancienne version de Spotify..."
NewV = "Version non supportée de Spotify trouvée"
DelSpotify = "Désinstallation de Spotify..."
NewV2 = "Votre version {0} de Spotify n'a pas encore été testée, actuellement {1} est une version stable"
NewV3 = "Voulez-vous continuer avec la version {0} (erreurs possibles) ? [Y/N]"
Recom = "Voulez-vous installer la version {0} recommandée ? [Y/N]"
DelNew = "Désinstallation d'une version de Spotify non testée..."
DownSpoti = "Téléchargement et installation de Spotify"
DownSpoti2 = "Veuillez patienter..."
PodcatsOff = "Podcasts désactivés"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Spotify MS अपने आप अनइंस्टॉल हो रहा है..."
MsSpoti4 = "Spotify MS अनइंस्टॉल किया जा रहा है..."
Prem = "प्रीमियम अकाउंट के लिए मॉडिफिकेशन किया जा रहा है..."
OldV = "Spotify का पुराना वर्जन मिला"
OldV2 = "आपका Spotify वर्जन ({0}) पुराना है। लेटेस्ट वर्जन {1} है"
OldV3 = "क्या आप अपडेट करना चाहते हैं? [Y/N]"
AutoUpd = "सुझाए गए वर्जन पर ऑटोमेटिक अपडेट"
DelOrOver = "मौजूदा वर्जन ({0}) को हटाएँ या इसी पर इंस्टॉल करें? Y [हटाएँ] / N [इसी पर इंस्टॉल करें]"
DelOld = "पुराना Spotify अनइंस्टॉल किया जा रहा है..."
NewV = "Spotify का अनसपोर्टेड वर्जन मिला"
DelSpotify = "Spotify अनइंस्टॉल किया जा रहा है..."
NewV2 = "आपके Spotify वर्जन ({0}) को टेस्ट नहीं किया गया है। SpotX के लिए स्टेबल वर्जन {1} है"
NewV3 = "क्या आप वर्जन {0} के साथ जारी रखना चाहते हैं (इसमें समस्याएं आ सकती हैं)? [Y/N]"
Recom = "क्या आप लेटेस्ट वर्जन {0} इंस्टॉल करना चाहते हैं? [Y/N]"
DelNew = "टेस्ट न किए गए Spotify को अनइंस्टॉल किया जा रहा है..."
DownSpoti = "Spotify डाउनलोड और इंस्टॉल किया जा रहा है"
DownSpoti2 = "कृपया प्रतीक्षा करें..."
PodcatsOff = "पॉडकास्ट बंद"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "A Spotify MS automatikus eltávolítása..."
MsSpoti4 = "Spotify MS eltávolítása..."
Prem = "Módosítás a prémium fiókhoz..."
OldV = "A Spotify elavult verziója van telepítve"
OldV2 = "A Spotify {0} verziója elavult, ajánlott frissíteni a {1} verzióra."
OldV3 = "Szeretné frissíteni ? [Y/N]"
AutoUpd = "Automatikus frissítés a javasolt verzióra"
DelOrOver = "A {0} jelenlegi verzióját szeretné eltávolítani vagy telepíteni rá? Y [Eltávolítás] / N [Felül telepítés]"
DelOld = "A régi Spotify eltávolítása..."
NewV = "A Spotify nem támogatott verziója van telepítve"
DelSpotify = "Spotify eltávolítása..."
NewV2 = "A Spotify {0} verzióját még nem teszteltük, jelenlegi stabil verzió: {1}. "
NewV3 = "Folytatni szeretné a {0} verzióval (hibák léphetnek fel) ? [Y/N]"
Recom = "Szeretné telepíteni a {0} ajánlott verziót? [Y/N]"
DelNew = "Nem tesztelt Spotify eltávolítása..."
DownSpoti = "A Spotify letöltése és telepítése"
DownSpoti2 = "Kérem várjon..."
PodcatsOff = "Podcastok kikapcsolása"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Menghapus Spotify MS secara otomatis..."
MsSpoti4 = "Menghapus Spotify MS..."
Prem = "Modifikasi untuk akun premium..."
OldV = "Versi lama Spotify ditemukan"
OldV2 = "Versi Spotify {0} Anda sudah usang, disarankan untuk upgrade ke versi {1}"
OldV3 = "Ingin mengupdate? [Y/N]"
AutoUpd = "Pembaruan otomatis ke versi yang direkomendasikan"
DelOrOver = "Apakah Anda ingin menghapus versi {0} saat ini atau menimpanya? Y [Uninstall] / N [Timpa]"
DelOld = "Menghapus Spotify lama..."
NewV = "Ditemukan versi Spotify yang tidak didukung"
DelSpotify = "Menghapus Spotify..."
NewV2 = "Versi Spotify {0} Anda belum diuji, saat ini adalah versi {1} yang stabil"
NewV3 = "Ingin melanjutkan dengan versi {0} (mungkin ada kesalahan)? [Y/N]"
Recom = "Ingin menginstal versi {0} yang direkomendasikan? [Y/N]"
DelNew = "Menghapus Spotify yang belum diuji..."
DownSpoti = "Mengunduh dan menginstal Spotify"
DownSpoti2 = "Tunggu sebentar..."
PodcatsOff = "Podcast Nonaktif"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Disinstallazione automatica di Spotify MS..."
MsSpoti4 = "Disinstallazione di Spotify MS..."
Prem = "Modifica per account premium..."
OldV = "Trovata vecchia versione di Spotify"
OldV2 = "La tua versione di Spotify {0} è vecchia, la versione attuale più recente è — {1}"
OldV3 = "Vorresti aggiornare ? [Y/N]"
AutoUpd = "Aggiornamento automatico alla versione consigliata"
DelOrOver = "Rimuovere la versione attuale {0} o sovrascriverla? Y [Rimuovi] / N [Sovrascrivi]"
DelOld = "Disinstallando vecchia versione di Spotify..."
NewV = "Trovata versione di Spotify non supportata"
DelSpotify = "Disinstallando Spotify..."
NewV2 = "La tua versione {0} di Spotify non è stata testata. La versione stabile per SpotX è {1}"
NewV3 = "Continuare con {0} (possibili errori) ? [Y/N]"
Recom = "Installare l'ultima versione {0} ? [Y/N]"
DelNew = "Disinstallando una versione non testata di Spotify..."
DownSpoti = "Scaricando ed installando Spotify"
DownSpoti2 = "Attendere..."
PodcatsOff = "Podcasts OFF"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Spotify MS 版を自動でアンインストール中..."
MsSpoti4 = "Spotify MS 版をアンインストール中..."
Prem = "Premium アカウント用の修正..."
OldV = "古い Spotify を使用中です"
OldV2 = "お使いの Spotify のバージョン {0} は古いため以下へのアップグレードを推奨 {1}"
OldV3 = "更新しますか ? [Y/N]"
AutoUpd = "推奨するバージョンに自動更新"
DelOrOver = "既存のバージョン {0} をアンインストール、または上書しますか ? Y [アンインストール] / N [上書き]"
DelOld = "古い Spotify をアンインストール中..."
NewV = "未対応の Spotify のバージョンです"
DelSpotify = "Spotify をアンインストール中..."
NewV2 = "お使いの Spotify のバージョン {0} はまだ検証しておらず現在の安定バージョンは {1}"
NewV3 = "バージョン {0} のままぞこうしますか (エラーの可能性) ? [Y/N]"
Recom = "推奨するバージョン {0} をインストールしますか ? [Y/N]"
DelNew = "未検証版の Spotify をアンインストール..."
DownSpoti = "Spotify をダウンロードしインストール"
DownSpoti2 = "お待ちください..."
PodcatsOff = "ポッドキャスト 有効"
+2 -6
View File
@@ -11,22 +11,18 @@
Download4 = "შეამოწმეთ თქვენი კავშირი ქსელთან და თავიდან სცადე ინსტალაცია"
Download5 = "Spotify იწერება"
StopScript = "სკრიპტი ჩერდება"
MsSpoti = "Microsoft Store-ის ვერსია მოიძებნა რომელიც არ არის მხარდაჯერილი"
MsSpoti = "Microsoft Store-ის ვერსია მოიძებნა რომელიც არ არის მხარდაჯერილი"
MsSpoti2 = "წავშალოთ Spotify Microsoft Store-ის ვერსია [Y/N]"
MsSpoti3 = "ავტუმატურად იშლება Spotify MS..."
MsSpoti4 = "იშლება Spotify MS..."
Prem = "მოდიფიკაცია პრემიუმ აკკოუნტის..."
OldV = "მოიძებნა მოძველებული Spotify-ს ვერსია"
OldV2 = "თქვენი Spotify-ს {0} ვერსია არის მოძველებული, რეკომენდურია მისი აპგრეიდობა ამ ვერსიაზე {1}"
OldV3 = "გინდა განაახლოთ ? [Y/N]"
AutoUpd = "აუტომატიკური აპდაიტი რეკომენდებულ ვერსიაზე"
DelOrOver = "გინდა წაშალო ეხლანდელი ვერსია: {0} თუ თავიდან ჩაწერა? Y [წაშლა] / N [თავიდან ჩაწერა]"
DelOld = "ძველი Spotify იშლება..."
NewV = "არა მხარდაჯერილი Spotify-ს ვერსია არის მოწებნილი"
DelSpotify = "Spotify იშლება..."
NewV2 = "თქვენი Spotify-ს {0} ვერსია ჯერ არ არის დატესტილი, ამჟამად არის სტაბილური {1} ვერსია"
NewV3 = "გინდათ რომ გააგრძელოთ {0} ვერსიაზე (შეცდომები შესაძლებელია) ? [Y/N]"
Recom = "გინდათ რო ჩაიწეროთ რეკომენდირებული {0} ვერსია ? [Y/N]"
DelNew = "იშლება არა ტესტირებულ Spotify..."
DownSpoti = "ვტვირთავთ და ვიწერთ Spotify-ს"
DownSpoti2 = "გთხოვთ დაიცადოთ..."
PodcatsOff = "პოდკასტები გათიშული"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Spotify Microsoft Store 버전을 자동으로 제거하는 중..."
MsSpoti4 = "Spotify Microsoft Store 버전을 제거하는 중..."
Prem = "프리미엄 계정을 위한 모드..."
OldV = "Spotify 구버전을 감지했습니다"
OldV2 = "Spotify {0} 버전은 오래되었습니다, {1} 버전으로 업데이트하시는 것을 추천합니다"
OldV3 = "업데이트를 진행할까요? [Y/N]"
AutoUpd = "권장 버전으로 자동 업데이트할까요?"
DelOrOver = "설치된 {0} 버전을 제거할까요? 아니면 덮어쓰고 설치할까요? Y [제거] / N [덮어쓰고 설치]"
DelOld = "구버전의 Spotify를 제거하는 중..."
NewV = "지원되지 않는 버전의 Spotify가 감지되었습니다"
DelSpotify = "Spotify를 제거하는 중..."
NewV2 = "Spotify {0} 버전은 아직 테스트되지 않았습니다, 현재 최신 안정 버전은 {1} 입니다"
NewV3 = "{0} 버전으로 진행할까요? (오류가 발생할 수 있음) [Y/N]"
Recom = "추천하는 {0} 버전을 설치할까요? [Y/N]"
DelNew = "테스트되지 않은 Spotify를 제거하는 중..."
DownSpoti = "Spotify를 다운로드하고 설치하는 중"
DownSpoti2 = "잠시만 기다려 주세요..."
PodcatsOff = "팟캐스트 끄기"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Automātiski izdzēš Spotify MS..."
MsSpoti4 = "Izdzēš Spotify MS..."
Prem = "Modifikācija premium kontam..."
OldV = "Spotify vecā versija bija konstatēta."
OldV2 = "Tava Spotify {0} versija ir novecojusi, bet ir ieteicams atjaunot uz {1} versiju"
OldV3 = "Vēlies atjaunot? [Y/N]"
AutoUpd = "Automātiski atjauno uz ieteicamo versiju"
DelOrOver = "Vai vēlies izdzēst līdzšinejo {0} versiju vai instalēt ieteicamo versiju virs vecās? Y [Izdzēst] / N [Instalēt Virs]"
DelOld = "Izdzēš veco Spotify..."
NewV = "Atrasta neatbalstītā Spotify versija"
DelSpotify = "Izdzēšam Spotify..."
NewV2 = "Tava Spotify {0} versija nav tikusi testēta, šobrīd stabilākā ir {1} versija"
NewV3 = "Vai vēlies turpināt ar {0} versiju? (ir iespējamas kļūdas) [Y/N]"
Recom = "Vai vēlies instalēt ieteikto {0} versiju? [Y/N]"
DelNew = "Izdzēšam netestēto Spotify..."
DownSpoti = "Lejuplādējam un instalējam Spotify"
DownSpoti2 = "Lūdzu nedaudz uzgaidiet..."
PodcatsOff = "Raidieraksti ir izslēgti"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Automatyczne odinstalowywanie Spotify z MS..."
MsSpoti4 = "Odinstalowywanie Spotify MS..."
Prem = "Modyfikacja dla konta premium..."
OldV = "Znaleziono przestarzałą wersję Spotify"
OldV2 = "Twoja wersja Spotify {0} jest przestarzała, zalecana jest aktualizacja do wersji {1}"
OldV3 = "Czy chcesz ją pobrać? [Y/N]"
AutoUpd = "Automatyczna aktualizacja do zalecanej wersji"
DelOrOver = "Chcesz odinstalować aktualną wersję {0}, czy pobrać nową? Y [Odinstaluj] / N [Pobierz Nową]"
DelOld = "Odinstalowywanie nieaktualnej wersji Spotify..."
NewV = "Wykryto niewspieraną wersję Spotify"
DelSpotify = "Odinstalowywanie Spotify..."
NewV2 = "Twoja wersja {0} nie została jeszcze przetestowana, obecna jest to stabilna wersja {1} "
NewV3 = "Czy chcesz kontynuować z wersją {0} (możliwe błędy)? [Y/N]"
Recom = "Czy chcesz pobrać zalecaną wersję {0}? [Y/N]"
DelNew = "Odinstalowywanie nieprzetestowanej wersji Spotify..."
DownSpoti = "Pobieranie i instalowanie Spotify"
DownSpoti2 = "Proszę czekać..."
PodcatsOff = "Podcasty wyłączone"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Desinstalação automática do Spotify da MS..."
MsSpoti4 = "Desinstalando Spotify da MS..."
Prem = "Modificação para conta Premium..."
OldV = "Encontrada uma versão desatualizada do Spotify"
OldV2 = "A sua versão {0} do Spotify está desatualizada, é recomendado atualizar para {1}"
OldV3 = "Gostaria de atualizar? [Y/N]"
AutoUpd = "Atualização automática para a versão recomendada"
DelOrOver = "Gostaria de desinstalar a versão atual {0} ou substituir a instalação atual? Y [Desinstalar] / N [Substituir]"
DelOld = "Desinstalando a versão antiga do Spotify..."
NewV = "Encontrada uma versão não suportada do Spotify"
DelSpotify = "Desinstalando Spotify..."
NewV2 = "A sua versão do Spotify {0} não foi testada ainda, no momento, há uma versão estável {1}"
NewV3 = "Gostaria de continuar com a versão {0} (possíveis erros) ? [Y/N]"
Recom = "Gostaria de instalar a versão recomendada {0}? [Y/N]"
DelNew = "Desinstalando versão não testada do Spotify..."
DownSpoti = "Baixando e instalando o Spotify"
DownSpoti2 = "Aguarde..."
PodcatsOff = "Podcasts desativado"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Dezinstalare automată a Spotify MS..."
MsSpoti4 = "Se dezinstaleaza Spotify MS..."
Prem = "Modificare pentru contul premium..."
OldV = "Am găsit o versiune învechită a Spotify"
OldV2 = "Versiunea dvs. de Spotify {0} este învechită, se recomandă actualizarea la {1}"
OldV3 = "Doriți să faceți o actualizare ? [Y/N]"
AutoUpd = "Actualizare automată la versiunea recomandată"
DelOrOver = "Doriți să dezinstalați versiunea curentă de {0} sau să o instalați peste ea? Y [Dezinstalare] / N [Instalare peste]"
DelOld = "Dezinstalarea vechiului Spotify..."
NewV = "A fost găsită o versiune nesuportată de Spotify"
DelSpotify = "Se dezinstalează Spotify..."
NewV2 = "Versiunea dvs. de Spotify {0} nu a fost încă testată, în prezent este o versiune stabilă {1}"
NewV3 = "Doriți să continuați cu versiunea {0} (sunt posibile erori)? [Y/N]"
Recom = "Doriți să instalați versiunea recomandată {0}? [Y/N]"
DelNew = "Se dezinstalează Spotify-ul netestat..."
DownSpoti = "Se descarcă și instalează Spotify"
DownSpoti2 = "Vă rugăm să așteptați..."
PodcatsOff = "Podcasturi dezactivate"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Автоматическое удаление Spotify MS..."
MsSpoti4 = "Удаление Spotify MS..."
Prem = "Модификация для премиум аккаунта..."
OldV = "Найдена устаревшая версия Spotify"
OldV2 = "Ваша версия Spotify ({0}) устарела. Текущая актуальная версия — {1}"
OldV3 = "Обновить ? [Y/N]"
AutoUpd = "Автоматическое обновление до рекомендуемой версии"
DelOrOver = "Удалить текущую версию ({0}) или установить поверх? Y [Удалить] / N [Поверх]"
DelOld = "Удаление устаревшего Spotify..."
NewV = "Найдена неподдерживаемая версия Spotify"
DelSpotify = "Удаление Spotify..."
NewV2 = "Ваша версия Spotify ({0}) не тестировалась. Стабильная версия для SpotX — {1}"
NewV3 = "Продолжить с {0} (возможны ошибки) ? [Y/N]"
Recom = "Установить последнюю версию {0} ? [Y/N]"
DelNew = "Удаление неподдерживаемого Spotify..."
DownSpoti = "Загружаю и устанавливаю Spotify"
DownSpoti2 = "Пожалуйста подождите..."
PodcatsOff = "Подкасты отключены"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Automaticky odinštalovávam Spotify z Microsoft Store..."
MsSpoti4 = "Odinštalovávam Spotify z Microsoft Store..."
Prem = "Úprava kvôli prémiovému účtu..."
OldV = "Nájdená stará verzia Spotify"
OldV2 = "Tvoja Spotify {0} verzia je stará, je odporúčané aktualizovať na verziu {1}"
OldV3 = "Chcete aktualizovať ? [Y/N]"
AutoUpd = "Automatická aktualizácia na odporúčanú verziu"
DelOrOver = "Chcete odinštalovať terajšiu verziu {0} alebo inštalovať novšiu na terajšiu(ostanú niektoré súbory)? Y [Odinštaluj] / N [Inštaluj novšiu na terajšiu]"
DelOld = "Odinštalovávam staré Spotify..."
NewV = "Nepodporovaná verzia Spotify bola nájdená"
DelSpotify = "Odinštalovávam Spotify..."
NewV2 = "Tvoja Spotify {0} verzia zatiaľ nebola testovaná, teraz je stabilná {1} verzia"
NewV3 = "Chcete pokračovať s {0} verziou (môžu nastať chyby) ? [Y/N]"
Recom = "Chcete nainštalovať odporúčanú {0} verziu ? [Y/N]"
DelNew = "Odinštalovávam netestovanú verziu Spotify..."
DownSpoti = "Sťahujem a inštalujem Spotify"
DownSpoti2 = "Prosím čakajte..."
PodcatsOff = "Vypni podcasty"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Automatska deinstalacija Spotify MS..."
MsSpoti4 = "Deinstalacija Spotify MS..."
Prem = "Modifikacija za premijum nalog..."
OldV = "Pronađena je zastarela verzija Spotify-ja"
OldV2 = "Vaša verzija Spotify-ja {0} je zastarela, trenutno najnovija verzija je {1}"
OldV3 = "Želite li da ažurirate? [Y/N]"
AutoUpd = "Automatsko ažuriranje na preporučenu verziju"
DelOrOver = "Želite li da deinstalirate trenutnu verziju {0} ili da instalirate preko nje? Y [Deinstaliraj] / N [Preko]"
DelOld = "Deinstalacija starog Spotify-ja..."
NewV = "Pronađena je nepodržana verzija Spotify-ja"
DelSpotify = "Deinstalacija Spotify-ja..."
NewV2 = "Vaša verzija Spotify-ja {0} još nije testirana, trenutna stabilna verzija je {1}"
NewV3 = "Želite li da nastavite sa verzijom {0} (moguće su greške)? [Y/N]"
Recom = "Želite li da instalirate poslednju verziju {0}? [Y/N]"
DelNew = "Deinstalacija netestiranog Spotify-ja..."
DownSpoti = "Preuzimanje i instalacija Spotify-ja"
DownSpoti2 = "Molimo sačekajte..."
PodcatsOff = "Isključi podkaste"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Аутоматска деинсталација Spotify MS..."
MsSpoti4 = "Деинсталација Spotify MS..."
Prem = "Модификација за премијум налог..."
OldV = "Пронађена је застарела верзија Spotify-ја"
OldV2 = "Ваша верзија Spotify-ја {0} је застарела, тренутно најновија верзија је {1}"
OldV3 = "Желите ли да ажурирате? [Y/N]"
AutoUpd = "Аутоматско ажурирање на препоручену верзију"
DelOrOver = "Желите ли да деинсталирате тренутну верзију {0} или да инсталирате преко ње? Y [Деинсталирај] / N [Преко]"
DelOld = "Деинсталација старог Spotify-ја..."
NewV = "Пронађена је неподржана верзија Spotify-ја"
DelSpotify = "Деинсталација Spotify-ја..."
NewV2 = "Ваша верзија Spotify-ја {0} још није тестирана, тренутна стабилна верзија је {1}"
NewV3 = "Желите ли да наставите са верзијом {0} (могуће су грешке)? [Y/N]"
Recom = "Желите ли да инсталирате последњу верзију {0}? [Y/N]"
DelNew = "Деинсталација нетестираног Spotify-ја..."
DownSpoti = "Преузимање и инсталација Spotify-ја"
DownSpoti2 = "Молимо сачекајте..."
PodcatsOff = "Искључи подкасте"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Avinstallerar Spotify MS automatiskt..."
MsSpoti4 = "Avinstallerar Spotify MS..."
Prem = "Modifiering för premiumkonto..."
OldV = "Hittade en föråldrad version av Spotify"
OldV2 = "Din Spotify {0} version är föråldrad, det rekommenderas att uppgradera till {1}"
OldV3 = "Vill du uppdatera? [Y/N]"
AutoUpd = "Automatisk uppdatering till den rekommenderade versionen"
DelOrOver = "Vill du avinstallera den aktuella versionen av {0} eller installera över den? Y [Avinstallera] / N [Installera över]"
DelOld = "Avinstallerar gamla Spotify..."
NewV = "En version av Spotify som inte stöds hittades"
DelSpotify = "Avinstallerar Spotify..."
NewV2 = "Din Spotify {0} version har inte testats ännu, för närvarande är den en stabil {1} version"
NewV3 = "Vill du fortsätta med {0} version (fel möjliga)? [Y/N]"
Recom = "Vill du installera den rekommenderade versionen av {0}? [Y/N]"
DelNew = "Avinstallerar en oprövad Spotify..."
DownSpoti = "Ladda ner och installerar Spotify"
DownSpoti2 = "Vänta..."
PodcatsOff = "Podcasts av"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "MS Spotifyயை தானாக நிறுவல் நீக்குகிறது..."
MsSpoti4 = "MS Spotifyயை நிறுவல் நீக்குகிறது..."
Prem = "Premium கணக்கிற்கான மாற்றம்..."
OldV = "Spotifyயின் காலாவதியான பதிப்பு கண்டறியப்பட்டது"
OldV2 = "உங்கள் Spotify {0} பதிப்பு காலாவதியானது, {1}க்கு மேம்படுத்த பரிந்துரைக்கப்படுகிறது"
OldV3 = "புதுப்பிக்க வேண்டுமா? [Y/N]"
AutoUpd = "பரிந்துரைக்கப்பட்ட பதிப்பிற்கான தானியங்கி புதுப்பிப்பு"
DelOrOver = "{0}யின் தற்போதைய பதிப்பை நிறுவல்நீக்கம் செய்ய விரும்புகிறீர்களா அல்லது நீங்கள் அதன் மீதே நிறுவ விரும்புகிறீர்கள்? Y [Uninstall] / N [Install Over]"
DelOld = "பழைய Spotifyயை நிறுவல் நீக்குகிறது..."
NewV = "Spotifyயின் ஆதரிக்கப்படாத பதிப்பு கண்டறியப்பட்டது"
DelSpotify = "Spotifyயை நிறுவல் நீக்குகிறது..."
NewV2 = "உங்கள் Spotify {0} பதிப்பு இன்னும் சோதிக்கப்படவில்லை, தற்போது {1} பதிப்பு நிலையானது"
NewV3 = "{0} பதிப்பைத் தொடர விரும்புகிறீர்களா (பிழைகள் சாத்தியம்) ? [Y/N]"
Recom = "பரிந்துரைக்கப்பட்ட {0} பதிப்பை நிறுவ விரும்புகிறீர்களா ? [Y/N]"
DelNew = "சோதிக்கப்படாத Spotifyயை நிறுவல் நீக்குகிறது..."
DownSpoti = "Spotifyயைப் பதிவிறக்கி நிறுவுகிறது"
DownSpoti2 = "தயவுசெய்து காத்திருங்கள்..."
PodcatsOff = "Off Podcasts"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Spotify MS otomatik olarak kaldırlıyor..."
MsSpoti4 = "Spotify MS kaldırılıyor..."
Prem = "Premium hesap için modifikasyon ..."
OldV = "Spotify'ın eski bir sürümü bulundu"
OldV2 = "Spotify'ın {0} sürümü güncel değil, {1} sürümüne yükseltmeniz önerilir"
OldV3 = "Güncelleme yapılsın mı? [Y/N]"
AutoUpd = "Önerilen sürüme otomatik olarak güncelle"
DelOrOver = "Mevcut {0} sürümünü kaldırmak mı yoksa üzerine yüklemek mi istiyorsunuz? Y [Kaldır] / N [Üzerine Yükle]"
DelOld = "Eski Spotify kaldırılıyor..."
NewV = "Desteklenmeyen Spotify sürümü bulundu"
DelSpotify = "Spotify kaldırılıyor..."
NewV2 = "Spotify {0} sürümü henüz test edilmedi, şu anda kararlı olan {1} sürümüdür"
NewV3 = "{0} sürümü ile devam etmek istiyor musunuz (hatalar olabilir) ? [Y/N]"
Recom = "Önerilen {0} sürümünü yüklemek istiyor musunuz? [Y/N]"
DelNew = "Test edilmemiş Spotify kaldırılıyor..."
DownSpoti = "Spotify indiriliyor ve kuruluyor"
DownSpoti2 = "Lütfen bekleyin..."
PodcatsOff = "Podcastler Kapalı"
@@ -16,17 +16,13 @@
MsSpoti3 = "Автоматичне видалення Spotify MS..."
MsSpoti4 = "Видалення Spotify MS..."
Prem = "Модифікація для преміумкористувачів..."
OldV = "Знайдена застаріла версія Spotify"
OldV2 = "Ваша версія Spotify {0} застаріла, її рекомендовано оновити до {1}"
OldV3 = "Хочете оновитися ? [Y/N]"
AutoUpd = "Автоматичне оновлення на рекомендовану версію"
DelOrOver = "Хочете видалити наявну версію {0} або встановити нову поряд? Y [Видалити] / N [Встановити поряд]"
DelOld = "Видалення старої версії Spotify..."
NewV = "Непідтримувана версія Spotify знайдена"
DelSpotify = "Видалення Spotify..."
NewV2 = "Ваша версія Spotify {0} ще не була протестована, стабільна версія наразі {1}"
NewV3 = "Чи хочете продовжити на версії {0} (можливі помилки) ? [Y/N]"
Recom = "Чи хочете встановити рекомендовану версію {0} ? [Y/N]"
DelNew = "Видалення непротестованої версії Spotify..."
DownSpoti = "Завантаження та встановлення Spotify"
DownSpoti2 = "Зачекайте, будь-ласка..."
PodcatsOff = "Вимкнути подкасти"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "Đang tự động gỡ Spotify MS..."
MsSpoti4 = "Đang gỡ Spotify MS..."
Prem = "Chỉnh sửa dành cho tài khoản premium..."
OldV = "Phát hiện Spotify phiên bản cũ"
OldV2 = "Phiên bản Spotify {0} của bạn đã cũ, khuyến khích nâng cấp lên {1}"
OldV3 = "Bạn có muốn cập nhật không ? [Y/N]"
AutoUpd = "Tự động cập nhật lên phiên bản được đề xuất"
DelOrOver = "Bạn muốn gỡ phiên bản hiện tại {0} hay cài đè lên? Y [Gỡ] / N [Cài đè lên]"
DelOld = "Đang gỡ Spotify bản cũ..."
NewV = "Phát hiện phiên bản không được hỗ trợ"
DelSpotify = "Đang gỡ Spotify..."
NewV2 = "Phiên bản Spotify {0} chưa được kiểm thử, hiện tại bản ổn định là {1}"
NewV3 = "Bạn có muốn tiếp tục với phiên bản {0} (có thể bị lỗi) ? [Y/N]"
Recom = "Bạn có muốn cài đặt phiên bản được đề xuất: {0} ? [Y/N]"
DelNew = "Đang gỡ phiên bản Spotify chưa được kiểm thử..."
DownSpoti = "Đang tải và cài Spotify"
DownSpoti2 = "Vui lòng chờ..."
PodcatsOff = "Tắt Podcasts"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "自動解除安裝 Spotify 的微軟商店版本..."
MsSpoti4 = "正在解除安裝 Spotify 的微軟商店版本..."
Prem = "針對 Premium 帳號的修改..."
OldV = "發現過時的 Spotify 版本"
OldV2 = "您的Spotify {0} 版本已過時,建議更新到 {1}"
OldV3 = "需要更新嗎? [Y/N]"
AutoUpd = "自動更新到推薦版本"
DelOrOver = "是否要解除安裝目前版本 {0} 或者覆蓋安裝? Y [解除安裝] / N [覆蓋安裝]"
DelOld = "解除安裝舊版 Spotify..."
NewV = "偵測到不支援的 Spotify 版本"
DelSpotify = "正在解除安裝 Spotify..."
NewV2 = "您的 Spotify {0} 版本還沒有經過測試,目前穩定的版本是 {1} "
NewV3 = "您想要繼續使用 {0} 版本嗎 (可能會出現錯誤)? [Y/N]"
Recom = "您想安裝推薦的 {0} 版本嗎? [Y/N]"
DelNew = "解除安裝未經測試的 Spotify 版本..."
DownSpoti = "下載並安裝 Spotify"
DownSpoti2 = "請稍候..."
PodcatsOff = "關閉 Podcasts"
+1 -5
View File
@@ -16,17 +16,13 @@
MsSpoti3 = "自动卸载 Spotify 的微软商店版本..."
MsSpoti4 = "正在卸载 Spotify 的微软商店版本..."
Prem = "正在进行针对 Premium 账户的修改..."
OldV = "发现已过时的 Spotify 版本"
OldV2 = "您的 Spotify {0} 版本已过时,建议更新到 {1}"
OldV3 = "是否需要更新? [Y/N]"
AutoUpd = "自动更新到推荐版本"
DelOrOver = "是否要卸载当前版本 {0} 或者覆盖安装? Y [卸载] / N [覆盖安装]"
DelOld = "正在卸载旧的 Spotify..."
NewV = "检测到 Spotify 版本不受到支持"
DelSpotify = "正在卸载 Spotify..."
NewV2 = "您的 Spotify {0} 版本没有经过测试,目前的推荐的版本是 {1}"
NewV3 = "您想要继续使用 {0} 版本吗 (可能会出现错误)? [Y/N]"
Recom = "您想安装推荐的 {0} 版本吗 ? [Y/N]"
DelNew = "正在卸载未经测试的 Spotify 版本..."
DownSpoti = "下载并安装 Spotify"
DownSpoti2 = "请稍等..."
PodcatsOff = "关闭播客"