-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added default registry values for language of german Firefox
- Loading branch information
1 parent
48ce64d
commit d3fb045
Showing
4 changed files
with
73 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,46 @@ | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
// <copyright file="BrowserRegistry.cs" company="Freiwillige Feuerwehr Krems/Donau"> | ||
// Freiwillige Feuerwehr Krems/Donau | ||
// Austraße 33 | ||
// A-3500 Krems/Donau | ||
// Austria | ||
// Tel.: +43 (0)2732 85522 | ||
// Fax.: +43 (0)2732 85522 40 | ||
// E-mail: [email protected] | ||
// | ||
// This software is furnished under a license and may be | ||
// used and copied only in accordance with the terms of | ||
// such license and with the inclusion of the above | ||
// copyright notice. This software or any other copies | ||
// thereof may not be provided or otherwise made | ||
// available to any other person. No title to and | ||
// ownership of the software is hereby transferred. | ||
// | ||
// The information in this software is subject to change | ||
// without notice and should not be construed as a | ||
// commitment by Freiwillige Feuerwehr Krems/Donau. | ||
// | ||
// </copyright> | ||
// -------------------------------------------------------------------------------------------------------------------- | ||
namespace At.FF.Krems.Configuration.XML | ||
{ | ||
using System; | ||
using System.CodeDom.Compiler; | ||
using System.ComponentModel; | ||
using System.Diagnostics; | ||
using System.Xml.Serialization; | ||
|
||
/// <summary>The browser registry, see about:config</summary> | ||
[GeneratedCode("xsd", "2.0.50727.3038"), DesignerCategory("code"), DebuggerStepThrough, XmlRoot(Namespace = "", IsNullable = false), XmlType(AnonymousType = true)] | ||
[Serializable] | ||
public class BrowserRegistry | ||
{ | ||
/// <summary>Gets or sets the name.</summary> | ||
/// <value>The name.</value> | ||
public string Name { get; set; } | ||
|
||
/// <summary>Gets or sets the value.</summary> | ||
/// <value>The value.</value> | ||
public object Value { get; set; } | ||
} | ||
} |