Skip to content

Commit

Permalink
Merge pull request #244 from Nizami20052022/patch-1
Browse files Browse the repository at this point in the history
Resources_az.java
  • Loading branch information
lincolnthree authored Oct 27, 2022
2 parents 7a757c1 + 3a8380f commit 5c7a262
Showing 1 changed file with 120 additions and 0 deletions.
120 changes: 120 additions & 0 deletions əsas/src/əsas/java/org/ocpsoft/gözəl vaxt/i18n/Resources_az.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,120 @@
Copyright 2012 <a href="mailto:[email protected]">Lincoln Baxter, III</a>
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
package org.ocpsoft.prettytime.i18n;
import java.util.ListResourceBundle;
public class Resources_az extends ListResourceBundle
{
private static final Object[][] OBJECTS = new Object[][] {
{ "CenturyPattern", "%n %u" },
{ "CenturyFuturePrefix", "" },
{ "CenturyFutureSuffix", " sonra" },
{ "CenturyPastPrefix", "" },
{ "CenturyPastSuffix", " əvvəl" },
{ "CenturySingularName", "əsr" },
{ "CenturyPluralName", "əsr" },
{ "DayPattern", "%n %u" },
{ "DayFuturePrefix", "" },
{ "DayFutureSuffix", " sonra" },
{ "DayPastPrefix", "" },
{ "DayPastSuffix", " əvvəl" },
{ "DaySingularName", "gün" },
{ "DayPluralName", "gün" },
{ "DecadePattern", "%n %u" },
{ "DecadeFuturePrefix", "" },
{ "DecadeFutureSuffix", " sonra" },
{ "DecadePastPrefix", "" },
{ "DecadePastSuffix", " əvvəl" },
{ "DecadeSingularName", "onillik" },
{ "DecadePluralName", "onillik" },
{ "HourPattern", "%n %u" },
{ "HourFuturePrefix", "" },
{ "HourFutureSuffix", " sonra" },
{ "HourPastPrefix", "" },
{ "HourPastSuffix", " əvvəl" },
{ "HourSingularName", "saat" },
{ "HourPluralName", "saat" },
{ "JustNowPattern", "%u" },
{ "JustNowFuturePrefix", "" },
{ "JustNowFutureSuffix", "daha sonra" },
{ "JustNowPastPrefix", "dəqiqə əvvəl" },
{ "JustNowPastSuffix", "" },
{ "JustNowSingularName", "" },
{ "JustNowPluralName", "" },
{ "MillenniumPattern", "%n %u" },
{ "MillenniumFuturePrefix", "" },
{ "MillenniumFutureSuffix", "sonra" },
{ "MillenniumPastPrefix", "" },
{ "MillenniumPastSuffix", " əvvəl" },
{ "MillenniumSingularName", "minillik" },
{ "MillenniumPluralName", "minillik" },
{ "MillisecondPattern", "%n %u" },
{ "MillisecondFuturePrefix", "" },
{ "MillisecondFutureSuffix", " sonra" },
{ "MillisecondPastPrefix", "" },
{ "MillisecondPastSuffix", " əvvəl" },
{ "MillisecondSingularName", "millisaniyə" },
{ "MillisecondPluralName", "millisaniyə" },
{ "MinutePattern", "%n %u" },
{ "MinuteFuturePrefix", "" },
{ "MinuteFutureSuffix", " sonra" },
{ "MinutePastPrefix", "" },
{ "MinutePastSuffix", " əvvəl" },
{ "MinuteSingularName", "dəqiqə" },
{ "MinutePluralName", "dəqiqə" },
{ "MonthPattern", "%n %u" },
{ "MonthFuturePrefix", "" },
{ "MonthFutureSuffix", " sonra" },
{ "MonthPastPrefix", "" },
{ "MonthPastSuffix", " əvvəl" },
{ "MonthSingularName", "ay" },
{ "MonthPluralName", "ay" },
{ "SecondPattern", "%n %u" },
{ "SecondFuturePrefix", "" },
{ "SecondFutureSuffix", " sonra" },
{ "SecondPastPrefix", "" },
{ "SecondPastSuffix", " əvvəl" },
{ "SecondSingularName", "saniyə" },
{ "SecondPluralName", "saniyə" },
{ "WeekPattern", "%n %u" },
{ "WeekFuturePrefix", "" },
{ "WeekFutureSuffix", " sonra" },
{ "WeekPastPrefix", "" },
{ "WeekPastSuffix", " əvvəl" },
{ "WeekSingularName", "həftə" },
{ "WeekPluralName", "həftə" },
{ "YearPattern", "%n %u" },
{ "YearFuturePrefix", "" },
{ "YearFutureSuffix", " sonra" },
{ "YearPastPrefix", "" },
{ "YearPastSuffix", " əvvəl" },
{ "YearSingularName", "il" },
{ "YearPluralName", "il" },
{ "AbstractTimeUnitPattern", "" },
{ "AbstractTimeUnitFuturePrefix", "" },
{ "AbstractTimeUnitFutureSuffix", "" },
{ "AbstractTimeUnitPastPrefix", "" },
{ "AbstractTimeUnitPastSuffix", "" },
{ "AbstractTimeUnitSingularName", "" },
{ "AbstractTimeUnitPluralName", "" } };

@Override
public Object[][] getContents()
{
return OBJECTS;
}

}

0 comments on commit 5c7a262

Please sign in to comment.