moved LG Blindscan info into res file

This commit is contained in:
Horst Beham
2021-01-23 18:55:39 +01:00
parent 086d4683fd
commit 3f214c35b9
11 changed files with 327 additions and 160 deletions

View File

@@ -71,14 +71,10 @@ namespace ChanSort.Loader.GlobalClone
if (View.Default == null) // can't show dialog while unit-testing
return;
var dlg = View.Default.CreateActionBox("!!! WARNING !!!\n\n" +
"Support for LG webOS 5 channel lists is experimental only!\n" +
"There is a RISK that your TV will not import the list correctly and you need to run a new search or even reset the TV.\n" +
"Please read the information on github with steps that MAY lead to a successful import.\n" +
"Any feedback about failure or success is highly appreciated.");
dlg.AddAction("Read information about webOS 5 support on github.com", 1);
dlg.AddAction("I read the information, accept the risk and want to give it a try", 2);
dlg.AddAction("Cancel", 0);
var dlg = View.Default.CreateActionBox(ChanSort.Loader.LG.Resource.LG_BlindscanInfo);
dlg.AddAction(ChanSort.Loader.LG.Resource.LG_BlindscanInfo_OpenWebpage, 1);
dlg.AddAction(ChanSort.Loader.LG.Resource.LG_BlindscanInfo_Continue, 2);
dlg.AddAction(ChanSort.Loader.LG.Resource.LG_BlindscanInfo_Cancel, 0);
while (true)
{
dlg.ShowDialog();

View File

@@ -60,6 +60,88 @@ namespace ChanSort.Loader.LG {
}
}
/// <summary>
/// Looks up a localized string similar to -.
/// </summary>
internal static string GcSerializer_ReadChannelLists_NoChannelsCap {
get {
return ResourceManager.GetString("GcSerializer_ReadChannelLists_NoChannelsCap", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to -.
/// </summary>
internal static string GcSerializer_ReadChannelLists_NoChannelsMsg {
get {
return ResourceManager.GetString("GcSerializer_ReadChannelLists_NoChannelsMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Your TV will only import the GlobalClone file when there are no files named xx*.TLL in the same directory.
///Do you want ChanSort to rename the conflicting files?.
/// </summary>
internal static string GcSerializer_ReadModelInfo_ModelWarning {
get {
return ResourceManager.GetString("GcSerializer_ReadModelInfo_ModelWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ATTENTION:
///Please make sure that your webOS based TV is using a recent firmware version (LB600 and higher: 4.41.32, UB: 4.51.44).
///Older LG firmware for webOS based TV models does not handle the import of channel lists properly and randomly reorders channels.
///(If your firmware is newer, you can ignore is message.).
/// </summary>
internal static string GcSerializer_webOsFirmwareWarning {
get {
return ResourceManager.GetString("GcSerializer_webOsFirmwareWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to !!! ATTENTION !!!
///LG channel lists can ONLY be imported back into the TV, when special options were selected during the TV&apos;s channel search process:
///- Provider: MUST be None/Other (do NOT select your cable provider or Astra 19.2E)
///- Blindscan: MUST be selected
///- Network search: optional (can be selected)
///
///Your TV will show a broken list if these steps are not followed!.
/// </summary>
internal static string LG_BlindscanInfo {
get {
return ResourceManager.GetString("LG_BlindscanInfo", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Cancel.
/// </summary>
internal static string LG_BlindscanInfo_Cancel {
get {
return ResourceManager.GetString("LG_BlindscanInfo_Cancel", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to I searched for channels as described above.
/// </summary>
internal static string LG_BlindscanInfo_Continue {
get {
return ResourceManager.GetString("LG_BlindscanInfo_Continue", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Read information about webOS 5 support on github.com.
/// </summary>
internal static string LG_BlindscanInfo_OpenWebpage {
get {
return ResourceManager.GetString("LG_BlindscanInfo_OpenWebpage", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Channel #{0} (Pr# {1}) was erased because it is a duplicate of channel #{2} (Pr# {3}): {4}.
/// </summary>
@@ -95,59 +177,5 @@ namespace ChanSort.Loader.LG {
return ResourceManager.GetString("TllFileSerializerPlugin_ERR_modelUnknown", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to LG predefined / empty channel list.
/// </summary>
internal static string GcSerializer_ReadChannelLists_NoChannelsCap
{
get
{
return ResourceManager.GetString("GcSerializer_ReadChannelLists_NoChannelsCap", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to This channel list does not contain any channels.
///Most likely a predefined channel list was selected during the TV&apos;s setup, which cannot be edited and exports an empty list.
///
///Please run a new channel search on the TV and when asked for a Provider, select a neutral option (none, other, ...).
///When possible, select Blind Scan and unselect Network Search to scan the whole frequency range.
///.
/// </summary>
internal static string GcSerializer_ReadChannelLists_NoChannelsMsg
{
get
{
return ResourceManager.GetString("GcSerializer_ReadChannelLists_NoChannelsMsg", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to Your TV will only import the GlobalClone file when there are no files named xx*.TLL in the same directory.
///Do you want ChanSort to rename the conflicting files?.
/// </summary>
internal static string GcSerializer_ReadModelInfo_ModelWarning
{
get
{
return ResourceManager.GetString("GcSerializer_ReadModelInfo_ModelWarning", resourceCulture);
}
}
/// <summary>
/// Looks up a localized string similar to ATTENTION:
///Please make sure that your webOS based TV is using a recent firmware version (LB600 and higher: 4.41.32, UB: 4.51.44).
///Older LG firmware for webOS based TV models does not handle the import of channel lists properly and randomly reorders channels.
///(If your firmware is newer, you can ignore is message.).
/// </summary>
internal static string GcSerializer_webOsFirmwareWarning
{
get
{
return ResourceManager.GetString("GcSerializer_webOsFirmwareWarning", resourceCulture);
}
}
}
}

View File

@@ -1,4 +1,4 @@
<?xml version="1.0" encoding="utf-8"?>
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
@@ -129,4 +129,16 @@
<data name="TllFileSerializerPlugin_ERR_modelUnknown" xml:space="preserve">
<value>Obsah souboru neodpovídá žádnému podporovanému modelu</value>
</data>
<data name="GcSerializer_ReadModelInfo_ModelWarning" xml:space="preserve">
<value>Váš televizor bude schopen importovat soubor GlobalClone pouze v případě, že se ve stejném adresáři nenachází žádné soubory s názvem xx*.TLL.
Chcete, aby ChanSort konfliktní soubory přejmenoval?</value>
</data>
<data name="GcSerializer_webOsFirmwareWarning" xml:space="preserve">
<value>POZOR:
Zkontrolujte, zda váš televizor se systémem webOS používá nejnovější verzi firmwaru (LB600 a vyšší: 4.41.32, UB: 4.51.44).
Starší verze firmwaru LG pro modely televizorů se systémem webOS nedokáže správně importovat seznam kanálů a náhodně mění pořadí kanálů.</value>
</data>
<data name="LG_BlindscanInfo_Cancel" xml:space="preserve">
<value>Storno</value>
</data>
</root>

View File

@@ -129,4 +129,20 @@
<data name="TllFileSerializer_ERR_dupeChannel" xml:space="preserve">
<value>Sender #{0} (Pr# {1}) wurde gelöscht da er ein Duplikat von Sender #{2} (Pr# {3}) ist: {4}</value>
</data>
<data name="GcSerializer_ReadModelInfo_ModelWarning" xml:space="preserve">
<value>Ihr TV Gerät importiert die GlobalClone Datei nur dann, wenn keine Dateien mit Namen xx*.TLL auf dem USB-Stick sind.
Soll ChanSort die störenden Dateien jetzt umbenennen?</value>
</data>
<data name="GcSerializer_webOsFirmwareWarning" xml:space="preserve">
<value>HINWEIS:
Bitte stellen Sie sicher, dass auf Ihrem webOS basierenden Gerät eine aktuelle Firmware installiert ist (LB600 und höher: 4.41.32, UB: 4.51.44).
Ältere Versionen können Senderlisten nicht korrekt einlesen und verändern diese willkürlich im laufenden Betrieb.
(Sie können diese Meldung ignorieren, wenn Ihre Firmwareversion aktueller ist.)</value>
</data>
<data name="LG_BlindscanInfo_Continue" xml:space="preserve">
<value>Ich habe die Sendersuche wie oben beschrieben durchgeführt</value>
</data>
<data name="LG_BlindscanInfo_Cancel" xml:space="preserve">
<value>Abbrechen</value>
</data>
</root>

View File

@@ -129,4 +129,15 @@
<data name="TllFileSerializer_ERR_dupeChannel" xml:space="preserve">
<value>El canal #{0} (Pr# {1}) ha sido eliminado debido a que es un duplicado del canal #{2} (Pr# {3}): {4}</value>
</data>
<data name="GcSerializer_ReadModelInfo_ModelWarning" xml:space="preserve">
<value>Su TV solo es capaz de importar el archivo GlobalClone si en la carpeta solo existe un único archivo TLL. ¿Desea que ChanSort renombre los archivos conflictivos?</value>
</data>
<data name="GcSerializer_webOsFirmwareWarning" xml:space="preserve">
<value>Por favor asegúrese que su TV basada en webOS esté usando una versión de firmware reciente (LB600 y superior: 4.41.32, UB: 4.51.44).
Los viejos firmwares de los modelos de TV basados en webOS no importan bien las listas de canales y reordenan los canales aleatoriamente.
(Si su firmware es reciente, puede ignorar este mensaje.)</value>
</data>
<data name="LG_BlindscanInfo_Cancel" xml:space="preserve">
<value>Cancelar</value>
</data>
</root>

View File

@@ -129,4 +129,16 @@
<data name="TllFileSerializer_ERR_dupeChannel" xml:space="preserve">
<value>A(z) {0} (Pr# {1}) csatornát törölték, mert ez a(z) {2} (Pr# {3}) csatorna másolata: {4}</value>
</data>
<data name="GcSerializer_ReadModelInfo_ModelWarning" xml:space="preserve">
<value>A tévé csak akkor importálja a GlobalClone fájlt, ha ugyanabban a könyvtárban nincsenek xx*.TLL nevű fájlok.
Szeretné, hogy a ChanSort átnevezze a problémás fájlokat?</value>
</data>
<data name="GcSerializer_webOsFirmwareWarning" xml:space="preserve">
<value>FIGYELEM:
Győződjön meg arról, hogy webOS alapú tévéje legújabb firmware verziót használ (LB600 és újabb: 4.41.32, UB: 4.51.44).
A régebbi LG firmware webOS alapú TV-modelleknél nem kezeli megfelelően a csatornák listájának importálását és véletlenszerűen rendezi át a csatornákat</value>
</data>
<data name="LG_BlindscanInfo_Cancel" xml:space="preserve">
<value>Mégse</value>
</data>
</root>

View File

@@ -129,4 +129,17 @@
<data name="TllFileSerializer_ERR_dupeChannel" xml:space="preserve">
<value>Kanał #{0} (Pr# {1}) został usunięty, ponieważ jest duplikatem kanału #{2} (Pr# {3}): {4}</value>
</data>
<data name="GcSerializer_ReadModelInfo_ModelWarning" xml:space="preserve">
<value>Telewizor zaimportuje plik GlobalClone tylko wtedy, gdy w tym samym katalogu nie ma plików o nazwie xx* .TLL.
Czy chcesz, aby ChanSort zmienił nazwę plików powodujących konflikt?</value>
</data>
<data name="GcSerializer_webOsFirmwareWarning" xml:space="preserve">
<value>UWAGA:
Upewnij się, że telewizor z systemem webOS korzysta z najnowszej wersji oprogramowania układowego (LB600 i nowsze: 4.41.32, UB: 4.51.44).
Starsze oprogramowanie LG dla modeli telewizorów opartych na webOS nie obsługuje importu list kanałów i losowo zmienia kolejność kanałów.
(Jeśli oprogramowanie układowe jest nowsze, możesz zignorować wiadomość.)</value>
</data>
<data name="LG_BlindscanInfo_Cancel" xml:space="preserve">
<value>Anuluj</value>
</data>
</root>

View File

@@ -1,103 +1,122 @@
<?xml version="1.0" encoding="utf-8"?>
<root>
<!--
Microsoft ResX Schema
<!--
Microsoft ResX Schema
Version 2.0
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">2.0</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1"><value>this is my long string</value><comment>this is a comment</comment></data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
<value>[base64 mime encoded serialized .NET Framework object]</value>
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
<value>[base64 mime encoded string representing a byte array form of the .NET Framework object]</value>
<comment>This is a comment</comment>
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
Version 1.3
The primary goals of this format is to allow a simple XML format
that is mostly human readable. The generation and parsing of the
various data types are done through the TypeConverter classes
associated with the data types.
Example:
... ado.net/XML headers & schema ...
<resheader name="resmimetype">text/microsoft-resx</resheader>
<resheader name="version">1.3</resheader>
<resheader name="reader">System.Resources.ResXResourceReader, System.Windows.Forms, ...</resheader>
<resheader name="writer">System.Resources.ResXResourceWriter, System.Windows.Forms, ...</resheader>
<data name="Name1">this is my long string</data>
<data name="Color1" type="System.Drawing.Color, System.Drawing">Blue</data>
<data name="Bitmap1" mimetype="application/x-microsoft.net.object.binary.base64">
[base64 mime encoded serialized .NET Framework object]
</data>
<data name="Icon1" type="System.Drawing.Icon, System.Drawing" mimetype="application/x-microsoft.net.object.bytearray.base64">
[base64 mime encoded string representing a byte array form of the .NET Framework object]
</data>
There are any number of "resheader" rows that contain simple
name/value pairs.
Each data row contains a name, and value. The row also contains a
type or mimetype. Type corresponds to a .NET class that support
text/value conversion through the TypeConverter architecture.
Classes that don't support this are serialized and stored with the
mimetype set.
The mimetype is used for serialized objects, and tells the
ResXResourceReader how to depersist the object. This is currently not
extensible. For a given mimetype the value must be set accordingly:
Note - application/x-microsoft.net.object.binary.base64 is the format
that the ResXResourceWriter will generate, however the reader can
read any of the formats listed below.
mimetype: application/x-microsoft.net.object.binary.base64
value : The object must be serialized with
: System.Serialization.Formatters.Binary.BinaryFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.soap.base64
value : The object must be serialized with
: System.Runtime.Serialization.Formatters.Soap.SoapFormatter
: and then encoded with base64 encoding.
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>1.3</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=2.0.3500.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
mimetype: application/x-microsoft.net.object.bytearray.base64
value : The object must be serialized into a byte array
: using a System.ComponentModel.TypeConverter
: and then encoded with base64 encoding.
-->
<xsd:schema id="root" xmlns="" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:msdata="urn:schemas-microsoft-com:xml-msdata">
<xsd:import namespace="http://www.w3.org/XML/1998/namespace" />
<xsd:element name="root" msdata:IsDataSet="true">
<xsd:complexType>
<xsd:choice maxOccurs="unbounded">
<xsd:element name="metadata">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" />
</xsd:sequence>
<xsd:attribute name="name" use="required" type="xsd:string" />
<xsd:attribute name="type" type="xsd:string" />
<xsd:attribute name="mimetype" type="xsd:string" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="assembly">
<xsd:complexType>
<xsd:attribute name="alias" type="xsd:string" />
<xsd:attribute name="name" type="xsd:string" />
</xsd:complexType>
</xsd:element>
<xsd:element name="data">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
<xsd:element name="comment" type="xsd:string" minOccurs="0" msdata:Ordinal="2" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" msdata:Ordinal="1" />
<xsd:attribute name="type" type="xsd:string" msdata:Ordinal="3" />
<xsd:attribute name="mimetype" type="xsd:string" msdata:Ordinal="4" />
<xsd:attribute ref="xml:space" />
</xsd:complexType>
</xsd:element>
<xsd:element name="resheader">
<xsd:complexType>
<xsd:sequence>
<xsd:element name="value" type="xsd:string" minOccurs="0" msdata:Ordinal="1" />
</xsd:sequence>
<xsd:attribute name="name" type="xsd:string" use="required" />
</xsd:complexType>
</xsd:element>
</xsd:choice>
</xsd:complexType>
</xsd:element>
</xsd:schema>
<resheader name="resmimetype">
<value>text/microsoft-resx</value>
</resheader>
<resheader name="version">
<value>2.0</value>
</resheader>
<resheader name="reader">
<value>System.Resources.ResXResourceReader, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<resheader name="writer">
<value>System.Resources.ResXResourceWriter, System.Windows.Forms, Version=4.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089</value>
</resheader>
<data name="TllFileSerializer_ERR_wrongChecksum" xml:space="preserve">
<value>Wrong checksum: calculated {1:x8} but file has {0:x8}</value>
</data>
@@ -110,4 +129,38 @@
<data name="TllFileSerializer_ERR_dupeChannel" xml:space="preserve">
<value>Channel #{0} (Pr# {1}) was erased because it is a duplicate of channel #{2} (Pr# {3}): {4}</value>
</data>
<data name="GcSerializer_ReadChannelLists_NoChannelsCap" xml:space="preserve">
<value>-</value>
</data>
<data name="GcSerializer_ReadChannelLists_NoChannelsMsg" xml:space="preserve">
<value>-</value>
</data>
<data name="GcSerializer_ReadModelInfo_ModelWarning" xml:space="preserve">
<value>Your TV will only import the GlobalClone file when there are no files named xx*.TLL in the same directory.
Do you want ChanSort to rename the conflicting files?</value>
</data>
<data name="GcSerializer_webOsFirmwareWarning" xml:space="preserve">
<value>ATTENTION:
Please make sure that your webOS based TV is using a recent firmware version (LB600 and higher: 4.41.32, UB: 4.51.44).
Older LG firmware for webOS based TV models does not handle the import of channel lists properly and randomly reorders channels.
(If your firmware is newer, you can ignore is message.)</value>
</data>
<data name="LG_BlindscanInfo" xml:space="preserve">
<value>!!! ATTENTION !!!
LG channel lists can ONLY be imported back into the TV, when special options were selected during the TV's channel search process:
- Provider: MUST be None/Other (do NOT select your cable provider or Astra 19.2E)
- Blindscan: MUST be selected
- Network search: optional (can be selected)
Your TV will show a broken list if these steps are not followed!</value>
</data>
<data name="LG_BlindscanInfo_OpenWebpage" xml:space="preserve">
<value>Read information about webOS 5 support on github.com</value>
</data>
<data name="LG_BlindscanInfo_Continue" xml:space="preserve">
<value>I searched for channels as described above</value>
</data>
<data name="LG_BlindscanInfo_Cancel" xml:space="preserve">
<value>Cancel</value>
</data>
</root>

View File

@@ -129,4 +129,17 @@
<data name="TllFileSerializer_ERR_dupeChannel" xml:space="preserve">
<value>Canalul # {0} (Pr # {1}) a fost șters deoarece este un duplicat al canalului # {2} (Pr # {3}): {4}</value>
</data>
<data name="GcSerializer_ReadModelInfo_ModelWarning" xml:space="preserve">
<value>Televizorul dvs. va importa numai fișierul GlobalClone atunci când nu există fișiere numite xx * .TLL în același director.
Vrei ca ChanSort să redenumească fișierele în conflict?</value>
</data>
<data name="GcSerializer_webOsFirmwareWarning" xml:space="preserve">
<value>ATENŢIE:
Asigurați-vă că televizorul bazat pe webOS utilizează o versiune recentă de firmware (LB600 și mai mare: 4.41.32, UB: 4.51.44).
Firmware-ul LG mai vechi pentru modelele TV bazate pe webOS nu gestionează importul listelor de canale în mod corespunzător și redirecționează aleatoriu canalele.
(Dacă firmware-ul este mai nou, puteți ignora mesajul.)</value>
</data>
<data name="LG_BlindscanInfo_Cancel" xml:space="preserve">
<value>Anulare</value>
</data>
</root>

View File

@@ -129,4 +129,17 @@
<data name="TllFileSerializer_ERR_dupeChannel" xml:space="preserve">
<value>Kanal #{0} (Pr# {1}), #{2} (Pr# {3}) kanalının bir kopyası olduğu için silindi: {4}</value>
</data>
<data name="GcSerializer_ReadModelInfo_ModelWarning" xml:space="preserve">
<value>TV'niz yalnızca aynı dizinde xx * .TLL adında dosya olmadığında GlobalClone dosyasını içe aktarır.
ChanSort'un çakışan dosyaları yeniden adlandırmasını istiyor musunuz?</value>
</data>
<data name="GcSerializer_webOsFirmwareWarning" xml:space="preserve">
<value>DİKKAT:
Lütfen webOS tabanlı TV'nizin aşağıdaki ürün yazılım sürümünü kullandığından emin olun (LB600 ve üstü: 4.41.32, UB: 4.51.44).
WebOS tabanlı TV modelleri için eski LG ürün yazılımı, kanal listelerinin içe aktarılmasını düzgün bir şekilde gerçekleştirmez ve kanalları yeniden sıralar.
(Ürün yazılımınız daha yeniyse, mesajı görmezden gelebilirsiniz.)</value>
</data>
<data name="LG_BlindscanInfo_Cancel" xml:space="preserve">
<value>Vazgeç</value>
</data>
</root>

Binary file not shown.