Fix build breakage due to missing constants

The parent commit should have included these new files, it references
them to pick up the translated strings for the tooltips.

Change-Id: I907436eeb9f717d6aed17757304e461fe888187c
Signed-off-by: Shawn O. Pearce <sop@google.com>
This commit is contained in:
Shawn O. Pearce 2010-03-01 13:49:03 -08:00
parent 61a372c4ee
commit 3959305294
2 changed files with 27 additions and 0 deletions

View File

@ -0,0 +1,25 @@
// Copyright (C) 2010 The Android Open Source Project
//
// 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 com.google.gerrit.prettify.common;
import com.google.gwt.core.client.GWT;
import com.google.gwt.i18n.client.Constants;
public interface PrettifyConstants extends Constants {
static final PrettifyConstants C = GWT.create(PrettifyConstants.class);
String wseTabAfterSpace();
String wseTrailingSpace();
}

View File

@ -0,0 +1,2 @@
wseTabAfterSpace=Whitespace error: Tab after space
wseTrailingSpace=Whitespace error: Trailing space at end of line