// Copyright (c) ppy Pty Ltd . Licensed under the MIT Licence. // See the LICENCE file in the repository root for full licence text. using osu.Framework.Bindables; namespace osu.Framework.Localisation { /// /// An which has its value set depending on the current locale of the . /// public interface ILocalisedBindableString : IBindable { /// /// Sets the original, un-localised text. /// LocalisableString Text { set; } } }