Unity.Platform.IPhone.IPhoneI18N.loadResourcesLiteral C# (CSharp) Method

loadResourcesLiteral() private method

private loadResourcesLiteral ( string fullPathFilePlist ) : NSDictionary
fullPathFilePlist string
return NSDictionary
		private NSDictionary loadResourcesLiteral (string fullPathFilePlist)
		{
			NSDictionary resourcesLiteral = null;
			SystemLogger.Log(SystemLogger.Module.PLATFORM, "# loading plist: " + fullPathFilePlist);
			if (this.FileExists (fullPathFilePlist)) {
				resourcesLiteral = NSDictionary.FromFile (fullPathFilePlist);
			}
			return resourcesLiteral;
		}