![]() |
VOOZH | about |
dotnet add package Shiny.Extensions.Localization --version 1.1.0.60
NuGet\Install-Package Shiny.Extensions.Localization -Version 1.1.0.60
<PackageReference Include="Shiny.Extensions.Localization" Version="1.1.0.60" />
<PackageVersion Include="Shiny.Extensions.Localization" Version="1.1.0.60" />Directory.Packages.props
<PackageReference Include="Shiny.Extensions.Localization" />Project file
paket add Shiny.Extensions.Localization --version 1.1.0.60
#r "nuget: Shiny.Extensions.Localization, 1.1.0.60"
#:package Shiny.Extensions.Localization@1.1.0.60
#addin nuget:?package=Shiny.Extensions.Localization&version=1.1.0.60Install as a Cake Addin
#tool nuget:?package=Shiny.Extensions.Localization&version=1.1.0.60Install as a Cake Tool
<img src="https://github.com/shinyorg/shiny/raw/master/art/logo.png" width="100" />
While Shiny is free and will continue to be so, maintenance and support takes a heavy toll on sustainability. If you or your company have the resources, please consider becoming a GitHub Sponsor. GitHub Sponsorships help to make Open Source Development more sustainable.
Depending on your Sponsorship Tier, you may also get access to some great benefits on Sponsor Connect (https://sponsorconnect.dev) including:
How about some Shiny Gear
| Branch | Status |
|---|---|
| Master | 👁 Build |
| Dev | 👁 Build |
| Preview | 👁 Build |
| Name | Stable | Preview |
|---|---|---|
| Shiny.Extensions.Push | 👁 Nuget |
👁 Nuget (Preview) |
| Shiny.Extensions.Push.Ef | 👁 Nuget |
👁 Nuget (Preview) |
| Shiny.Extensions.Mail | 👁 Nuget |
👁 Nuget (Preview) |
| Shiny.Extensions.Mail.DotLiquid | 👁 Nuget |
👁 Nuget (Preview) |
| Shiny.Extensions.Mail.StorageNet | 👁 Nuget |
👁 Nuget (Preview) |
| Shiny.Extensions.Localization | 👁 Nuget |
👁 Nuget (Preview) |
| Shiny.Extensions.Localization.SqlServer | 👁 Nuget |
👁 Nuget (Preview) |
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[MailTemplates](
[MailTemplateId] [uniqueidentifier] NOT NULL,
[TemplateName] [nvarchar](255) NOT NULL,
[CultureCode] [varchar](5) NULL,
[Content] [nvarchar](max) NOT NULL,
CONSTRAINT [PK_MailTemplates] PRIMARY KEY CLUSTERED
(
[MailTemplateId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY],
CONSTRAINT [UK_MailTemplates] UNIQUE NONCLUSTERED
(
[TemplateName] ASC,
[CultureCode] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY] TEXTIMAGE_ON [PRIMARY]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[Localizations](
[LocalizationId] [uniqueidentifier] NOT NULL,
[Section] [varchar](50) NOT NULL,
[ResourceKey] [varchar](50) NOT NULL,
[CultureCode] [varchar](5) NULL,
[Value] [nvarchar](4000) NOT NULL,
CONSTRAINT [PK_Localizations] PRIMARY KEY CLUSTERED
(
[LocalizationId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY],
CONSTRAINT [UK_Localizations] UNIQUE NONCLUSTERED
(
[Section] ASC,
[ResourceKey] ASC,
[CultureCode] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[PushRegistrations](
[PushRegistrationId] [uniqueidentifier] NOT NULL,
[Platform] [int] NOT NULL,
[DeviceToken] [varchar](512) NOT NULL,
[UserId] [varchar](50) NULL,
[DateUpdated] [datetimeoffset](7) NOT NULL,
[DateCreated] [datetimeoffset](7) NOT NULL,
CONSTRAINT [PK_PushRegistrations] PRIMARY KEY CLUSTERED
(
[PushRegistrationId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY],
CONSTRAINT [UK_PushRegistrations] UNIQUE NONCLUSTERED
(
[DeviceToken] ASC,
[Platform] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
/****** Object: Table [dbo].[PushTags] Script Date: 12/16/2021 3:27:13 PM ******/
SET ANSI_NULLS ON
GO
SET QUOTED_IDENTIFIER ON
GO
CREATE TABLE [dbo].[PushTags](
[PushTagId] [uniqueidentifier] NOT NULL,
[PushRegistrationId] [uniqueidentifier] NOT NULL,
[Value] [nvarchar](50) NOT NULL,
CONSTRAINT [PK_PushTags] PRIMARY KEY CLUSTERED
(
[PushTagId] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY],
CONSTRAINT [UK_PushTags] UNIQUE NONCLUSTERED
(
[PushRegistrationId] ASC,
[Value] ASC
)WITH (PAD_INDEX = OFF, STATISTICS_NORECOMPUTE = OFF, IGNORE_DUP_KEY = OFF, ALLOW_ROW_LOCKS = ON, ALLOW_PAGE_LOCKS = ON, OPTIMIZE_FOR_SEQUENTIAL_KEY = OFF) ON [PRIMARY]
) ON [PRIMARY]
GO
ALTER TABLE [dbo].[PushTags] WITH CHECK ADD CONSTRAINT [FK_PushTags_PushRegistrations] FOREIGN KEY([PushRegistrationId])
REFERENCES [dbo].[PushRegistrations] ([PushRegistrationId])
GO
ALTER TABLE [dbo].[PushTags] CHECK CONSTRAINT [FK_PushTags_PushRegistrations]
GO
| Product | Versions Compatible and additional computed target framework versions. |
|---|---|
| .NET | net5.0 net5.0 was computed. net5.0-windows net5.0-windows was computed. net6.0 net6.0 was computed. net6.0-android net6.0-android was computed. net6.0-ios net6.0-ios was computed. net6.0-maccatalyst net6.0-maccatalyst was computed. net6.0-macos net6.0-macos was computed. net6.0-tvos net6.0-tvos was computed. net6.0-windows net6.0-windows was computed. net7.0 net7.0 was computed. net7.0-android net7.0-android was computed. net7.0-ios net7.0-ios was computed. net7.0-maccatalyst net7.0-maccatalyst was computed. net7.0-macos net7.0-macos was computed. net7.0-tvos net7.0-tvos was computed. net7.0-windows net7.0-windows was computed. net8.0 net8.0 was computed. net8.0-android net8.0-android was computed. net8.0-browser net8.0-browser was computed. net8.0-ios net8.0-ios was computed. net8.0-maccatalyst net8.0-maccatalyst was computed. net8.0-macos net8.0-macos was computed. net8.0-tvos net8.0-tvos was computed. net8.0-windows net8.0-windows was computed. net9.0 net9.0 was computed. net9.0-android net9.0-android was computed. net9.0-browser net9.0-browser was computed. net9.0-ios net9.0-ios was computed. net9.0-maccatalyst net9.0-maccatalyst was computed. net9.0-macos net9.0-macos was computed. net9.0-tvos net9.0-tvos was computed. net9.0-windows net9.0-windows was computed. net10.0 net10.0 was computed. net10.0-android net10.0-android was computed. net10.0-browser net10.0-browser was computed. net10.0-ios net10.0-ios was computed. net10.0-maccatalyst net10.0-maccatalyst was computed. net10.0-macos net10.0-macos was computed. net10.0-tvos net10.0-tvos was computed. net10.0-windows net10.0-windows was computed. |
| .NET Core | netcoreapp2.0 netcoreapp2.0 was computed. netcoreapp2.1 netcoreapp2.1 was computed. netcoreapp2.2 netcoreapp2.2 was computed. netcoreapp3.0 netcoreapp3.0 was computed. netcoreapp3.1 netcoreapp3.1 was computed. |
| .NET Standard | netstandard2.0 netstandard2.0 is compatible. netstandard2.1 netstandard2.1 was computed. |
| .NET Framework | net461 net461 was computed. net462 net462 was computed. net463 net463 was computed. net47 net47 was computed. net471 net471 was computed. net472 net472 was computed. net48 net48 was computed. net481 net481 was computed. |
| MonoAndroid | monoandroid monoandroid was computed. |
| MonoMac | monomac monomac was computed. |
| MonoTouch | monotouch monotouch was computed. |
| Tizen | tizen40 tizen40 was computed. tizen60 tizen60 was computed. |
| Xamarin.iOS | xamarinios xamarinios was computed. |
| Xamarin.Mac | xamarinmac xamarinmac was computed. |
| Xamarin.TVOS | xamarintvos xamarintvos was computed. |
| Xamarin.WatchOS | xamarinwatchos xamarinwatchos was computed. |
Showing the top 3 NuGet packages that depend on Shiny.Extensions.Localization:
| Package | Downloads |
|---|---|
|
Shiny.Extensions.Dialogs.XfMaterial
XF Material dialog implementations for Shiny mobile applications |
|
|
Shiny.Extensions.Localization.SqlServer
A localization provider using SQL Server for use by Shiny.Extensions.Localization |
|
|
Shiny.Extensions.Localization.AdoNet
A localization provider using SQL Server for use by Shiny.Extensions.Localization |
This package is not used by any popular GitHub repositories.
| Version | Downloads | Last Updated | |
|---|---|---|---|
| 2.0.0-preview-0009 | 797 | 8/5/2023 | 2.0.0-preview-0009 is deprecated because it is no longer maintained. |
| 2.0.0-preview-0005 | 2,718 | 3/23/2023 | |
| 2.0.0-preview-0001 | 796 | 3/22/2023 | |
| 1.3.0-preview-0027 | 5,735 | 4/25/2022 | |
| 1.3.0-preview-0002 | 806 | 4/4/2022 | |
| 1.3.0-preview-0001 | 835 | 4/5/2022 | |
| 1.3.0-g2ba43447db | 16,008 | 4/25/2022 | |
| 1.2.1-g5e4fb68cb5 | 861 | 4/5/2022 | |
| 1.2.0-gfedfcb591b | 807 | 4/4/2022 | |
| 1.1.0.60 | 1,626 | 3/2/2022 | 1.1.0.60 is deprecated because it is no longer maintained. |
| 1.1.0.59-preview | 978 | 2/3/2022 | |
| 1.1.0.55-preview | 949 | 1/23/2022 | |
| 1.1.0.52-preview | 952 | 1/22/2022 | |
| 1.1.0.49-preview | 953 | 1/19/2022 |